-
Notifications
You must be signed in to change notification settings - Fork 2.7k
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 #40146 from mkouba/issue-39590
WebSockets Next: configuration updates
- Loading branch information
Showing
7 changed files
with
194 additions
and
9 deletions.
There are no files selected for viewing
70 changes: 70 additions & 0 deletions
70
.../src/test/java/io/quarkus/websockets/next/test/errors/WriteErrorClosedConnectionTest.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,70 @@ | ||
package io.quarkus.websockets.next.test.errors; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.net.URI; | ||
import java.time.Duration; | ||
import java.util.concurrent.atomic.AtomicBoolean; | ||
|
||
import jakarta.inject.Inject; | ||
|
||
import org.awaitility.Awaitility; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.test.QuarkusUnitTest; | ||
import io.quarkus.test.common.http.TestHTTPResource; | ||
import io.quarkus.websockets.next.OnBinaryMessage; | ||
import io.quarkus.websockets.next.OnError; | ||
import io.quarkus.websockets.next.WebSocket; | ||
import io.quarkus.websockets.next.WebSocketConnection; | ||
import io.quarkus.websockets.next.test.utils.WSClient; | ||
import io.smallrye.mutiny.Uni; | ||
import io.vertx.core.Vertx; | ||
import io.vertx.core.buffer.Buffer; | ||
|
||
public class WriteErrorClosedConnectionTest { | ||
|
||
@RegisterExtension | ||
public static final QuarkusUnitTest test = new QuarkusUnitTest() | ||
.withApplicationRoot(root -> { | ||
root.addClasses(Echo.class, WSClient.class); | ||
}); | ||
|
||
@Inject | ||
Vertx vertx; | ||
|
||
@TestHTTPResource("echo") | ||
URI testUri; | ||
|
||
@Test | ||
void testError() { | ||
WSClient client = WSClient.create(vertx).connect(testUri); | ||
client.sendAndAwait(Buffer.buffer("1")); | ||
Awaitility.await().atMost(Duration.ofSeconds(5)).until(() -> client.isClosed()); | ||
assertTrue(Echo.ERROR_HANDLER_CALLED.get()); | ||
} | ||
|
||
@WebSocket(path = "/echo") | ||
public static class Echo { | ||
|
||
static final AtomicBoolean ERROR_HANDLER_CALLED = new AtomicBoolean(); | ||
|
||
@OnBinaryMessage | ||
Uni<Buffer> process(Buffer message, WebSocketConnection connection) { | ||
// This should result in a failure because the connection is closed | ||
// but we still try to write a binary message | ||
return connection.close().replaceWith(message); | ||
} | ||
|
||
@OnError | ||
void runtimeProblem(Throwable t, WebSocketConnection connection) { | ||
if (connection.isOpen()) { | ||
throw new IllegalStateException(); | ||
} | ||
ERROR_HANDLER_CALLED.set(true); | ||
} | ||
|
||
} | ||
|
||
} |
63 changes: 63 additions & 0 deletions
63
...ment/src/test/java/io/quarkus/websockets/next/test/maxmessagesize/MaxMessageSizeTest.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,63 @@ | ||
package io.quarkus.websockets.next.test.maxmessagesize; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertNotEquals; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
import java.net.URI; | ||
import java.util.concurrent.atomic.AtomicBoolean; | ||
|
||
import jakarta.inject.Inject; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.test.QuarkusUnitTest; | ||
import io.quarkus.test.common.http.TestHTTPResource; | ||
import io.quarkus.websockets.next.OnError; | ||
import io.quarkus.websockets.next.OnTextMessage; | ||
import io.quarkus.websockets.next.WebSocket; | ||
import io.quarkus.websockets.next.test.utils.WSClient; | ||
import io.vertx.core.Vertx; | ||
|
||
public class MaxMessageSizeTest { | ||
|
||
@RegisterExtension | ||
public static final QuarkusUnitTest test = new QuarkusUnitTest() | ||
.withApplicationRoot(root -> { | ||
root.addClasses(Echo.class, WSClient.class); | ||
}).overrideConfigKey("quarkus.websockets-next.max-message-size", "10"); | ||
|
||
@Inject | ||
Vertx vertx; | ||
|
||
@TestHTTPResource("/echo") | ||
URI echoUri; | ||
|
||
@Test | ||
void testMaxMessageSize() { | ||
WSClient client = WSClient.create(vertx).connect(echoUri); | ||
String msg = "foo".repeat(10); | ||
String reply = client.sendAndAwaitReply(msg).toString(); | ||
assertNotEquals(msg, reply); | ||
assertTrue(Echo.ISE_THROWN.get()); | ||
} | ||
|
||
@WebSocket(path = "/echo") | ||
public static class Echo { | ||
|
||
static final AtomicBoolean ISE_THROWN = new AtomicBoolean(); | ||
|
||
@OnTextMessage | ||
String process(String message) { | ||
return message; | ||
} | ||
|
||
@OnError | ||
String onError(IllegalStateException ise) { | ||
ISE_THROWN.set(true); | ||
return ise.getMessage(); | ||
} | ||
|
||
} | ||
|
||
} |
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
27 changes: 20 additions & 7 deletions
27
...next/server/runtime/src/main/java/io/quarkus/websockets/next/WebSocketsRuntimeConfig.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 |
---|---|---|
@@ -1,29 +1,42 @@ | ||
package io.quarkus.websockets.next; | ||
|
||
import java.time.Duration; | ||
import java.util.List; | ||
import java.util.Optional; | ||
import java.util.OptionalInt; | ||
|
||
import io.quarkus.runtime.annotations.ConfigPhase; | ||
import io.quarkus.runtime.annotations.ConfigRoot; | ||
import io.smallrye.config.ConfigMapping; | ||
import io.smallrye.config.WithDefault; | ||
import io.vertx.core.http.HttpServerOptions; | ||
|
||
@ConfigMapping(prefix = "quarkus.websockets-next") | ||
@ConfigRoot(phase = ConfigPhase.RUN_TIME) | ||
public interface WebSocketsRuntimeConfig { | ||
|
||
/** | ||
* See <a href="https://datatracker.ietf.org/doc/html/rfc6455#page-12">The WebSocket Protocol</a> | ||
* | ||
* @return the supported subprotocols | ||
*/ | ||
Optional<List<String>> supportedSubprotocols(); | ||
|
||
/** | ||
* TODO Not implemented yet. | ||
* | ||
* The default timeout to complete processing of a message. | ||
* Compression Extensions for WebSocket are supported by default. | ||
* <p> | ||
* See also <a href="https://datatracker.ietf.org/doc/html/rfc7692">RFC 7692</a> | ||
*/ | ||
Optional<Duration> timeout(); | ||
@WithDefault("true") | ||
boolean perMessageCompressionSupported(); | ||
|
||
/** | ||
* The compression level must be a value between 0 and 9. The default value is | ||
* {@value HttpServerOptions#DEFAULT_WEBSOCKET_COMPRESSION_LEVEL}. | ||
*/ | ||
OptionalInt compressionLevel(); | ||
|
||
/** | ||
* The maximum size of a message in bytes. The default values is | ||
* {@value HttpServerOptions#DEFAULT_MAX_WEBSOCKET_MESSAGE_SIZE}. | ||
*/ | ||
OptionalInt maxMessageSize(); | ||
|
||
} |
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
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