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

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

      
    
Rootfs path

      
    
Size
4826 (4.7 KB)
MD5
74d83be2ab1cbd2025903979a9f254d7
SHA1
8cc3b94684d7d597c21d2d46ee37a90036a5e889
SHA256
ac4fe9d7210d67cdba06dd412622b2ea4e80e7b43e336b4f5d45154609fba9a7
SHA512

      
    
SHA1_git
6bfe23455329e2d8063f27021e42c2124999a50f
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestSlowClient.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.net.URI; import jakarta.websocket.ClientEndpointConfig; import jakarta.websocket.CloseReason; import jakarta.websocket.CloseReason.CloseCodes; import jakarta.websocket.ContainerProvider; import jakarta.websocket.MessageHandler; import jakarta.websocket.Session; import jakarta.websocket.WebSocketContainer; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.servlets.DefaultServlet; import org.apache.catalina.startup.Tomcat; import org.apache.coyote.AbstractProtocol; import org.apache.tomcat.websocket.TesterFirehoseServer; import org.apache.tomcat.websocket.TesterMessageCountClient.TesterProgrammaticEndpoint; import org.apache.tomcat.websocket.WebSocketBaseTest; import org.apache.tomcat.websocket.WsSession; public class TestSlowClient extends WebSocketBaseTest { @Test public void testSendingFromAppThread() throws Exception { Tomcat tomcat = getTomcatInstance(); Context ctx = getProgrammaticRootContext(); // Server side endpoint that sends a stream of messages on a new thread // in response to any message received. ctx.addApplicationListener(TesterFirehoseServer.ConfigThread.class.getName()); Tomcat.addServlet(ctx, "default", new DefaultServlet()); ctx.addServletMappingDecoded("/", "default"); tomcat.start(); // WebSocket client WebSocketContainer wsContainer = ContainerProvider.getWebSocketContainer(); Session wsSession = wsContainer.connectToServer(TesterProgrammaticEndpoint.class, ClientEndpointConfig.Builder.create().build(), new URI("ws://localhost:" + getPort() + TesterFirehoseServer.PATH)); // Configure a handler designed to create a backlog causing the server // side write to time out. wsSession.addMessageHandler(new VerySlowHandler()); // Trigger the sending of the messages from the server wsSession.getBasicRemote().sendText("start"); /* * Wait for server to experience a write timeout. This should take TesterFirehoseServer.SEND_TIME_OUT_MILLIS * plus however long it takes for the network buffer to fill up which should be a few milliseconds. An * additional 10s should be enough even for the slowest CI system. * * As soon as the server has experienced the write timeout, send the session close message from the client and * close the network connection. */ Thread.sleep(TesterFirehoseServer.SEND_TIME_OUT_MILLIS); int count = 0; while (wsSession.isOpen() && TesterFirehoseServer.Endpoint.getErrorCount() == 0 && count < 200) { Thread.sleep(50); count++; } Assert.assertTrue(TesterFirehoseServer.Endpoint.getErrorCount() > 0); Assert.assertTrue(wsSession.isOpen()); // Cast so we can force the session and the socket to be closed quickly. CloseReason cr = new CloseReason(CloseCodes.CLOSED_ABNORMALLY, ""); ((WsSession) wsSession).doClose(cr, cr, true); // BZ 64848 (non-container thread variant) // Confirm there are no waiting processors AbstractProtocol<?> protocol = (AbstractProtocol<?>) tomcat.getConnector().getProtocolHandler(); count = 0; while (protocol.getWaitingProcessorCount() > 0 && count < 200) { Thread.sleep(100); count++; } Assert.assertEquals(0, protocol.getWaitingProcessorCount()); } public static class VerySlowHandler implements MessageHandler.Whole<String> { @Override public void onMessage(String message) { try { Thread.sleep(5000); } catch (InterruptedException e) { // Ignore } } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
23.99
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