-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1508 from mocenas/sse_test
Add test coverage for issue 36402
- Loading branch information
Showing
3 changed files
with
92 additions
and
0 deletions.
There are no files selected for viewing
77 changes: 77 additions & 0 deletions
77
http/http-advanced/src/main/java/io/quarkus/ts/http/advanced/SseResource.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
package io.quarkus.ts.http.advanced; | ||
|
||
import java.util.Arrays; | ||
import java.util.concurrent.locks.LockSupport; | ||
|
||
import jakarta.ws.rs.GET; | ||
import jakarta.ws.rs.Path; | ||
import jakarta.ws.rs.Produces; | ||
import jakarta.ws.rs.client.ClientBuilder; | ||
import jakarta.ws.rs.client.WebTarget; | ||
import jakarta.ws.rs.core.Context; | ||
import jakarta.ws.rs.core.MediaType; | ||
import jakarta.ws.rs.sse.OutboundSseEvent; | ||
import jakarta.ws.rs.sse.Sse; | ||
import jakarta.ws.rs.sse.SseEventSink; | ||
import jakarta.ws.rs.sse.SseEventSource; | ||
|
||
import org.eclipse.microprofile.config.ConfigProvider; | ||
|
||
@Path("/sse") | ||
public class SseResource { | ||
@Context | ||
Sse sse; | ||
|
||
@GET | ||
@Path("/client") | ||
public String sseClient() { | ||
try { | ||
return consumeSse(); | ||
} | ||
// in case that https://github.com/quarkusio/quarkus/issues/36402 throws java.lang.RuntimeException: java.lang.ClassNotFoundException: | ||
// catch it and return the error message | ||
catch (RuntimeException exception) { | ||
return exception.getMessage(); | ||
} | ||
} | ||
|
||
private String consumeSse() { | ||
StringBuilder response = new StringBuilder(); | ||
int port = ConfigProvider.getConfig().getValue("quarkus.http.port", Integer.class); | ||
|
||
/* | ||
* Client connects to itself (to server endpoint running on same app), | ||
* because for https://github.com/quarkusio/quarkus/issues/36402 to reproduce client must run on native app. | ||
* Which cannot be done in test code itself. | ||
* This method acts just as a client | ||
*/ | ||
WebTarget target = ClientBuilder.newClient().target("http://localhost:" + port + "/api/sse/server"); | ||
SseEventSource updateSource = SseEventSource.target(target).build(); | ||
updateSource.register(ev -> { | ||
response.append("event: ").append(ev.getName()).append(" ").append(ev.readData()); | ||
response.append("\n"); | ||
|
||
}, thr -> { | ||
response.append("Error in SSE, message: ").append(thr.getMessage()).append("\n"); | ||
response.append(Arrays.toString(thr.getStackTrace())); | ||
}); | ||
updateSource.open(); | ||
|
||
LockSupport.parkNanos(1_000_000_000L); | ||
return response.toString(); | ||
} | ||
|
||
@GET | ||
@Path("/server") | ||
@Produces(MediaType.SERVER_SENT_EVENTS) | ||
public void sendSseEvents(@Context SseEventSink eventSink) { | ||
eventSink.send(createEvent("test234", "test")); | ||
} | ||
|
||
private OutboundSseEvent createEvent(String name, String data) { | ||
return sse.newEventBuilder() | ||
.name(name) | ||
.data(data) | ||
.build(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters