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

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

      
    
Rootfs path

      
    
Size
9085 (8.9 KB)
MD5
45afbd25c426e1b1e316cffa41d2824d
SHA1
a0bae2f1563838d1d10a8b7942ac22d759d8e6b0
SHA256
0f8573732c7126e85b76d719cf5d4754a392da005bf253f4ec1b129be70a87a0
SHA512

      
    
SHA1_git
c52ba38ea13640926314f032e78f1970ceb47dbf
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestCookieParsing.java | 8.9 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; import java.io.IOException; import java.util.Enumeration; import jakarta.servlet.ServletException; import jakarta.servlet.http.Cookie; import jakarta.servlet.http.HttpServlet; import jakarta.servlet.http.HttpServletRequest; import jakarta.servlet.http.HttpServletResponse; import org.junit.Assert; import org.junit.Test; import org.apache.catalina.Context; import org.apache.catalina.startup.SimpleHttpClient; import org.apache.catalina.startup.Tomcat; import org.apache.catalina.startup.TomcatBaseTest; public class TestCookieParsing extends TomcatBaseTest { private static final String[] COOKIES_WITH_EQUALS = new String[] { "name=equals=middle", "name==equalsstart", "name=equalsend=" }; private static final String[] COOKIES_WITH_NAME_OR_VALUE_ONLY = new String[] { "bob=", "bob", "=bob" }; // First two are treated as name and no value, third is invalid (therefore ignored) private static final String COOKIES_WITH_NAME_OR_VALUE_ONLY_NAME_CONCAT = "bob=bob="; // First is treated as name and no value, second is ignored and third is invalid (therefore ignored) private static final String COOKIES_WITH_NAME_OR_VALUE_ONLY_IGNORE_CONCAT = "bob="; private static final String[] COOKIES_WITH_SEPS = new String[] { "name=val/ue" }; private static final String[] COOKIES_WITH_QUOTES = new String[] { "name=\"val\\\"ue\"", "name=\"value\"" }; private static final String[] COOKIES_V0 = new String[] { "$Version=0;name=\"val ue\"", "$Version=0;name=\"val ue\""}; private static final String COOKIES_V0_CONCAT = "$Version=0$Version=0"; private static final String[] COOKIES_V1 = new String[] { "$Version=1;name=\"val ue\"", "$Version=1;name=\"val ue\""}; private static final String COOKIES_V1_CONCAT = "$Version=1$Version=1"; @Test public void testRfc6265Equals() throws Exception { // Always allows equals TestCookieParsingClient client = new TestCookieParsingClient( new Rfc6265CookieProcessor(), COOKIES_WITH_EQUALS, concat(COOKIES_WITH_EQUALS)); client.doRequest(); } @Test public void testRfc6265NameOrValueOnlyName() throws Exception { doTestRfc6265WithoutEquals("name", COOKIES_WITH_NAME_OR_VALUE_ONLY_NAME_CONCAT); } @Test public void testRfc6265NameOrValueOnlyIgnore() throws Exception { doTestRfc6265WithoutEquals("ignore", COOKIES_WITH_NAME_OR_VALUE_ONLY_IGNORE_CONCAT); } @Test public void testRfc6265NameOrValueOnlyDefault() throws Exception { doTestRfc6265WithoutEquals(null, COOKIES_WITH_NAME_OR_VALUE_ONLY_NAME_CONCAT); } private void doTestRfc6265WithoutEquals(String cookiesWithoutEquals, String expected) throws Exception { Rfc6265CookieProcessor cookieProcessor = new Rfc6265CookieProcessor(); if (cookiesWithoutEquals != null) { cookieProcessor.setCookiesWithoutEquals(cookiesWithoutEquals); } TestCookieParsingClient client = new TestCookieParsingClient(cookieProcessor, COOKIES_WITH_NAME_OR_VALUE_ONLY, expected); client.doRequest(); } @Test public void testRfc6265V0() throws Exception { TestCookieParsingClient client = new TestCookieParsingClient( new Rfc6265CookieProcessor(), COOKIES_V0, COOKIES_V0_CONCAT); client.doRequest(); } @Test public void testRfc6265V1() throws Exception { TestCookieParsingClient client = new TestCookieParsingClient( new Rfc6265CookieProcessor(), COOKIES_V1, COOKIES_V1_CONCAT); client.doRequest(); } @Test public void testRfc6265Seps() throws Exception { // Always allows equals TestCookieParsingClient client = new TestCookieParsingClient( new Rfc6265CookieProcessor(), COOKIES_WITH_SEPS, concat(COOKIES_WITH_SEPS)); client.doRequest(); } @Test public void testRfc6265PreserveHeader() throws Exception { // Always allows equals TestCookieParsingClient client = new TestCookieParsingClient(new Rfc6265CookieProcessor(), true, COOKIES_WITH_QUOTES, concat(COOKIES_WITH_QUOTES)); client.doRequest(); } private static String concat(String[] input) { StringBuilder result = new StringBuilder(); for (String s : input) { result.append(s); } return result.toString(); } private class TestCookieParsingClient extends SimpleHttpClient { private final CookieProcessor cookieProcessor; private final String[] cookies; private final String expected; private final boolean echoHeader; TestCookieParsingClient(CookieProcessor cookieProcessor, String[] cookies, String expected) { this(cookieProcessor, false, cookies, expected); } TestCookieParsingClient(CookieProcessor cookieProcessor, boolean echoHeader, String[] cookies, String expected) { this.cookieProcessor = cookieProcessor; this.echoHeader = echoHeader; this.cookies = cookies; this.expected = expected; } private void doRequest() throws Exception { Tomcat tomcat = getTomcatInstance(); Context root = tomcat.addContext("", TEMP_DIR); root.setCookieProcessor(cookieProcessor); if (echoHeader) { Tomcat.addServlet(root, "Cookies", new EchoCookieHeader()); } else { Tomcat.addServlet(root, "Cookies", new EchoCookies()); } root.addServletMappingDecoded("/test", "Cookies"); tomcat.start(); // Open connection setPort(tomcat.getConnector().getLocalPort()); connect(); StringBuilder request = new StringBuilder(); request.append("GET /test HTTP/1.0"); request.append(CRLF); for (String cookie : cookies) { request.append("Cookie: "); request.append(cookie); request.append(CRLF); } request.append(CRLF); setRequest(new String[] {request.toString()}); processRequest(true); // blocks until response has been read String response = getResponseBody(); // Close the connection disconnect(); reset(); tomcat.stop(); Assert.assertEquals(expected, response); } @Override public boolean isResponseBodyOK() { return true; } } private static class EchoCookies extends HttpServlet { private static final long serialVersionUID = 1L; @Override protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { Cookie cookies[] = req.getCookies(); if (cookies != null) { for (Cookie cookie : cookies) { resp.getWriter().write(cookie.getName() + "=" + cookie.getValue()); } } resp.flushBuffer(); } } private static class EchoCookieHeader extends HttpServlet { private static final long serialVersionUID = 1L; @Override protected void service(HttpServletRequest req, HttpServletResponse resp) throws ServletException, IOException { req.getCookies(); // Never do this in production code. It triggers an XSS. Enumeration<String> cookieHeaders = req.getHeaders("Cookie"); while (cookieHeaders.hasMoreElements()) { String cookieHeader = cookieHeaders.nextElement(); resp.getWriter().write(cookieHeader); } resp.flushBuffer(); } } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
14.29
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