-
-
Notifications
You must be signed in to change notification settings - Fork 201
Expand file tree
/
Copy pathIssue2372.java
More file actions
59 lines (51 loc) · 1.61 KB
/
Copy pathIssue2372.java
File metadata and controls
59 lines (51 loc) · 1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Jooby https://jooby.io
* Apache License Version 2.0 https://jooby.io/LICENSE.txt
* Copyright 2014 Edgar Espina
*/
package io.jooby.test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import java.util.Arrays;
import io.jooby.ServerOptions;
import io.jooby.handler.SSLHandler;
import io.jooby.junit.ServerTest;
import io.jooby.junit.ServerTestRunner;
import io.jooby.reactor.Reactor;
import reactor.core.publisher.Flux;
import reactor.core.publisher.Mono;
public class Issue2372 {
@ServerTest
public void http2(ServerTestRunner runner) {
runner
.options(new ServerOptions().setHttp2(true).setSecurePort(8443))
.define(
app -> {
app.before(new SSLHandler());
app.use(Reactor.reactor());
app.get(
"/2372/mono",
ctx -> {
return Mono.fromCallable(() -> "Welcome to Jooby!");
});
app.get(
"/2372/flux",
ctx -> {
return Flux.fromIterable(Arrays.asList("Welcome", "to", "Jooby!"))
.map(it -> it + " ");
});
})
.ready(
(http, https) -> {
https.get(
"/2372/flux",
rsp -> {
assertEquals("Welcome to Jooby!", rsp.body().string().trim());
});
https.get(
"/2372/mono",
rsp -> {
assertEquals("Welcome to Jooby!", rsp.body().string());
});
});
}
}