ttomcat-1778514358873.zip-extract/apache-tomcat-11.0.18-src/test/org/apache/tomcat/unittest/TesterRequest.java

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

      
    
Rootfs path

      
    
Size
4009 (3.9 KB)
MD5
0b7c8d9ad871bd5a65b729a4c3d205c6
SHA1
d0a85055bfed978b91d146d2efa2732727fda20e
SHA256
1c364d1efdcb0cdf653458f9db4876bd3cc545c8d2c38545ee51ebedcde7630c
SHA512

      
    
SHA1_git
8d4f624df88b16795c8ffba6e4ce9c438dd44f74
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TesterRequest.java | 3.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.unittest; import java.util.ArrayList; import java.util.Collections; import java.util.Enumeration; import java.util.HashMap; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import jakarta.servlet.ServletContext; import jakarta.servlet.SessionTrackingMode; import org.apache.catalina.Context; import org.apache.catalina.connector.Request; import org.apache.catalina.session.StandardSession; public class TesterRequest extends Request { private final TesterContext context; private final TesterServletContext servletContext; public TesterRequest() { this(false); } public TesterRequest(boolean withSession) { super(null, null); context = new TesterContext(); servletContext = new TesterServletContext(); context.setServletContext(servletContext); if (withSession) { Set<SessionTrackingMode> modes = new HashSet<>(); modes.add(SessionTrackingMode.URL); modes.add(SessionTrackingMode.COOKIE); servletContext.setSessionTrackingModes(modes); session = new StandardSession(null); session.setId("1234", false); session.setValid(true); } } @Override public String getScheme() { return "http"; } @Override public String getServerName() { return "localhost"; } @Override public int getServerPort() { return 8080; } @Override public String getRequestURI() { return "/level1/level2/foo.html"; } @Override public String getDecodedRequestURI() { // Decoding not required return getRequestURI(); } @Override public Context getContext() { return context; } @Override public ServletContext getServletContext() { return servletContext; } private String method; public void setMethod(String method) { this.method = method; } @Override public String getMethod() { return method; } private final Map<String,List<String>> headers = new HashMap<>(); public void addHeader(String name, String value) { headers.computeIfAbsent(name, k -> new ArrayList<>()).add(value); } @Override public String getHeader(String name) { List<String> values = headers.get(name); if (values == null || values.size() == 0) { return null; } return values.get(0); } @Override public Enumeration<String> getHeaders(String name) { List<String> values = headers.get(name); if (values == null || values.size() == 0) { return Collections.emptyEnumeration(); } return Collections.enumeration(headers.get(name)); } @Override public Enumeration<String> getHeaderNames() { return Collections.enumeration(headers.keySet()); } @Override public String getRemoteAddr() { return "127.0.0.1"; } }
Detected license expression
apache-2.0
Detected license expression (SPDX)
Apache-2.0
Percentage of license text
29.6
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