ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/catalina/session/TestStandardSessionIntegration.java

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

      
    
Rootfs path

      
    
Size
3827 (3.7 KB)
MD5
db86f8adfc65280bd384f1b840016ee3
SHA1
86fc0360d5d5252432ea9d3066247b44daf4b6ef
SHA256
c564a0083b9e886e6411a247d82d3daaee6de3736e326c5222276730073bf526
SHA512

      
    
SHA1_git
de33592cfd0a3a8a200389c21dfc2d13699cede7
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestStandardSessionIntegration.java | 3.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.catalina.session; import java.io.IOException; import java.io.PrintWriter; import jakarta.servlet.ServletException; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpSession; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.ha.tcp.SimpleTcpCluster; import org.apache.catalina.startup.Tomcat; import org.apache.catalina.startup.TomcatBaseTest; import org.apache.catalina.tribes.group.GroupChannel; import org.apache.catalina.tribes.transport.ReceiverBase; import org.apache.tomcat.util.buf.ByteChunk; public class TestStandardSessionIntegration extends TomcatBaseTest { /* * Test session.invalidate() in a clustered environment. */ @Test public void testBug56578a() throws Exception { doTestInvalidate(true); } @Test public void testBug56578b() throws Exception { doTestInvalidate(false); } private void doTestInvalidate(boolean useClustering) throws Exception { // Setup Tomcat instance Tomcat tomcat = getTomcatInstance(); // No file system docBase required Context ctx = getProgrammaticRootContext(); Tomcat.addServlet(ctx, "bug56578", new Bug56578Servlet()); ctx.addServletMappingDecoded("/bug56578", "bug56578"); if (useClustering) { SimpleTcpCluster cluster = new SimpleTcpCluster(); ((ReceiverBase) ((GroupChannel) cluster.getChannel()).getChannelReceiver()).setHost("localhost"); tomcat.getEngine().setCluster(cluster); ctx.setDistributable(true); ctx.setManager(ctx.getCluster().createManager("")); } tomcat.start(); ByteChunk res = getUrl("http://localhost:" + getPort() + "/bug56578"); Assert.assertEquals("PASS", res.toString()); } private static class Bug56578Servlet extends HttpServlet { private static final long serialVersionUID = 1L; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.setContentType("text/plain"); resp.setCharacterEncoding("UTF-8"); PrintWriter pw = resp.getWriter(); HttpSession session = req.getSession(true); session.invalidate(); // Ugly but the easiest way to test of the session is valid or not boolean result; try { session.getCreationTime(); result = false; } catch (IllegalStateException ise) { result = true; } if (result) { pw.print("PASS"); } else { pw.print("FAIL"); } } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
31.23
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