-
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 #39462 from mkouba/issue-39182
WebSockets Next: detect incorrect path parameter usage
- Loading branch information
Showing
3 changed files
with
64 additions
and
2 deletions.
There are no files selected for viewing
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
21 changes: 19 additions & 2 deletions
21
...ent/src/test/java/io/quarkus/websockets/next/deployment/WebSocketServerProcessorTest.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
36 changes: 36 additions & 0 deletions
36
...loyment/src/test/java/io/quarkus/websockets/next/test/endpoints/InvalidPathParamTest.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,36 @@ | ||
package io.quarkus.websockets.next.test.endpoints; | ||
|
||
import static org.junit.jupiter.api.Assertions.fail; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.RegisterExtension; | ||
|
||
import io.quarkus.test.QuarkusUnitTest; | ||
import io.quarkus.websockets.next.OnOpen; | ||
import io.quarkus.websockets.next.WebSocket; | ||
import io.quarkus.websockets.next.WebSocketServerException; | ||
|
||
public class InvalidPathParamTest { | ||
|
||
@RegisterExtension | ||
public static final QuarkusUnitTest test = new QuarkusUnitTest() | ||
.withApplicationRoot(root -> { | ||
root.addClasses(InvalidPathParam.class); | ||
}) | ||
.setExpectedException(WebSocketServerException.class); | ||
|
||
@Test | ||
void testInvalidPathParam() { | ||
fail(); | ||
} | ||
|
||
@WebSocket(path = "/service/{invalid}_{param}") | ||
public static class InvalidPathParam { | ||
|
||
@OnOpen | ||
public void onOpen() { | ||
} | ||
|
||
} | ||
|
||
} |