-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add test for Sse method indexing on native (#1613)
* Add test for Sse method indexing on native
- Loading branch information
Showing
2 changed files
with
87 additions
and
0 deletions.
There are no files selected for viewing
75 changes: 75 additions & 0 deletions
75
...-reactive/src/main/java/io/quarkus/ts/http/restclient/reactive/resources/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,75 @@ | ||
package io.quarkus.ts.http.restclient.reactive.resources; | ||
|
||
import java.util.Arrays; | ||
import java.util.List; | ||
import java.util.concurrent.CopyOnWriteArrayList; | ||
import java.util.concurrent.CountDownLatch; | ||
import java.util.concurrent.TimeUnit; | ||
|
||
import jakarta.enterprise.context.ApplicationScoped; | ||
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.core.Response; | ||
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; | ||
|
||
/** | ||
* Reproducer resource for https://github.com/quarkusio/quarkus/issues/36986 | ||
*/ | ||
@ApplicationScoped | ||
@Path("sse") | ||
public class SseResource { | ||
@Context | ||
Sse sse; | ||
|
||
@GET | ||
@Path("client") | ||
@Produces(MediaType.TEXT_PLAIN) | ||
public Response clientUpdate() throws InterruptedException { | ||
String host = ConfigProvider.getConfig().getValue("quarkus.http.host", String.class); | ||
int port = ConfigProvider.getConfig().getValue("quarkus.http.port", Integer.class); | ||
List<String> receivedData = new CopyOnWriteArrayList<>(); | ||
|
||
WebTarget target = ClientBuilder.newClient().target("http://" + host + ":" + port + "/sse/server-update"); | ||
try (SseEventSource eventSource = SseEventSource.target(target).build()) { | ||
eventSource.register( | ||
ev -> { | ||
String event = "event: name=" + ev.getName() + " data={" + ev.readData() + "} and is empty: " | ||
+ ev.isEmpty() | ||
+ "\n"; | ||
receivedData.add(event); | ||
}, thr -> { | ||
String event = "Error: " + thr.getMessage() + "\n" + Arrays.toString(thr.getStackTrace()); | ||
receivedData.add(event); | ||
}); | ||
CountDownLatch latch = new CountDownLatch(2); | ||
eventSource.open(); | ||
latch.await(1, TimeUnit.SECONDS); | ||
} | ||
|
||
return Response.ok(String.join("\n", receivedData)).build(); | ||
} | ||
|
||
@GET | ||
@Path("server-update") | ||
@Produces(MediaType.SERVER_SENT_EVENTS) | ||
public void updates(@Context SseEventSink eventSink) { | ||
eventSink.send(createEvent("SSE data", "random SSE data")); | ||
} | ||
|
||
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