Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add test for Sse method indexing on native #1613

Merged
merged 3 commits into from
Jan 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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");
fedinskiy marked this conversation as resolved.
Show resolved Hide resolved
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();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import static com.github.tomakehurst.wiremock.core.Options.ChunkedEncodingPolicy.NEVER;
import static io.quarkus.ts.http.restclient.reactive.resources.PlainBookResource.SEARCH_TERM_VAL;
import static org.hamcrest.Matchers.containsString;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.nullValue;
import static org.junit.jupiter.api.Assertions.assertEquals;
Expand All @@ -22,6 +23,7 @@
import io.quarkus.test.bootstrap.Protocol;
import io.quarkus.test.bootstrap.RestService;
import io.quarkus.test.scenarios.QuarkusScenario;
import io.quarkus.test.scenarios.annotations.EnabledOnNative;
import io.quarkus.test.services.QuarkusApplication;
import io.quarkus.ts.http.restclient.reactive.json.Book;
import io.quarkus.ts.http.restclient.reactive.json.BookRepository;
Expand Down Expand Up @@ -255,6 +257,16 @@ public void malformedChunk() {
Assertions.assertEquals("io.vertx.core.http.HttpClosedException", response.body().asString());
}

@Test
@EnabledOnNative
@Tag("https://github.com/quarkusio/quarkus/issues/36986")
public void sseIndexMethodOnNativeTest() {
app.given().get("/sse/client")
.then()
.statusCode(200)
.body(containsString("random SSE data"));
}

@AfterAll
static void afterAll() {
mockServer.stop();
Expand Down