ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/util/http/parser/TestUpgrade.java

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

      
    
Rootfs path

      
    
Size
3576 (3.5 KB)
MD5
b4593a3e6b45faf32ab015b82266cf43
SHA1
6c12e683d23ab745f1beb045806061c7d60258a8
SHA256
fd1c0f130fbec3c71d456ee54e265aef39cdc654db008de587fedbb284a910f6
SHA512

      
    
SHA1_git
cdbba764e0f9ec7d08df908c26be5c72a71b86af
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestUpgrade.java | 3.5 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.http.parser; import java.util.ArrayList; import java.util.Arrays; import java.util.Collection; import java.util.Collections; 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 TestUpgrade { private static final Integer FOUR = Integer.valueOf(4); @Parameterized.Parameters(name = "{index}: headers[{0}]") public static Collection<Object[]> parameters() { List<Object[]> parameterSets = new ArrayList<>(); // Valid example taken from RFC 7230 parameterSets.add(new Object[] { Arrays.asList(new String[] { "HTTP/2.0, SHTTP/1.3, IRC/6.9, RTA/x11" }), FOUR } ); parameterSets.add(new Object[] { Arrays.asList(new String[] { "HTTP/2.0", "SHTTP/1.3, IRC/6.9, RTA/x11" }),FOUR } ); parameterSets.add(new Object[] { Arrays.asList(new String[] { "HTTP/2.0", "SHTTP/1.3", "IRC/6.9", "RTA/x11" }), FOUR } ); // As above but without the version info parameterSets.add(new Object[] { Arrays.asList(new String[] { "HTTP", "SHTTP", "IRC", "RTA" }), FOUR } ); // Empty version for final protocol parameterSets.add(new Object[] { Arrays.asList(new String[] { "HTTP/2.0", "SHTTP/1.3", "IRC/6.9", "RTA/" }), null} ); // Empty name for final protocol parameterSets.add(new Object[] { Arrays.asList(new String[] { "HTTP/2.0", "SHTTP/1.3", "IRC/6.9", "/x11" }), null} ); // Make final protocol a non-token parameterSets.add(new Object[] { Arrays.asList(new String[] { "HTTP/2.0", "SHTTP/1.3", "IRC/6.9", "RTA[/x11" }), null} ); // Make final version a non-token parameterSets.add(new Object[] { Arrays.asList(new String[] { "HTTP/2.0", "SHTTP/1.3", "IRC/6.9", "RTA/x}11" }), null} ); // Empty header isn't valid parameterSets.add(new Object[] { Arrays.asList(new String[] { "" }), null } ); // Nulls shouldn't happen but check they are treated as invalid to be safe parameterSets.add(new Object[] { Arrays.asList(new String[] { null }), null } ); return parameterSets; } @Parameter(0) public List<String> headers; @Parameter(1) public Integer count; @Test public void testUpgrade() { List<Upgrade> result = Upgrade.parse(Collections.enumeration(headers)); if (count == null) { Assert.assertNull(result); } else { Assert.assertNotNull(result); Assert.assertEquals(count.intValue(), result.size()); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
25.76
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