ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/util/buf/TestUriUtilIsAbsoluteURI.java

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

      
    
Rootfs path

      
    
Size
3078 (3.0 KB)
MD5
fb1a0425fc90a02978f1cb97e3979512
SHA1
b997e9435294a60ad3e895bc222c6290c80f42c3
SHA256
c7ab2828c845831e8d30648804fb45b42e64493172f4075d0b59040a367096e5
SHA512

      
    
SHA1_git
b4e24c77697c3dad1338a0d0e9641e465ac89619
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestUriUtilIsAbsoluteURI.java | 3.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.tomcat.util.buf; import java.util.ArrayList; import java.util.Collection; import java.util.List; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameter; @RunWith(Parameterized.class) public class TestUriUtilIsAbsoluteURI { @Parameterized.Parameters(name = "{index}: path[{0}], expected[{1}]") public static Collection<Object[]> parameters() { List<Object[]> parameterSets = new ArrayList<>(); parameterSets.add(new Object[] { "", Boolean.FALSE } ); parameterSets.add(new Object[] { "h", Boolean.FALSE } ); parameterSets.add(new Object[] { "ht", Boolean.FALSE } ); parameterSets.add(new Object[] { "htt", Boolean.FALSE } ); parameterSets.add(new Object[] { "http", Boolean.FALSE } ); parameterSets.add(new Object[] { "http:", Boolean.FALSE } ); parameterSets.add(new Object[] { "http:/", Boolean.FALSE } ); parameterSets.add(new Object[] { "http://", Boolean.TRUE } ); parameterSets.add(new Object[] { "http://foo", Boolean.TRUE } ); parameterSets.add(new Object[] { "f", Boolean.FALSE } ); parameterSets.add(new Object[] { "fi", Boolean.FALSE } ); parameterSets.add(new Object[] { "fil", Boolean.FALSE } ); parameterSets.add(new Object[] { "file", Boolean.FALSE } ); parameterSets.add(new Object[] { "file:", Boolean.FALSE } ); parameterSets.add(new Object[] { "file:/", Boolean.TRUE } ); parameterSets.add(new Object[] { "file://", Boolean.TRUE } ); parameterSets.add(new Object[] { "c", Boolean.FALSE } ); parameterSets.add(new Object[] { "c:", Boolean.FALSE } ); parameterSets.add(new Object[] { "c:/", Boolean.FALSE } ); parameterSets.add(new Object[] { "c:/foo", Boolean.FALSE } ); return parameterSets; } @Parameter(0) public String path; @Parameter(1) public Boolean valid; @Test public void test() { boolean result = UriUtil.isAbsoluteURI(path); Assert.assertEquals(path, valid, Boolean.valueOf(result)); } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
33.81
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