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

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

      
    
Rootfs path

      
    
Size
3797 (3.7 KB)
MD5
f5a2f2e9a3bb32bf754e0aa721abe9b0
SHA1
c1549312e3048a3f69c34f6c816ab7fcbc950d3a
SHA256
e2010b51379c3c2c7ce23f1b9c4d0426efc733eff05e79a0613773ae192c5070
SHA512

      
    
SHA1_git
68758ac884b92569ddcb1b3096bd632274616eb5
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestVirtualWebappLoader.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.loader; import java.io.File; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.WebResourceRoot; import org.apache.catalina.core.StandardContext; import org.apache.catalina.startup.Tomcat; import org.apache.catalina.startup.TomcatBaseTest; import org.apache.catalina.webresources.StandardRoot; public class TestVirtualWebappLoader extends TomcatBaseTest { @Test public void testModified() throws Exception { WebappLoader loader = new WebappLoader(); Assert.assertNull(loader.getClassLoader()); Assert.assertFalse(loader.modified()); } @Test public void testLoaderInstance() throws Exception { WebappLoader loader = new WebappLoader(); Assert.assertNull(loader.getClassLoader()); WebappClassLoader cl = new WebappClassLoader(); loader.setLoaderInstance(cl); Assert.assertSame(cl, loader.getClassLoader()); Assert.assertEquals(WebappClassLoader.class.getName(), loader.getLoaderClass()); Tomcat tomcat = getTomcatInstance(); File appDir = new File("test/webapp"); StandardContext ctx = (StandardContext) tomcat.addContext("", appDir.getAbsolutePath()); loader.setContext(ctx); ctx.setLoader(loader); ctx.setResources(new StandardRoot(ctx)); ctx.resourcesStart(); loader.start(); Assert.assertSame(cl, loader.getClassLoader()); Assert.assertEquals(WebappClassLoader.class.getName(), loader.getLoaderClass()); loader.stop(); Assert.assertNull(loader.getClassLoader()); Assert.assertEquals(WebappClassLoader.class.getName(), loader.getLoaderClass()); } @Test public void testStartInternal() throws Exception { Tomcat tomcat = getTomcatInstance(); File appDir = new File("test/webapp"); StandardContext ctx = (StandardContext) tomcat.addContext("", appDir.getAbsolutePath()); WebappLoader loader = new WebappLoader(); loader.setContext(ctx); ctx.setLoader(loader); ctx.setResources(new StandardRoot(ctx)); ctx.resourcesStart(); File f1 = new File("test/webapp-fragments/WEB-INF/lib"); ctx.getResources().createWebResourceSet(WebResourceRoot.ResourceSetType.POST, "/WEB-INF/lib", f1.getAbsolutePath(), null, "/"); loader.start(); String[] repos = loader.getLoaderRepositories(); Assert.assertEquals(6, repos.length); loader.stop(); repos = loader.getLoaderRepositories(); Assert.assertEquals(0, repos.length); // no leak loader.start(); repos = loader.getLoaderRepositories(); Assert.assertEquals(6, repos.length); // clear loader ctx.setLoader(null); // see tearDown()! tomcat.start(); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
31.65
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