ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/websocket/server/TestClassLoader.java

Path
ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/websocket/server/TestClassLoader.java
Status
scanned
Type
file
Name
TestClassLoader.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text, with CRLF line terminators
Tag

      
    
Rootfs path

      
    
Size
4780 (4.7 KB)
MD5
067ee6008b968bf63623da4478327894
SHA1
2a529c673dd92cca4af79642c7acf655b402f904
SHA256
057b64ee3a8abc235067eb2c9ecca8b03277b7e0bef71e757430ff84164edfd9
SHA512

      
    
SHA1_git
3997b528daf8df8a0b771377fcf95c18fc123054
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestClassLoader.java | 4.7 KB |

/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.apache.tomcat.websocket.server; import java.io.IOException; import java.net.URI; import java.util.concurrent.atomic.AtomicInteger; import jakarta.websocket.ClientEndpoint; import jakarta.websocket.ContainerProvider; import jakarta.websocket.OnMessage; import jakarta.websocket.OnOpen; import jakarta.websocket.Session; import jakarta.websocket.WebSocketContainer; import jakarta.websocket.server.ServerEndpoint; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.loader.WebappClassLoaderBase; import org.apache.catalina.servlets.DefaultServlet; import org.apache.catalina.startup.Tomcat; import org.apache.tomcat.websocket.WebSocketBaseTest; /** * Tests endpoint methods are called with the correct class loader. */ public class TestClassLoader extends WebSocketBaseTest { private static final String PASS = "PASS"; private static final String FAIL = "FAIL"; /* * Checks class loader for the server endpoint during onOpen and onMessage */ @Test public void testSimple() throws Exception { Tomcat tomcat = getTomcatInstance(); // No file system docBase required Context ctx = getProgrammaticRootContext(); ctx.addApplicationListener(Config.class.getName()); Tomcat.addServlet(ctx, "default", new DefaultServlet()); ctx.addServletMappingDecoded("/", "default"); tomcat.start(); WebSocketContainer wsContainer = ContainerProvider.getWebSocketContainer(); Client client = new Client(); Session wsSession = wsContainer.connectToServer(client, new URI("ws://localhost:" + getPort() + "/test")); Assert.assertTrue(wsSession.isOpen()); // Wait up to 5s for a message int count = 0; while (count < 50 && client.getMsgCount() < 1) { Thread.sleep(100); } // Check it Assert.assertEquals(1, client.getMsgCount()); Assert.assertFalse(client.hasFailed()); wsSession.getBasicRemote().sendText("Testing"); // Wait up to 5s for a message count = 0; while (count < 50 && client.getMsgCount() < 2) { Thread.sleep(100); } Assert.assertEquals(2, client.getMsgCount()); Assert.assertFalse(client.hasFailed()); wsSession.close(); } @ClientEndpoint public static class Client { private final AtomicInteger msgCount = new AtomicInteger(0); private boolean failed = false; public boolean hasFailed() { return failed; } public int getMsgCount() { return msgCount.get(); } @OnMessage public void onMessage(String msg) { if (!failed && !PASS.equals(msg)) { failed = true; } msgCount.incrementAndGet(); } } @ServerEndpoint("/test") public static class ClassLoaderEndpoint { @OnOpen public void onOpen(Session session) throws IOException { if (Thread.currentThread().getContextClassLoader() instanceof WebappClassLoaderBase) { session.getBasicRemote().sendText(PASS); } else { session.getBasicRemote().sendText(FAIL); } } @OnMessage public String onMessage(@SuppressWarnings("unused") String msg) { if (Thread.currentThread().getContextClassLoader() instanceof WebappClassLoaderBase) { return PASS; } else { return FAIL; } } } public static class Config extends TesterEndpointConfig { @Override protected Class<?> getEndpointClass() { return ClassLoaderEndpoint.class; } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
26.21
Copyrights

      
    
Holders

      
    
Authors

      
    
License detections License expression License expression SPDX
apache_2_0-4bde3f57-78aa-4201-96bf-531cba09e7de apache-2.0 Apache-2.0
URL Start line End line
http://www.apache.org/licenses/LICENSE-2.0 9 9