ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/catalina/loader/TestWebappClassLoader.java

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

      
    
Rootfs path

      
    
Size
7468 (7.3 KB)
MD5
fa32ce304f981ede9445302870f0fca8
SHA1
5f8c9da2085d2e0f70ac8f412f65488e12077683
SHA256
134125f5dfd2571228d708caafa32044ab13a8caaff11be085bc65850f8c8a2c
SHA512

      
    
SHA1_git
0a4871fdffd9f218eeae69ed5ee2b3662ed375d5
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestWebappClassLoader.java | 7.3 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.loader; import java.io.File; import java.io.IOException; import java.net.URL; import java.net.URLClassLoader; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.core.StandardContext; import org.apache.catalina.startup.Tomcat; import org.apache.catalina.startup.TomcatBaseTest; public class TestWebappClassLoader extends TomcatBaseTest { @Test public void testGetURLs() throws Exception { File f = new File("test/webresources/war-url-connection.war"); String[] expected = new String[2]; String warUrl = f.toURI().toURL().toExternalForm(); expected[0] = "war:" + warUrl + "*/WEB-INF/classes/"; expected[1] = "war:" + warUrl + "*/WEB-INF/lib/test.jar"; Tomcat tomcat = getTomcatInstance(); StandardContext ctx = (StandardContext) tomcat.addContext("", f.getAbsolutePath()); tomcat.start(); ClassLoader cl = ctx.getLoader().getClassLoader(); try (URLClassLoader ucl = (URLClassLoader) cl) { URL[] urls = ucl.getURLs(); Assert.assertEquals(expected.length, urls.length); String[] actual = new String[urls.length]; for (int i = 0; i < urls.length; i++) { actual[i] = urls[i].toExternalForm(); } Assert.assertArrayEquals(expected, actual); } } @Test public void testFilter() throws IOException { String[] classSuffixes = new String[] { "", "some.package.Example" }; String[] resourceSuffixes = new String[] { "", "some/path/test.properties", "some/path/test" }; String[] prefixes = new String[] { "", "resources", "WEB-INF", "WEB-INF.classes", "WEB-INF.lib", "org", "org.apache", "jakarta", "javax", "com.mycorp" }; String[] prefixesPermit = new String[] { "org.apache.tomcat.jdbc", "jakarta.servlet.jsp.jstl", }; String[] prefixesDeny = new String[] { "org.apache.catalina", "org.apache.coyote", "org.apache.el", "org.apache.jasper", "org.apache.juli", "org.apache.naming", "org.apache.tomcat", "jakarta.annotation", "jakarta.el", "jakarta.servlet", "jakarta.websocket", "jakarta.security.auth.message" }; try (WebappClassLoader loader = new WebappClassLoader()) { String name; for (String prefix : prefixes) { for (String suffix : classSuffixes) { name = prefix + "." + suffix; Assert.assertTrue("Class '" + name + "' failed permit filter", !loader.filter(name, true)); if (prefix.equals("")) { name = suffix; Assert.assertTrue("Class '" + name + "' failed permit filter", !loader.filter(name, true)); } if (suffix.equals("")) { name = prefix; Assert.assertTrue("Class '" + name + "' failed permit filter", !loader.filter(name, true)); } } prefix = prefix.replace('.', '/'); for (String suffix : resourceSuffixes) { name = prefix + "/" + suffix; Assert.assertTrue("Resource '" + name + "' failed permit filter", !loader.filter(name, false)); if (prefix.equals("")) { name = suffix; Assert.assertTrue("Resource '" + name + "' failed permit filter", !loader.filter(name, false)); } if (suffix.equals("")) { name = prefix; Assert.assertTrue("Resource '" + name + "' failed permit filter", !loader.filter(name, false)); } } } for (String prefix : prefixesPermit) { for (String suffix : classSuffixes) { name = prefix + "." + suffix; Assert.assertTrue("Class '" + name + "' failed permit filter", !loader.filter(name, true)); } prefix = prefix.replace('.', '/'); for (String suffix : resourceSuffixes) { name = prefix + "/" + suffix; Assert.assertTrue("Resource '" + name + "' failed permit filter", !loader.filter(name, false)); } } for (String prefix : prefixesDeny) { for (String suffix : classSuffixes) { name = prefix + "." + suffix; Assert.assertTrue("Class '" + name + "' failed deny filter", loader.filter(name, true)); } prefix = prefix.replace('.', '/'); for (String suffix : resourceSuffixes) { name = prefix + "/" + suffix; Assert.assertTrue("Resource '" + name + "' failed deny filter", loader.filter(name, false)); } } } } /* * See https://github.com/apache/tomcat/pull/816 for details. */ @Test public void testResourceName() throws Exception { Tomcat tomcat = getTomcatInstance(); getProgrammaticRootContext(); tomcat.start(); // Add an external resource to the web application WebappClassLoaderBase cl = (WebappClassLoaderBase) ((Context) tomcat.getHost().findChildren()[0]).getLoader().getClassLoader(); File f = new File("test/conf"); cl.addURL(f.toURI().toURL()); /* * External resources are loaded using URLClassLoader code so leading '/' characters are not permitted in * resource names. */ URL u1 = cl.getResource("/jaspic-test-01.xml"); Assert.assertNull(u1); // Should now be visible if the correct name is used. URL u2 = cl.getResource("jaspic-test-01.xml"); Assert.assertNotNull(u2); } @Test public void testResourceNameEmptyString() throws Exception { Tomcat tomcat = getTomcatInstance(); getProgrammaticRootContext(); tomcat.start(); // Add an external resource to the web application WebappClassLoaderBase cl = (WebappClassLoaderBase) ((Context) tomcat.getHost().findChildren()[0]).getLoader().getClassLoader(); URL u1 = cl.getResource(""); Assert.assertNotNull(u1); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
17.07
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
https://github.com/apache/tomcat/pull/816 137 137