ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/jakarta/servlet/annotation/TestServletSecurity.java

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

      
    
Rootfs path

      
    
Size
3483 (3.4 KB)
MD5
aef6ecff92e782505b2cd71c32f70652
SHA1
d0102b7e6f498ccfb38693732d37b127a430506b
SHA256
65a1d4404958ab0a6bb9d4e68171e700172acb3804f5995feb6706218619fa56
SHA512

      
    
SHA1_git
ed87e9d57f4ddc973cb0a360b77d8eb97dfbc8fd
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestServletSecurity.java | 3.4 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 jakarta.servlet.annotation; import java.io.IOException; import jakarta.servlet.ServletException; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.startup.Tomcat; import org.apache.catalina.startup.TomcatBaseTest; import org.apache.tomcat.util.buf.ByteChunk; public class TestServletSecurity extends TomcatBaseTest { @Test public void testFooThenFooBar() throws Exception { doTestFooAndFooBar(true); } @Test public void testFooBarThenFoo() throws Exception { doTestFooAndFooBar(false); } public void doTestFooAndFooBar(boolean fooFirst) throws Exception { // Setup Tomcat instance Tomcat tomcat = getTomcatInstance(); // No file system docBase required Context ctx = getProgrammaticRootContext(); Tomcat.addServlet(ctx, "Foo", Foo.class.getName()); ctx.addServletMappingDecoded("/foo/*", "Foo"); Tomcat.addServlet(ctx, "FooBar", FooBar.class.getName()); ctx.addServletMappingDecoded("/foo/bar/*", "FooBar"); tomcat.start(); ByteChunk bc = new ByteChunk(); int rc; if (fooFirst) { rc = getUrl("http://localhost:" + getPort() + "/foo", bc, null, null); } else { rc = getUrl("http://localhost:" + getPort() + "/foo/bar", bc, null, null); } bc.recycle(); Assert.assertEquals(403, rc); if (fooFirst) { rc = getUrl("http://localhost:" + getPort() + "/foo/bar", bc, null, null); } else { rc = getUrl("http://localhost:" + getPort() + "/foo", bc, null, null); } Assert.assertEquals(403, rc); } @ServletSecurity(@HttpConstraint(ServletSecurity.EmptyRoleSemantic.DENY)) public static class Foo extends HttpServlet { private static final long serialVersionUID = 1L; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.getWriter().print("OK: Foo"); } } public static class FooBar extends HttpServlet { private static final long serialVersionUID = 1L; @Override protected void doGet(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { resp.getWriter().print("OK: FooBar"); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
32.96
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