ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/catalina/webresources/war/TestHandler.java

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

      
    
Rootfs path

      
    
Size
2010 (2.0 KB)
MD5
7f5aa9a7983b4ff15bb89c376e81415c
SHA1
eebeb9ee448dc6cfdfa623c4c0b0254500eb421d
SHA256
cc8c48cde68696be5d6170b6c8cd6a7056e467c9203332398261de20c873466b
SHA512

      
    
SHA1_git
3e4a30a76466f62da2ad0d11b8a51f45946b61a1
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestHandler.java | 2.0 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.webresources.war; import java.io.File; import java.net.URI; import java.net.URL; import org.junit.Assert; import org.junit.Before; import org.junit.Test; import org.apache.catalina.webresources.TomcatURLStreamHandlerFactory; public class TestHandler { @Before public void register() { TomcatURLStreamHandlerFactory.register(); } @Test public void testUrlFileInJarInWar() throws Exception { doTestUrl("jar:war:", "*/WEB-INF/lib/test.jar!/META-INF/resources/index.html"); } @Test public void testUrlJarInWar() throws Exception { doTestUrl("war:", "*/WEB-INF/lib/test.jar"); } @Test public void testUrlWar() throws Exception { doTestUrl("", ""); } private void doTestUrl(String prefix, String suffix) throws Exception { File f = new File("test/webresources/war-url-connection.war"); String fileUrl = f.toURI().toURL().toString(); String urlString = prefix + fileUrl + suffix; URL url = URI.create(urlString).toURL(); Assert.assertEquals(urlString, url.toExternalForm()); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
48.97
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