-
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.
Issue #6287 - fix classloading for WebSocketClient in webapp
Signed-off-by: Lachlan Roberts <[email protected]>
- Loading branch information
1 parent
4204526
commit d7c42bb
Showing
6 changed files
with
245 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
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
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
208 changes: 208 additions & 0 deletions
208
...ax-tests/src/test/java/org/eclipse/jetty/websocket/javax/tests/ClientClassLoaderTest.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,208 @@ | ||
// | ||
// ======================================================================== | ||
// Copyright (c) 1995-2021 Mort Bay Consulting Pty Ltd and others. | ||
// | ||
// This program and the accompanying materials are made available under the | ||
// terms of the Eclipse Public License v. 2.0 which is available at | ||
// https://www.eclipse.org/legal/epl-2.0, or the Apache License, Version 2.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.concurrent.LinkedBlockingQueue; | ||
import java.util.concurrent.TimeUnit; | ||
import javax.servlet.annotation.WebServlet; | ||
import javax.servlet.http.HttpServlet; | ||
import javax.servlet.http.HttpServletRequest; | ||
import javax.servlet.http.HttpServletResponse; | ||
import javax.websocket.ClientEndpoint; | ||
import javax.websocket.ContainerProvider; | ||
import javax.websocket.OnMessage; | ||
import javax.websocket.OnOpen; | ||
import javax.websocket.Session; | ||
import javax.websocket.WebSocketContainer; | ||
import javax.websocket.server.ServerEndpoint; | ||
|
||
import org.eclipse.jetty.client.HttpClient; | ||
import org.eclipse.jetty.client.api.ContentResponse; | ||
import org.eclipse.jetty.client.api.Response; | ||
import org.eclipse.jetty.http.BadMessageException; | ||
import org.eclipse.jetty.http.HttpStatus; | ||
import org.eclipse.jetty.io.ByteBufferPool; | ||
import org.eclipse.jetty.util.component.ContainerLifeCycle; | ||
import org.eclipse.jetty.webapp.Configuration; | ||
import org.eclipse.jetty.webapp.Configurations; | ||
import org.eclipse.jetty.websocket.core.WebSocketComponents; | ||
import org.eclipse.jetty.websocket.core.client.CoreClientUpgradeRequest; | ||
import org.eclipse.jetty.websocket.javax.client.JavaxWebSocketClientContainerProvider; | ||
import org.eclipse.jetty.websocket.javax.common.JavaxWebSocketContainer; | ||
import org.eclipse.jetty.websocket.javax.server.config.JavaxWebSocketConfiguration; | ||
import org.eclipse.jetty.xml.XmlConfiguration; | ||
import org.junit.jupiter.api.AfterEach; | ||
import org.junit.jupiter.api.Test; | ||
|
||
import static org.hamcrest.MatcherAssert.assertThat; | ||
import static org.hamcrest.Matchers.containsString; | ||
import static org.hamcrest.Matchers.is; | ||
|
||
public class ClientClassLoaderTest | ||
{ | ||
private WSServer server; | ||
private HttpClient httpClient; | ||
|
||
@FunctionalInterface | ||
interface ThrowingRunnable | ||
{ | ||
void run() throws Exception; | ||
} | ||
|
||
public void start(ThrowingRunnable configuration) throws Exception | ||
{ | ||
server = new WSServer(); | ||
configuration.run(); | ||
server.start(); | ||
httpClient = new HttpClient(); | ||
httpClient.start(); | ||
} | ||
|
||
@AfterEach | ||
public void after() throws Exception | ||
{ | ||
httpClient.stop(); | ||
server.stop(); | ||
} | ||
|
||
@ClientEndpoint() | ||
public static class ClientSocket | ||
{ | ||
LinkedBlockingQueue<String> textMessages = new LinkedBlockingQueue<>(); | ||
|
||
@OnOpen | ||
public void onOpen(Session session) | ||
{ | ||
session.getAsyncRemote().sendText("ClassLoader: " + Thread.currentThread().getContextClassLoader()); | ||
} | ||
|
||
@OnMessage | ||
public void onMessage(String message) | ||
{ | ||
textMessages.add(message); | ||
} | ||
} | ||
|
||
@WebServlet("/servlet") | ||
public static class WebSocketClientServlet extends HttpServlet | ||
{ | ||
private WebSocketContainer clientContainer; | ||
|
||
@Override | ||
protected void doGet(HttpServletRequest req, HttpServletResponse resp) | ||
{ | ||
clientContainer = ContainerProvider.getWebSocketContainer(); | ||
|
||
URI wsEchoUri = URI.create("ws://localhost:" + req.getServerPort() + "/echo/"); | ||
ClientSocket clientSocket = new ClientSocket(); | ||
|
||
try (Session ignored = clientContainer.connectToServer(clientSocket, wsEchoUri)) | ||
{ | ||
String recv = clientSocket.textMessages.poll(5, TimeUnit.SECONDS); | ||
assertThat(recv, containsString("ClassLoader: WebAppClassLoader")); | ||
|
||
resp.setStatus(HttpStatus.OK_200); | ||
resp.getWriter().write("test complete"); | ||
} | ||
catch (Exception e) | ||
{ | ||
throw new RuntimeException(e); | ||
} | ||
} | ||
} | ||
|
||
@ServerEndpoint("/") | ||
public static class EchoSocket | ||
{ | ||
@OnMessage | ||
public void onMessage(Session session, String message) throws Exception | ||
{ | ||
session.getBasicRemote().sendText(message); | ||
} | ||
} | ||
|
||
public WSServer.WebApp createWebSocketWebapp(String contextName) throws Exception | ||
{ | ||
WSServer.WebApp app = server.createWebApp(contextName); | ||
|
||
// Exclude the Javax WebSocket configuration from the webapp (so we use versions from the webapp). | ||
Configuration[] configurations = Configurations.getKnown().stream() | ||
.filter(configuration -> !(configuration instanceof JavaxWebSocketConfiguration)) | ||
.toArray(Configuration[]::new); | ||
app.getWebAppContext().setConfigurations(configurations); | ||
|
||
// Copy over the individual jars required for Javax WebSocket. | ||
app.createWebInf(); | ||
app.copyLib(JavaxWebSocketClientContainerProvider.class, "websocket-javax-client.jar"); | ||
app.copyLib(JavaxWebSocketContainer.class, "websocket-javax-common.jar"); | ||
app.copyLib(ContainerLifeCycle.class, "jetty-util.jar"); | ||
app.copyLib(CoreClientUpgradeRequest.class, "websocket-core-client.jar"); | ||
app.copyLib(WebSocketComponents.class, "websocket-core-common.jar"); | ||
app.copyLib(Response.class, "jetty-client.jar"); | ||
app.copyLib(ByteBufferPool.class, "jetty-io.jar"); | ||
app.copyLib(BadMessageException.class, "jetty-http.jar"); | ||
app.copyLib(XmlConfiguration.class, "jetty-xml.jar"); | ||
|
||
return app; | ||
} | ||
|
||
@Test | ||
public void websocketProvidedByServer() throws Exception | ||
{ | ||
start(() -> | ||
{ | ||
WSServer.WebApp app1 = server.createWebApp("app"); | ||
app1.createWebInf(); | ||
app1.copyClass(WebSocketClientServlet.class); | ||
app1.copyClass(ClientSocket.class); | ||
app1.deploy(); | ||
|
||
WSServer.WebApp app2 = server.createWebApp("echo"); | ||
app2.createWebInf(); | ||
app2.copyClass(EchoSocket.class); | ||
app2.deploy(); | ||
}); | ||
|
||
// After hitting each WebApp we will get 200 response if test succeeds. | ||
ContentResponse response = httpClient.GET(server.getServerUri().resolve("/app/servlet")); | ||
assertThat(response.getStatus(), is(HttpStatus.OK_200)); | ||
assertThat(response.getContentAsString(), containsString("test complete")); | ||
} | ||
|
||
@Test | ||
public void websocketProvidedByWebApp() throws Exception | ||
{ | ||
start(() -> | ||
{ | ||
WSServer.WebApp app1 = createWebSocketWebapp("app"); | ||
app1.createWebInf(); | ||
app1.copyClass(WebSocketClientServlet.class); | ||
app1.copyClass(ClientSocket.class); | ||
app1.copyClass(EchoSocket.class); | ||
app1.deploy(); | ||
|
||
// Do not exclude JavaxWebSocketConfiguration for this webapp (we need the websocket server classes). | ||
WSServer.WebApp app2 = server.createWebApp("echo"); | ||
app2.createWebInf(); | ||
app2.copyClass(EchoSocket.class); | ||
app2.deploy(); | ||
}); | ||
|
||
// After hitting each WebApp we will get 200 response if test succeeds. | ||
ContentResponse response = httpClient.GET(server.getServerUri().resolve("/app/servlet")); | ||
assertThat(response.getStatus(), is(HttpStatus.OK_200)); | ||
assertThat(response.getContentAsString(), containsString("test complete")); | ||
} | ||
} |