-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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 #4931 from eclipse/jetty-10.0.x-4919-WebSocketCont…
…ainerStop Issue #4919 - WebSocket container graceful stop
- Loading branch information
Showing
11 changed files
with
433 additions
and
42 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
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
43 changes: 43 additions & 0 deletions
43
...bsocket-javax-tests/src/main/java/org/eclipse/jetty/websocket/javax/tests/EchoSocket.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,43 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995-2020 Mort Bay Consulting Pty Ltd and others. | ||
// | ||
// This program and the accompanying materials are made available under | ||
// the terms of the Eclipse Public License 2.0 which is available at | ||
// https://www.eclipse.org/legal/epl-2.0 | ||
// | ||
// This Source Code may also be made available under the following | ||
// Secondary Licenses when the conditions for such availability set | ||
// forth in the Eclipse Public License, v. 2.0 are satisfied: | ||
// the Apache License v2.0 which is available at | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 | ||
// ======================================================================== | ||
// | ||
|
||
package org.eclipse.jetty.websocket.javax.tests; | ||
|
||
import java.io.IOException; | ||
import java.nio.ByteBuffer; | ||
import javax.websocket.ClientEndpoint; | ||
import javax.websocket.server.ServerEndpoint; | ||
|
||
@ServerEndpoint("/") | ||
@ClientEndpoint | ||
public class EchoSocket extends EventSocket | ||
{ | ||
@Override | ||
public void onMessage(String message) throws IOException | ||
{ | ||
super.onMessage(message); | ||
session.getBasicRemote().sendText(message); | ||
} | ||
|
||
@Override | ||
public void onMessage(ByteBuffer message) throws IOException | ||
{ | ||
super.onMessage(message); | ||
session.getBasicRemote().sendBinary(message); | ||
} | ||
} |
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
133 changes: 133 additions & 0 deletions
133
...-javax-tests/src/test/java/org/eclipse/jetty/websocket/javax/tests/GracefulCloseTest.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,133 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995-2020 Mort Bay Consulting Pty Ltd and others. | ||
// | ||
// This program and the accompanying materials are made available under | ||
// the terms of the Eclipse Public License 2.0 which is available at | ||
// https://www.eclipse.org/legal/epl-2.0 | ||
// | ||
// This Source Code may also be made available under the following | ||
// Secondary Licenses when the conditions for such availability set | ||
// forth in the Eclipse Public License, v. 2.0 are satisfied: | ||
// the Apache License v2.0 which is available at | ||
// https://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// SPDX-License-Identifier: EPL-2.0 OR Apache-2.0 | ||
// ======================================================================== | ||
// | ||
|
||
package org.eclipse.jetty.websocket.javax.tests; | ||
|
||
import java.net.URI; | ||
import java.util.Objects; | ||
import java.util.concurrent.TimeUnit; | ||
import javax.websocket.CloseReason; | ||
import javax.websocket.EndpointConfig; | ||
import javax.websocket.Session; | ||
import javax.websocket.server.ServerEndpoint; | ||
|
||
import org.eclipse.jetty.server.Server; | ||
import org.eclipse.jetty.server.ServerConnector; | ||
import org.eclipse.jetty.servlet.ServletContextHandler; | ||
import org.eclipse.jetty.util.BlockingArrayQueue; | ||
import org.eclipse.jetty.util.component.Graceful; | ||
import org.eclipse.jetty.websocket.javax.client.internal.JavaxWebSocketClientContainer; | ||
import org.eclipse.jetty.websocket.javax.server.config.JavaxWebSocketServletContainerInitializer; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.is; | ||
import static org.junit.jupiter.api.Assertions.assertNull; | ||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
|
||
public class GracefulCloseTest | ||
{ | ||
private static final BlockingArrayQueue<EventSocket> serverEndpoints = new BlockingArrayQueue<>(); | ||
private Server server; | ||
private URI serverUri; | ||
private JavaxWebSocketClientContainer client; | ||
|
||
@BeforeEach | ||
public void before() throws Exception | ||
{ | ||
server = new Server(); | ||
ServerConnector connector = new ServerConnector(server); | ||
server.addConnector(connector); | ||
|
||
ServletContextHandler contextHandler = new ServletContextHandler(); | ||
contextHandler.setContextPath("/"); | ||
server.setHandler(contextHandler); | ||
JavaxWebSocketServletContainerInitializer.configure(contextHandler, (context, container) -> | ||
container.addEndpoint(ServerSocket.class)); | ||
server.start(); | ||
serverUri = WSURI.toWebsocket(server.getURI()); | ||
|
||
// StopTimeout is necessary for the websocket server sessions to gracefully close. | ||
server.setStopTimeout(1000); | ||
|
||
client = new JavaxWebSocketClientContainer(); | ||
client.start(); | ||
} | ||
|
||
@AfterEach | ||
public void after() throws Exception | ||
{ | ||
client.stop(); | ||
server.stop(); | ||
} | ||
|
||
@ServerEndpoint("/") | ||
public static class ServerSocket extends EchoSocket | ||
{ | ||
@Override | ||
public void onOpen(Session session, EndpointConfig endpointConfig) | ||
{ | ||
serverEndpoints.add(this); | ||
super.onOpen(session, endpointConfig); | ||
} | ||
} | ||
|
||
@Test | ||
public void testClientStop() throws Exception | ||
{ | ||
EventSocket clientEndpoint = new EventSocket(); | ||
client.connectToServer(clientEndpoint, serverUri); | ||
EventSocket serverEndpoint = Objects.requireNonNull(serverEndpoints.poll(5, TimeUnit.SECONDS)); | ||
|
||
// There is no API for a Javax WebSocketContainer stop timeout. | ||
Graceful.shutdown(client).get(5, TimeUnit.SECONDS); | ||
client.stop(); | ||
|
||
// Check that the client endpoint was closed with the correct status code and no error. | ||
assertTrue(clientEndpoint.closeLatch.await(5, TimeUnit.SECONDS)); | ||
assertThat(clientEndpoint.closeReason.getCloseCode(), is(CloseReason.CloseCodes.GOING_AWAY)); | ||
assertNull(clientEndpoint.error); | ||
|
||
// Check that the server endpoint was closed with the correct status code and no error. | ||
assertTrue(serverEndpoint.closeLatch.await(5, TimeUnit.SECONDS)); | ||
assertThat(serverEndpoint.closeReason.getCloseCode(), is(CloseReason.CloseCodes.GOING_AWAY)); | ||
assertNull(serverEndpoint.error); | ||
} | ||
|
||
@Test | ||
public void testServerStop() throws Exception | ||
{ | ||
EventSocket clientEndpoint = new EventSocket(); | ||
client.connectToServer(clientEndpoint, serverUri); | ||
EventSocket serverEndpoint = Objects.requireNonNull(serverEndpoints.poll(5, TimeUnit.SECONDS)); | ||
|
||
server.stop(); | ||
|
||
// Check that the client endpoint was closed with the correct status code and no error. | ||
assertTrue(clientEndpoint.closeLatch.await(5, TimeUnit.SECONDS)); | ||
assertThat(clientEndpoint.closeReason.getCloseCode(), is(CloseReason.CloseCodes.GOING_AWAY)); | ||
assertNull(clientEndpoint.error); | ||
|
||
// Check that the server endpoint was closed with the correct status code and no error. | ||
assertTrue(serverEndpoint.closeLatch.await(5, TimeUnit.SECONDS)); | ||
assertThat(serverEndpoint.closeReason.getCloseCode(), is(CloseReason.CloseCodes.GOING_AWAY)); | ||
assertNull(serverEndpoint.error); | ||
} | ||
} |
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
Oops, something went wrong.