All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.mock.web.MockHttpServletRequest Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2002-2024 the original author or authors.
 *
 * Licensed 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
 *
 *      https://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.springframework.mock.web;

import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.Reader;
import java.io.StringReader;
import java.io.UnsupportedEncodingException;
import java.security.Principal;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.Arrays;
import java.util.Collection;
import java.util.Collections;
import java.util.Date;
import java.util.Enumeration;
import java.util.HashSet;
import java.util.LinkedHashMap;
import java.util.LinkedHashSet;
import java.util.LinkedList;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import java.util.TimeZone;
import java.util.stream.Collectors;

import jakarta.servlet.AsyncContext;
import jakarta.servlet.DispatcherType;
import jakarta.servlet.RequestDispatcher;
import jakarta.servlet.ServletConnection;
import jakarta.servlet.ServletContext;
import jakarta.servlet.ServletException;
import jakarta.servlet.ServletInputStream;
import jakarta.servlet.ServletRequest;
import jakarta.servlet.ServletResponse;
import jakarta.servlet.http.Cookie;
import jakarta.servlet.http.HttpServletMapping;
import jakarta.servlet.http.HttpServletRequest;
import jakarta.servlet.http.HttpServletResponse;
import jakarta.servlet.http.HttpSession;
import jakarta.servlet.http.HttpUpgradeHandler;
import jakarta.servlet.http.MappingMatch;
import jakarta.servlet.http.Part;

import org.springframework.http.HttpHeaders;
import org.springframework.http.MediaType;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
import org.springframework.util.LinkedCaseInsensitiveMap;
import org.springframework.util.LinkedMultiValueMap;
import org.springframework.util.MultiValueMap;
import org.springframework.util.ObjectUtils;
import org.springframework.util.StringUtils;
import org.springframework.web.util.UrlPathHelper;

/**
 * Mock implementation of the {@link jakarta.servlet.http.HttpServletRequest} interface.
 *
 * 

The default, preferred {@link Locale} for the server mocked by this request * is {@link Locale#ENGLISH}. This value can be changed via {@link #addPreferredLocale} * or {@link #setPreferredLocales}. * *

As of Spring 6.0, this set of mocks is designed on a Servlet 6.0 baseline. * * @author Juergen Hoeller * @author Rod Johnson * @author Rick Evans * @author Mark Fisher * @author Chris Beams * @author Sam Brannen * @author Brian Clozel * @since 1.0.2 */ public class MockHttpServletRequest implements HttpServletRequest { private static final String HTTP = "http"; private static final String HTTPS = "https"; private static final String CHARSET_PREFIX = "charset="; private static final TimeZone GMT = TimeZone.getTimeZone("GMT"); /** * Date formats as specified in the HTTP RFC. * @see Section 7.1.1.1 of RFC 7231 */ private static final String[] DATE_FORMATS = new String[] { "EEE, dd MMM yyyy HH:mm:ss zzz", "EEE, dd-MMM-yy HH:mm:ss zzz", "EEE MMM dd HH:mm:ss yyyy" }; // --------------------------------------------------------------------- // Public constants // --------------------------------------------------------------------- /** * The default protocol: 'HTTP/1.1'. * @since 4.3.7 */ public static final String DEFAULT_PROTOCOL = "HTTP/1.1"; /** * The default scheme: 'http'. * @since 4.3.7 */ public static final String DEFAULT_SCHEME = HTTP; /** * The default server address: '127.0.0.1'. */ public static final String DEFAULT_SERVER_ADDR = "127.0.0.1"; /** * The default server name: 'localhost'. */ public static final String DEFAULT_SERVER_NAME = "localhost"; /** * The default server port: '80'. */ public static final int DEFAULT_SERVER_PORT = 80; /** * The default remote address: '127.0.0.1'. */ public static final String DEFAULT_REMOTE_ADDR = "127.0.0.1"; /** * The default remote host: 'localhost'. */ public static final String DEFAULT_REMOTE_HOST = "localhost"; // --------------------------------------------------------------------- // Lifecycle properties // --------------------------------------------------------------------- private final ServletContext servletContext; private boolean active = true; // --------------------------------------------------------------------- // ServletRequest properties // --------------------------------------------------------------------- private final Map attributes = new LinkedHashMap<>(); @Nullable private String characterEncoding; @Nullable private byte[] content; @Nullable private String contentType; @Nullable private ServletInputStream inputStream; @Nullable private BufferedReader reader; private final Map parameters = new LinkedHashMap<>(16); private String protocol = DEFAULT_PROTOCOL; private String scheme = DEFAULT_SCHEME; private String serverName = DEFAULT_SERVER_NAME; private int serverPort = DEFAULT_SERVER_PORT; private String remoteAddr = DEFAULT_REMOTE_ADDR; private String remoteHost = DEFAULT_REMOTE_HOST; /** List of locales in descending order. */ private final LinkedList locales = new LinkedList<>(); private boolean secure = false; private int remotePort = DEFAULT_SERVER_PORT; private String localName = DEFAULT_SERVER_NAME; private String localAddr = DEFAULT_SERVER_ADDR; private int localPort = DEFAULT_SERVER_PORT; private boolean asyncStarted = false; private boolean asyncSupported = false; @Nullable private MockAsyncContext asyncContext; private DispatcherType dispatcherType = DispatcherType.REQUEST; // --------------------------------------------------------------------- // HttpServletRequest properties // --------------------------------------------------------------------- @Nullable private String authType; @Nullable private Cookie[] cookies; private final Map headers = new LinkedCaseInsensitiveMap<>(); @Nullable private String method; @Nullable private String pathInfo; private String contextPath = ""; @Nullable private String queryString; @Nullable private String remoteUser; private final Set userRoles = new HashSet<>(); @Nullable private Principal userPrincipal; @Nullable private String requestedSessionId; @Nullable private String requestURI; private String servletPath = ""; @Nullable private HttpSession session; private boolean requestedSessionIdValid = true; private boolean requestedSessionIdFromCookie = true; private boolean requestedSessionIdFromURL = false; private final MultiValueMap parts = new LinkedMultiValueMap<>(); @Nullable private HttpServletMapping httpServletMapping; // --------------------------------------------------------------------- // Constructors // --------------------------------------------------------------------- /** * Create a new {@code MockHttpServletRequest} with a default * {@link MockServletContext}. * @see #MockHttpServletRequest(ServletContext, String, String) */ public MockHttpServletRequest() { this(null, "", ""); } /** * Create a new {@code MockHttpServletRequest} with a default * {@link MockServletContext}. * @param method the request method (may be {@code null}) * @param requestURI the request URI (may be {@code null}) * @see #setMethod * @see #setRequestURI * @see #MockHttpServletRequest(ServletContext, String, String) */ public MockHttpServletRequest(@Nullable String method, @Nullable String requestURI) { this(null, method, requestURI); } /** * Create a new {@code MockHttpServletRequest} with the supplied {@link ServletContext}. * @param servletContext the ServletContext that the request runs in * (may be {@code null} to use a default {@link MockServletContext}) * @see #MockHttpServletRequest(ServletContext, String, String) */ public MockHttpServletRequest(@Nullable ServletContext servletContext) { this(servletContext, "", ""); } /** * Create a new {@code MockHttpServletRequest} with the supplied {@link ServletContext}, * {@code method}, and {@code requestURI}. *

The preferred locale will be set to {@link Locale#ENGLISH}. * @param servletContext the ServletContext that the request runs in (may be * {@code null} to use a default {@link MockServletContext}) * @param method the request method (may be {@code null}) * @param requestURI the request URI (may be {@code null}) * @see #setMethod * @see #setRequestURI * @see #setPreferredLocales * @see MockServletContext */ public MockHttpServletRequest(@Nullable ServletContext servletContext, @Nullable String method, @Nullable String requestURI) { this.servletContext = (servletContext != null ? servletContext : new MockServletContext()); this.method = method; this.requestURI = requestURI; this.locales.add(Locale.ENGLISH); } // --------------------------------------------------------------------- // Lifecycle methods // --------------------------------------------------------------------- /** * Return the ServletContext that this request is associated with. (Not * available in the standard HttpServletRequest interface for some reason.) */ @Override public ServletContext getServletContext() { return this.servletContext; } /** * Return whether this request is still active (that is, not completed yet). */ public boolean isActive() { return this.active; } /** * Mark this request as completed, keeping its state. */ public void close() { this.active = false; } /** * Invalidate this request, clearing its state. */ public void invalidate() { close(); clearAttributes(); } /** * Check whether this request is still active (that is, not completed yet), * throwing an IllegalStateException if not active anymore. */ protected void checkActive() throws IllegalStateException { Assert.state(this.active, "Request is not active anymore"); } // --------------------------------------------------------------------- // ServletRequest interface // --------------------------------------------------------------------- @Override @Nullable public Object getAttribute(String name) { checkActive(); return this.attributes.get(name); } @Override public Enumeration getAttributeNames() { checkActive(); return Collections.enumeration(new LinkedHashSet<>(this.attributes.keySet())); } @Override @Nullable public String getCharacterEncoding() { return this.characterEncoding; } @Override public void setCharacterEncoding(@Nullable String characterEncoding) { this.characterEncoding = characterEncoding; updateContentTypeHeader(); } private void updateContentTypeHeader() { if (StringUtils.hasLength(this.contentType)) { String value = this.contentType; if (StringUtils.hasLength(this.characterEncoding) && !this.contentType.toLowerCase().contains(CHARSET_PREFIX)) { value += ';' + CHARSET_PREFIX + this.characterEncoding; } doAddHeaderValue(HttpHeaders.CONTENT_TYPE, value, true); } } /** * Set the content of the request body as a byte array. *

If the supplied byte array represents text such as XML or JSON, the * {@link #setCharacterEncoding character encoding} should typically be * set as well. * @see #setCharacterEncoding(String) * @see #getContentAsByteArray() * @see #getContentAsString() */ public void setContent(@Nullable byte[] content) { this.content = content; this.inputStream = null; this.reader = null; } /** * Get the content of the request body as a byte array. * @return the content as a byte array (potentially {@code null}) * @since 5.0 * @see #setContent(byte[]) * @see #getContentAsString() */ @Nullable public byte[] getContentAsByteArray() { return this.content; } /** * Get the content of the request body as a {@code String}, using the configured * {@linkplain #getCharacterEncoding character encoding}. * @return the content as a {@code String}, potentially {@code null} * @throws IllegalStateException if the character encoding has not been set * @throws UnsupportedEncodingException if the character encoding is not supported * @since 5.0 * @see #setContent(byte[]) * @see #setCharacterEncoding(String) * @see #getContentAsByteArray() */ @Nullable public String getContentAsString() throws IllegalStateException, UnsupportedEncodingException { Assert.state(this.characterEncoding != null, "Cannot get content as a String for a null character encoding. " + "Consider setting the characterEncoding in the request."); if (this.content == null) { return null; } return new String(this.content, this.characterEncoding); } @Override public int getContentLength() { return (this.content != null ? this.content.length : -1); } @Override public long getContentLengthLong() { return getContentLength(); } public void setContentType(@Nullable String contentType) { this.contentType = contentType; if (contentType != null) { try { MediaType mediaType = MediaType.parseMediaType(contentType); if (mediaType.getCharset() != null) { this.characterEncoding = mediaType.getCharset().name(); } } catch (IllegalArgumentException ex) { // Try to get charset value anyway contentType = contentType.toLowerCase(); int charsetIndex = contentType.indexOf(CHARSET_PREFIX); if (charsetIndex != -1) { this.characterEncoding = contentType.substring(charsetIndex + CHARSET_PREFIX.length()); } } updateContentTypeHeader(); } } @Override @Nullable public String getContentType() { return this.contentType; } @Override public ServletInputStream getInputStream() { if (this.inputStream != null) { return this.inputStream; } else if (this.reader != null) { throw new IllegalStateException( "Cannot call getInputStream() after getReader() has already been called for the current request"); } this.inputStream = (this.content != null ? new DelegatingServletInputStream(new ByteArrayInputStream(this.content)) : new DelegatingServletInputStream(InputStream.nullInputStream())); return this.inputStream; } /** * Set a single value for the specified HTTP parameter. *

If there are already one or more values registered for the given * parameter name, they will be replaced. */ public void setParameter(String name, String value) { setParameter(name, new String[] {value}); } /** * Set an array of values for the specified HTTP parameter. *

If there are already one or more values registered for the given * parameter name, they will be replaced. */ public void setParameter(String name, String... values) { Assert.notNull(name, "Parameter name must not be null"); this.parameters.put(name, values); } /** * Set all provided parameters replacing any existing * values for the provided parameter names. To add without replacing * existing values, use {@link #addParameters(java.util.Map)}. */ public void setParameters(Map params) { Assert.notNull(params, "Parameter map must not be null"); params.forEach((key, value) -> { if (value instanceof String str) { setParameter(key, str); } else if (value instanceof String[] strings) { setParameter(key, strings); } else { throw new IllegalArgumentException( "Parameter map value must be single value " + " or array of type [" + String.class.getName() + "]"); } }); } /** * Add a single value for the specified HTTP parameter. *

If there are already one or more values registered for the given * parameter name, the given value will be added to the end of the list. */ public void addParameter(String name, @Nullable String value) { addParameter(name, new String[] {value}); } /** * Add an array of values for the specified HTTP parameter. *

If there are already one or more values registered for the given * parameter name, the given values will be added to the end of the list. */ public void addParameter(String name, String... values) { Assert.notNull(name, "Parameter name must not be null"); String[] oldArr = this.parameters.get(name); if (oldArr != null) { String[] newArr = new String[oldArr.length + values.length]; System.arraycopy(oldArr, 0, newArr, 0, oldArr.length); System.arraycopy(values, 0, newArr, oldArr.length, values.length); this.parameters.put(name, newArr); } else { this.parameters.put(name, values); } } /** * Add all provided parameters without replacing any * existing values. To replace existing values, use * {@link #setParameters(java.util.Map)}. */ public void addParameters(Map params) { Assert.notNull(params, "Parameter map must not be null"); params.forEach((key, value) -> { if (value instanceof String str) { addParameter(key, str); } else if (value instanceof String[] strings) { addParameter(key, strings); } else { throw new IllegalArgumentException("Parameter map value must be single value " + " or array of type [" + String.class.getName() + "]"); } }); } /** * Remove already registered values for the specified HTTP parameter, if any. */ public void removeParameter(String name) { Assert.notNull(name, "Parameter name must not be null"); this.parameters.remove(name); } /** * Remove all existing parameters. */ public void removeAllParameters() { this.parameters.clear(); } @Override @Nullable public String getParameter(String name) { Assert.notNull(name, "Parameter name must not be null"); String[] arr = this.parameters.get(name); return (arr != null && arr.length > 0 ? arr[0] : null); } @Override public Enumeration getParameterNames() { return Collections.enumeration(this.parameters.keySet()); } @Override @Nullable public String[] getParameterValues(String name) { Assert.notNull(name, "Parameter name must not be null"); return this.parameters.get(name); } @Override public Map getParameterMap() { return Collections.unmodifiableMap(this.parameters); } public void setProtocol(String protocol) { this.protocol = protocol; } @Override public String getProtocol() { return this.protocol; } public void setScheme(String scheme) { this.scheme = scheme; } @Override public String getScheme() { return this.scheme; } public void setServerName(String serverName) { this.serverName = serverName; } @Override public String getServerName() { String rawHostHeader = getHeader(HttpHeaders.HOST); String host = rawHostHeader; if (host != null) { host = host.trim(); if (host.startsWith("[")) { int indexOfClosingBracket = host.indexOf(']'); Assert.state(indexOfClosingBracket > -1, () -> "Invalid Host header: " + rawHostHeader); host = host.substring(0, indexOfClosingBracket + 1); } else if (host.contains(":")) { host = host.substring(0, host.indexOf(':')); } return host; } // else return this.serverName; } public void setServerPort(int serverPort) { this.serverPort = serverPort; } @Override public int getServerPort() { String rawHostHeader = getHeader(HttpHeaders.HOST); String host = rawHostHeader; if (host != null) { host = host.trim(); int idx; if (host.startsWith("[")) { int indexOfClosingBracket = host.indexOf(']'); Assert.state(indexOfClosingBracket > -1, () -> "Invalid Host header: " + rawHostHeader); idx = host.indexOf(':', indexOfClosingBracket); } else { idx = host.indexOf(':'); } if (idx != -1) { return Integer.parseInt(host, idx + 1, host.length(), 10); } } // else return this.serverPort; } @Override public BufferedReader getReader() throws UnsupportedEncodingException { if (this.reader != null) { return this.reader; } else if (this.inputStream != null) { throw new IllegalStateException( "Cannot call getReader() after getInputStream() has already been called for the current request"); } if (this.content != null) { InputStream sourceStream = new ByteArrayInputStream(this.content); Reader sourceReader = (this.characterEncoding != null) ? new InputStreamReader(sourceStream, this.characterEncoding) : new InputStreamReader(sourceStream); this.reader = new BufferedReader(sourceReader); } else { this.reader = new BufferedReader(new StringReader("")); } return this.reader; } public void setRemoteAddr(String remoteAddr) { this.remoteAddr = remoteAddr; } @Override public String getRemoteAddr() { return this.remoteAddr; } public void setRemoteHost(String remoteHost) { this.remoteHost = remoteHost; } @Override public String getRemoteHost() { return this.remoteHost; } @Override public void setAttribute(String name, @Nullable Object value) { checkActive(); Assert.notNull(name, "Attribute name must not be null"); if (value != null) { this.attributes.put(name, value); } else { this.attributes.remove(name); } } @Override public void removeAttribute(String name) { checkActive(); Assert.notNull(name, "Attribute name must not be null"); this.attributes.remove(name); } /** * Clear all of this request's attributes. */ public void clearAttributes() { this.attributes.clear(); } /** * Add a new preferred locale, before any existing locales. * @see #setPreferredLocales */ public void addPreferredLocale(Locale locale) { Assert.notNull(locale, "Locale must not be null"); this.locales.addFirst(locale); updateAcceptLanguageHeader(); } /** * Set the list of preferred locales, in descending order, effectively replacing * any existing locales. * @since 3.2 * @see #addPreferredLocale */ public void setPreferredLocales(List locales) { Assert.notEmpty(locales, "Locale list must not be empty"); this.locales.clear(); this.locales.addAll(locales); updateAcceptLanguageHeader(); } private void updateAcceptLanguageHeader() { HttpHeaders headers = new HttpHeaders(); headers.setAcceptLanguageAsLocales(this.locales); doAddHeaderValue(HttpHeaders.ACCEPT_LANGUAGE, headers.getFirst(HttpHeaders.ACCEPT_LANGUAGE), true); } /** * Return the first preferred {@linkplain Locale locale} configured * in this mock request. *

If no locales have been explicitly configured, the default, * preferred {@link Locale} for the server mocked by this * request is {@link Locale#ENGLISH}. *

In contrast to the Servlet specification, this mock implementation * does not take into consideration any locales * specified via the {@code Accept-Language} header. * @see jakarta.servlet.ServletRequest#getLocale() * @see #addPreferredLocale(Locale) * @see #setPreferredLocales(List) */ @Override public Locale getLocale() { return this.locales.getFirst(); } /** * Return an {@linkplain Enumeration enumeration} of the preferred * {@linkplain Locale locales} configured in this mock request. *

If no locales have been explicitly configured, the default, * preferred {@link Locale} for the server mocked by this * request is {@link Locale#ENGLISH}. *

In contrast to the Servlet specification, this mock implementation * does not take into consideration any locales * specified via the {@code Accept-Language} header. * @see jakarta.servlet.ServletRequest#getLocales() * @see #addPreferredLocale(Locale) * @see #setPreferredLocales(List) */ @Override public Enumeration getLocales() { return Collections.enumeration(this.locales); } /** * Set the boolean {@code secure} flag indicating whether the mock request * was made using a secure channel, such as HTTPS. * @see #isSecure() * @see #getScheme() * @see #setScheme(String) */ public void setSecure(boolean secure) { this.secure = secure; } /** * Return {@code true} if the {@link #setSecure secure} flag has been set * to {@code true} or if the {@link #getScheme scheme} is {@code https}. * @see jakarta.servlet.ServletRequest#isSecure() */ @Override public boolean isSecure() { return (this.secure || HTTPS.equalsIgnoreCase(this.scheme)); } @Override public RequestDispatcher getRequestDispatcher(String path) { return new MockRequestDispatcher(path); } public void setRemotePort(int remotePort) { this.remotePort = remotePort; } @Override public int getRemotePort() { return this.remotePort; } public void setLocalName(String localName) { this.localName = localName; } @Override public String getLocalName() { return this.localName; } public void setLocalAddr(String localAddr) { this.localAddr = localAddr; } @Override public String getLocalAddr() { return this.localAddr; } public void setLocalPort(int localPort) { this.localPort = localPort; } @Override public int getLocalPort() { return this.localPort; } @Override public AsyncContext startAsync() { return startAsync(this, null); } @Override public AsyncContext startAsync(ServletRequest request, @Nullable ServletResponse response) { Assert.state(this.asyncSupported, "Async not supported"); this.asyncStarted = true; this.asyncContext = new MockAsyncContext(request, response); return this.asyncContext; } public void setAsyncStarted(boolean asyncStarted) { this.asyncStarted = asyncStarted; } @Override public boolean isAsyncStarted() { return this.asyncStarted; } public void setAsyncSupported(boolean asyncSupported) { this.asyncSupported = asyncSupported; } @Override public boolean isAsyncSupported() { return this.asyncSupported; } public void setAsyncContext(@Nullable MockAsyncContext asyncContext) { this.asyncContext = asyncContext; } @Override @Nullable public AsyncContext getAsyncContext() { return this.asyncContext; } public void setDispatcherType(DispatcherType dispatcherType) { this.dispatcherType = dispatcherType; } @Override public DispatcherType getDispatcherType() { return this.dispatcherType; } @Override public String getRequestId() { return ""; } @Override public String getProtocolRequestId() { return ""; } @Override public ServletConnection getServletConnection() { return new ServletConnection() { @Override public String getConnectionId() { return MockHttpServletRequest.this.getRequestId(); } @Override public String getProtocol() { return MockHttpServletRequest.this.getProtocol(); } @Override public String getProtocolConnectionId() { return MockHttpServletRequest.this.getProtocolRequestId(); } @Override public boolean isSecure() { return MockHttpServletRequest.this.isSecure(); } }; } // --------------------------------------------------------------------- // HttpServletRequest interface // --------------------------------------------------------------------- public void setAuthType(@Nullable String authType) { this.authType = authType; } @Override @Nullable public String getAuthType() { return this.authType; } public void setCookies(@Nullable Cookie... cookies) { this.cookies = (ObjectUtils.isEmpty(cookies) ? null : cookies); if (this.cookies == null) { removeHeader(HttpHeaders.COOKIE); } else { doAddHeaderValue(HttpHeaders.COOKIE, encodeCookies(this.cookies), true); } } private static String encodeCookies(Cookie... cookies) { return Arrays.stream(cookies) .map(c -> c.getName() + '=' + (c.getValue() == null ? "" : c.getValue())) .collect(Collectors.joining("; ")); } @Override @Nullable public Cookie[] getCookies() { return this.cookies; } /** * Add an HTTP header entry for the given name. *

While this method can take any {@code Object} as a parameter, * it is recommended to use the following types: *

    *
  • String or any Object to be converted using {@code toString()}; see {@link #getHeader}.
  • *
  • String, Number, or Date for date headers; see {@link #getDateHeader}.
  • *
  • String or Number for integer headers; see {@link #getIntHeader}.
  • *
  • {@code String[]} or {@code Collection} for multiple values; see {@link #getHeaders}.
  • *
* @see #getHeaderNames * @see #getHeaders * @see #getHeader * @see #getDateHeader */ public void addHeader(String name, Object value) { if (HttpHeaders.CONTENT_TYPE.equalsIgnoreCase(name) && !this.headers.containsKey(HttpHeaders.CONTENT_TYPE)) { setContentType(value.toString()); } else if (HttpHeaders.ACCEPT_LANGUAGE.equalsIgnoreCase(name) && !this.headers.containsKey(HttpHeaders.ACCEPT_LANGUAGE)) { try { HttpHeaders headers = new HttpHeaders(); headers.add(HttpHeaders.ACCEPT_LANGUAGE, value.toString()); List locales = headers.getAcceptLanguageAsLocales(); this.locales.clear(); this.locales.addAll(locales); if (this.locales.isEmpty()) { this.locales.add(Locale.ENGLISH); } } catch (IllegalArgumentException ex) { // Invalid Accept-Language format -> just store plain header } doAddHeaderValue(name, value, true); } else { doAddHeaderValue(name, value, false); } } private void doAddHeaderValue(String name, @Nullable Object value, boolean replace) { HeaderValueHolder header = this.headers.get(name); Assert.notNull(value, "Header value must not be null"); if (header == null || replace) { header = new HeaderValueHolder(); this.headers.put(name, header); } if (value instanceof Collection collection) { header.addValues(collection); } else if (value.getClass().isArray()) { header.addValueArray(value); } else { header.addValue(value); } } /** * Remove already registered entries for the specified HTTP header, if any. * @since 4.3.20 */ public void removeHeader(String name) { Assert.notNull(name, "Header name must not be null"); this.headers.remove(name); } /** * Return the long timestamp for the date header with the given {@code name}. *

If the internal value representation is a String, this method will try * to parse it as a date using the supported date formats: *

    *
  • "EEE, dd MMM yyyy HH:mm:ss zzz"
  • *
  • "EEE, dd-MMM-yy HH:mm:ss zzz"
  • *
  • "EEE MMM dd HH:mm:ss yyyy"
  • *
* @param name the header name * @see Section 7.1.1.1 of RFC 7231 */ @Override public long getDateHeader(String name) { HeaderValueHolder header = this.headers.get(name); Object value = (header != null ? header.getValue() : null); if (value instanceof Date date) { return date.getTime(); } else if (value instanceof Number number) { return number.longValue(); } else if (value instanceof String str) { return parseDateHeader(name, str); } else if (value != null) { throw new IllegalArgumentException( "Value for header '" + name + "' is not a Date, Number, or String: " + value); } else { return -1L; } } private long parseDateHeader(String name, String value) { for (String dateFormat : DATE_FORMATS) { SimpleDateFormat simpleDateFormat = new SimpleDateFormat(dateFormat, Locale.US); simpleDateFormat.setTimeZone(GMT); try { return simpleDateFormat.parse(value).getTime(); } catch (ParseException ex) { // ignore } } throw new IllegalArgumentException("Cannot parse date value '" + value + "' for '" + name + "' header"); } @Override @Nullable public String getHeader(String name) { HeaderValueHolder header = this.headers.get(name); return (header != null ? header.getStringValue() : null); } @Override public Enumeration getHeaders(String name) { HeaderValueHolder header = this.headers.get(name); return (header != null ? Collections.enumeration(header.getStringValues()) : Collections.emptyEnumeration()); } @Override public Enumeration getHeaderNames() { return Collections.enumeration(this.headers.keySet()); } @Override public int getIntHeader(String name) { HeaderValueHolder header = this.headers.get(name); Object value = (header != null ? header.getValue() : null); if (value instanceof Number number) { return number.intValue(); } else if (value instanceof String str) { return Integer.parseInt(str); } else if (value != null) { throw new NumberFormatException("Value for header '" + name + "' is not a Number: " + value); } else { return -1; } } public void setMethod(@Nullable String method) { this.method = method; } @Override @Nullable public String getMethod() { return this.method; } public void setPathInfo(@Nullable String pathInfo) { this.pathInfo = pathInfo; } @Override @Nullable public String getPathInfo() { return this.pathInfo; } @Override @Nullable public String getPathTranslated() { return (this.pathInfo != null ? this.servletContext.getRealPath(this.pathInfo) : null); } public void setContextPath(String contextPath) { this.contextPath = contextPath; } @Override public String getContextPath() { return this.contextPath; } public void setQueryString(@Nullable String queryString) { this.queryString = queryString; } @Override @Nullable public String getQueryString() { return this.queryString; } public void setRemoteUser(@Nullable String remoteUser) { this.remoteUser = remoteUser; } @Override @Nullable public String getRemoteUser() { return this.remoteUser; } public void addUserRole(String role) { this.userRoles.add(role); } @Override public boolean isUserInRole(String role) { return (this.userRoles.contains(role) || (this.servletContext instanceof MockServletContext mockContext && mockContext.getDeclaredRoles().contains(role))); } public void setUserPrincipal(@Nullable Principal userPrincipal) { this.userPrincipal = userPrincipal; } @Override @Nullable public Principal getUserPrincipal() { return this.userPrincipal; } public void setRequestedSessionId(@Nullable String requestedSessionId) { this.requestedSessionId = requestedSessionId; } @Override @Nullable public String getRequestedSessionId() { return this.requestedSessionId; } public void setRequestURI(@Nullable String requestURI) { this.requestURI = requestURI; } @Override @Nullable public String getRequestURI() { return this.requestURI; } @Override public StringBuffer getRequestURL() { String scheme = getScheme(); String server = getServerName(); int port = getServerPort(); String uri = getRequestURI(); StringBuffer url = new StringBuffer(scheme).append("://").append(server); if (port > 0 && ((HTTP.equalsIgnoreCase(scheme) && port != 80) || (HTTPS.equalsIgnoreCase(scheme) && port != 443))) { url.append(':').append(port); } if (StringUtils.hasText(uri)) { url.append(uri); } return url; } public void setServletPath(String servletPath) { this.servletPath = servletPath; } @Override public String getServletPath() { return this.servletPath; } public void setSession(HttpSession session) { this.session = session; if (session instanceof MockHttpSession mockSession) { mockSession.access(); } } @Override @Nullable public HttpSession getSession(boolean create) { checkActive(); // Reset session if invalidated. if (this.session instanceof MockHttpSession mockSession && mockSession.isInvalid()) { this.session = null; } // Create new session if necessary. if (this.session == null && create) { this.session = new MockHttpSession(this.servletContext); } return this.session; } @Override @Nullable public HttpSession getSession() { return getSession(true); } /** * The implementation of this (Servlet 3.1+) method calls * {@link MockHttpSession#changeSessionId()} if the session is a mock session. * Otherwise it simply returns the current session id. * @since 4.0.3 */ @Override public String changeSessionId() { Assert.isTrue(this.session != null, "The request does not have a session"); if (this.session instanceof MockHttpSession mockSession) { return mockSession.changeSessionId(); } return this.session.getId(); } public void setRequestedSessionIdValid(boolean requestedSessionIdValid) { this.requestedSessionIdValid = requestedSessionIdValid; } @Override public boolean isRequestedSessionIdValid() { return this.requestedSessionIdValid; } public void setRequestedSessionIdFromCookie(boolean requestedSessionIdFromCookie) { this.requestedSessionIdFromCookie = requestedSessionIdFromCookie; } @Override public boolean isRequestedSessionIdFromCookie() { return this.requestedSessionIdFromCookie; } public void setRequestedSessionIdFromURL(boolean requestedSessionIdFromURL) { this.requestedSessionIdFromURL = requestedSessionIdFromURL; } @Override public boolean isRequestedSessionIdFromURL() { return this.requestedSessionIdFromURL; } @Override public boolean authenticate(HttpServletResponse response) throws IOException, ServletException { throw new UnsupportedOperationException(); } @Override public void login(String username, String password) throws ServletException { throw new UnsupportedOperationException(); } @Override public void logout() throws ServletException { this.userPrincipal = null; this.remoteUser = null; this.authType = null; } public void addPart(Part part) { this.parts.add(part.getName(), part); } @Override @Nullable public Part getPart(String name) throws IOException, ServletException { return this.parts.getFirst(name); } @Override public Collection getParts() throws IOException, ServletException { List result = new LinkedList<>(); for (List list : this.parts.values()) { result.addAll(list); } return result; } public void setHttpServletMapping(@Nullable HttpServletMapping httpServletMapping) { this.httpServletMapping = httpServletMapping; } @Override public HttpServletMapping getHttpServletMapping() { return (this.httpServletMapping == null ? new MockHttpServletMapping("", "", "", determineMappingMatch()) : this.httpServletMapping); } /** * Best effort to detect a Servlet path mapping, e.g. {@code "/foo/*"}, by * checking whether the length of requestURI > contextPath + servletPath. * This helps {@link org.springframework.web.util.ServletRequestPathUtils} * to take into account the Servlet path when parsing the requestURI. */ @Nullable private MappingMatch determineMappingMatch() { if (StringUtils.hasText(this.requestURI) && StringUtils.hasText(this.servletPath)) { String path = UrlPathHelper.defaultInstance.getRequestUri(this); String prefix = this.contextPath + this.servletPath; return (path.startsWith(prefix) && (path.length() > prefix.length()) ? MappingMatch.PATH : null); } return null; } @Override public T upgrade(Class handlerClass) throws IOException, ServletException { throw new UnsupportedOperationException(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy