Package com.avoka.tm.test
Class MockRequest
- java.lang.Object
-
- com.avoka.tm.test.MockRequest
-
- All Implemented Interfaces:
HttpServletRequest
,ServletRequest
public class MockRequest extends Object implements HttpServletRequest
Mock implementation of HttpServletRequest.
Implements all of the methods from the standard HttpServletRequest class plus helper methods to aid setting up a request.
This class was adapted from Apache Click.
- Since:
- 5.0
- See Also:
HttpServletRequest
-
-
Field Summary
Fields Modifier and Type Field Description static String
REMOTE_USER
The REMOTE_USER header.-
Fields inherited from interface javax.servlet.http.HttpServletRequest
BASIC_AUTH, CLIENT_CERT_AUTH, DIGEST_AUTH, FORM_AUTH
-
-
Constructor Summary
Constructors Constructor Description MockRequest()
Create new MockRequest.MockRequest(Locale locale)
Create new MockRequest for the specified local.MockRequest(Locale locale, String contextPath, String servletPath, ServletContext servletContext, HttpSession session)
Create a new MockRequest for the specified arguments.MockRequest(Locale locale, ServletContext servletContext)
Create a new MockRequest for the specified locale and servletContext.MockRequest(Locale locale, ServletContext servletContext, HttpSession session)
Create a new MockRequest for the specified arguments.MockRequest(ServletContext servletContext)
Create a new MockRequest for the specified context.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description MockRequest
addCookie(Cookie cookie)
Add a new cookie.MockRequest
addHeader(String name, String value)
Add a header to the request.boolean
authenticate(HttpServletResponse response)
String
changeSessionId()
AsyncContext
getAsyncContext()
Object
getAttribute(String name)
Get an attribute.Enumeration<String>
getAttributeNames()
Get the names of all of the values.String
getAuthType()
Get the auth type.String
getCharacterEncoding()
Get the current character encoding.int
getContentLength()
Return the length of the content.long
getContentLengthLong()
String
getContentType()
If useMultiPartContentType set as true return the correct content-type.String
getContextPath()
Returns the portion of the request URI that indicates the context of the request.Cookie[]
getCookies()
Get all of the cookies for this request.long
getDateHeader(String name)
Get the given header as a date.DispatcherType
getDispatcherType()
String
getForward()
Returns the url that was forwarded to, otherwise return null.String
getHeader(String name)
Get the given header value.Enumeration<String>
getHeaderNames()
Get the names of all of the headers.Map<String,List<String>>
getHeaders()
Return the map of headers for this request.Enumeration<String>
getHeaders(String name)
Get enumeration of all header values with the given name.List<String>
getIncludes()
Returns the list of server side included url's.ServletInputStream
getInputStream()
Returns an input stream if there has been added some uploaded files.int
getIntHeader(String name)
Get the given header as an int.String
getLocalAddr()
Return the local address, "127.0.0.1".Locale
getLocale()
Get the locale of the request.Enumeration<Locale>
getLocales()
Return all the accepted locales.String
getLocalName()
Return the local name, "127.0.0.1".int
getLocalPort()
Return the local port, 80.String
getMethod()
Get the method.String
getParameter(String name)
Get the request parameter with the given name.Map<String,String[]>
getParameterMap()
Get the map of all of the parameters.Enumeration<String>
getParameterNames()
Get the names of all of the parameters.String[]
getParameterValues(String name)
Get the values for the given parameter.Part
getPart(String name)
Collection<Part>
getParts()
String
getPathInfo()
Get the path info.String
getPathTranslated()
Always returns null.String
getProtocol()
Get the protocol.String
getQueryString()
Get the query string part of the request.BufferedReader
getReader()
This feature is not implemented at this time as we are not supporting binary servlet input.String
getRealPath(String name)
Deprecated.Use ServletContext.getRealPath(String) instead.String
getRemoteAddr()
Get the remote address of the client.String
getRemoteHost()
Get the remote host.int
getRemotePort()
Return the remote port, 80.String
getRemoteUser()
Return the name of theuserPrincipal
if set, otherwise the value of the "REMOTE_USER" header.RequestDispatcher
getRequestDispatcher(String path)
Returns a RequestDispatcher for the specified path.String
getRequestedSessionId()
Get the requested session id.String
getRequestURI()
Returns context path and servlet path concatenated, typically /applicationClassName/applicationClassName.StringBuffer
getRequestURL()
Returns (an attempt at) a reconstructed URL based on it's constituent parts.String
getScheme()
Get the scheme http, https, or ftp.String
getServerName()
Get the host server name to which the request was sent.int
getServerPort()
Returns the port number to which the request was sent.ServletContext
getServletContext()
Return the servlet context.String
getServletPath()
Return a String containing the name or path of the servlet being called.HttpSession
getSession()
Returns the current HttpSession associated with this request.HttpSession
getSession(boolean create)
Returns the current HttpSession associated with this request.Principal
getUserPrincipal()
Get the user principal.void
initialize()
Reset the request back to a default state.boolean
isAsyncStarted()
boolean
isAsyncSupported()
boolean
isPost()
Return whether the request is a post or not.boolean
isRequestedSessionIdFromCookie()
Check whether session id is from a cookie.boolean
isRequestedSessionIdFromUrl()
Check whether session id is from a url rewrite.boolean
isRequestedSessionIdFromURL()
Check whether session id is from a url rewrite.boolean
isRequestedSessionIdValid()
Check whether the session id is valid.boolean
isSecure()
Always returns false.boolean
isUserInRole(String role)
Returns true if theauthenticated user
is included in the given role, false otherwise.void
login(String username, String password)
void
logout()
void
removeAttribute(String name)
Remove the given attribute.MockRequest
removeParameter(String name)
Remove the specified parameter.void
reset()
Delegate to initialize method.void
setAttribute(String name, Object o)
Set the given attribute.void
setAuthType(String authType)
Set the auth type.void
setCharacterEncoding(String encoding)
Set the character encoding.MockRequest
setContentType(String contentType)
Set the request content type.MockRequest
setContextPath(String contextPath)
Set the portion of the request URI that indicates the context of the request.void
setCookies(Cookie[] theCookies)
Set the cookies.MockRequest
setHeader(String name, String value)
Set request header value.MockRequest
setHeader(String name, String... values)
Set request header values.MockRequest
setHttpSession(HttpSession session)
Set the request's session instance.MockRequest
setMethod(String method)
Set the method.MockRequest
setParameter(String name, String value)
Set a parameter.MockRequest
setParameter(String name, String[] values)
Set the specified parameter name to the array of strings.MockRequest
setParameters(Map<String,Object> parameters)
Sets a map of parameters.MockRequest
setPathInfo(String path)
Set the path that this request is supposed to be serving.void
setRequestURL(String requestURL)
Provide a convenience method for setting the request URL.MockRequest
setScheme(String scheme)
Set the request's scheme, for example http, https, or ftp.MockRequest
setServerName(String serverName)
Sets the host server name to which the request was sent.MockRequest
setServerPort(int serverPort)
Set the port number to which the request was sent.MockRequest
setServletContext(ServletContext servletContext)
Set the request's servletContext instance.MockRequest
setServletPath(String servletPath)
Set the string containing the name or path of the servlet being called.MockRequest
setSession(HttpSession session)
Set the current HttpSession associated with this request.MockRequest
setUseMultiPartContentType(boolean useMultiPartContentType)
True will force Request to generate multiPart ContentType and ContentLength.MockRequest
setUserPrincipal(Principal userPrincipal)
Set the user principal.AsyncContext
startAsync()
AsyncContext
startAsync(ServletRequest servletRequest, ServletResponse servletResponse)
String
toString()
Returns the String representation of the mock request.HttpUpgradeHandler
upgrade(Class handlerClass)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface javax.servlet.http.HttpServletRequest
getHttpServletMapping, getTrailerFields, isTrailerFieldsReady, newPushBuilder
-
-
-
-
Field Detail
-
REMOTE_USER
public static final String REMOTE_USER
The REMOTE_USER header.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MockRequest
public MockRequest()
Create new MockRequest.
-
MockRequest
public MockRequest(Locale locale)
Create new MockRequest for the specified local.- Parameters:
locale
- locale for this request
-
MockRequest
public MockRequest(ServletContext servletContext)
Create a new MockRequest for the specified context.- Parameters:
servletContext
- the servletContext for this request
-
MockRequest
public MockRequest(Locale locale, ServletContext servletContext)
Create a new MockRequest for the specified locale and servletContext.- Parameters:
locale
- locale for this requestservletContext
- the servletContext for this request
-
MockRequest
public MockRequest(Locale locale, ServletContext servletContext, HttpSession session)
Create a new MockRequest for the specified arguments.- Parameters:
locale
- The request locale, or null to use the default localesession
- The session objectservletContext
- The current servlet context
-
MockRequest
public MockRequest(Locale locale, String contextPath, String servletPath, ServletContext servletContext, HttpSession session)
Create a new MockRequest for the specified arguments.- Parameters:
locale
- The request locale, or null to use the default localecontextPath
- the request context pathservletPath
- the request servlet pathservletContext
- The current servlet contextsession
- the request session
-
-
Method Detail
-
setServletContext
public MockRequest setServletContext(ServletContext servletContext)
Set the request's servletContext instance.- Parameters:
servletContext
- the new ServletContext instance- Returns:
- the MockRequest object
-
setHttpSession
public MockRequest setHttpSession(HttpSession session)
Set the request's session instance.- Parameters:
session
- the new HttpSession instance- Returns:
- the MockRequest object
-
addCookie
public MockRequest addCookie(Cookie cookie)
Add a new cookie.- Parameters:
cookie
- The cookie- Returns:
- the MockRequest object
-
addHeader
public MockRequest addHeader(String name, String value)
Add a header to the request.- Parameters:
name
- the name of the header to addvalue
- the value- Returns:
- the MockRequest object
-
setHeader
public MockRequest setHeader(String name, String value)
Set request header value. The existing header value will be replaced.- Parameters:
name
- the name of the header to setvalue
- the header value- Returns:
- the MockRequest object
-
setHeader
public MockRequest setHeader(String name, String... values)
Set request header values. The existing header values will be replaced.- Parameters:
name
- the name of the header to setvalues
- the header values- Returns:
- the MockRequest object
-
getAttribute
public Object getAttribute(String name)
Get an attribute.- Specified by:
getAttribute
in interfaceServletRequest
- Parameters:
name
- The attribute name- Returns:
- The value, or null
-
getAttributeNames
public Enumeration<String> getAttributeNames()
Get the names of all of the values.- Specified by:
getAttributeNames
in interfaceServletRequest
- Returns:
- The names
-
getAuthType
public String getAuthType()
Get the auth type.- Specified by:
getAuthType
in interfaceHttpServletRequest
- Returns:
- The auth type
-
getCharacterEncoding
public String getCharacterEncoding()
Get the current character encoding.- Specified by:
getCharacterEncoding
in interfaceServletRequest
- Returns:
- The character encoding
-
setUseMultiPartContentType
public MockRequest setUseMultiPartContentType(boolean useMultiPartContentType)
True will force Request to generate multiPart ContentType and ContentLength.- Parameters:
useMultiPartContentType
- true if the request is multi-part, false otherwise- Returns:
- the MockRequest object
-
getContentLength
public int getContentLength()
Return the length of the content. This is always -1 except if useMultiPartContentType set as true. Then the length will be the length of the generated request.- Specified by:
getContentLength
in interfaceServletRequest
- Returns:
- -1 if useMultiPartContentType is false. Else the length of the generated request.
-
setContentType
public MockRequest setContentType(String contentType)
Set the request content type.- Parameters:
contentType
- the request content type.- Returns:
- the MockRequest object
-
getContentType
public String getContentType()
If useMultiPartContentType set as true return the correct content-type. If the contentType property is defined then this value will be returned.- Specified by:
getContentType
in interfaceServletRequest
- Returns:
- The correct multipart content-type if useMultiPartContentType is true. Else null.
-
getCookies
public Cookie[] getCookies()
Get all of the cookies for this request.- Specified by:
getCookies
in interfaceHttpServletRequest
- Returns:
- The cookies
-
getDateHeader
public long getDateHeader(String name)
Get the given header as a date.- Specified by:
getDateHeader
in interfaceHttpServletRequest
- Parameters:
name
- The header name- Returns:
- The date, or -1 if header not found
-
getHeader
public String getHeader(String name)
Get the given header value.- Specified by:
getHeader
in interfaceHttpServletRequest
- Parameters:
name
- The header name- Returns:
- The header value or null
-
getHeaderNames
public Enumeration<String> getHeaderNames()
Get the names of all of the headers.- Specified by:
getHeaderNames
in interfaceHttpServletRequest
- Returns:
- The header names
-
getHeaders
public Enumeration<String> getHeaders(String name)
Get enumeration of all header values with the given name.- Specified by:
getHeaders
in interfaceHttpServletRequest
- Parameters:
name
- The name- Returns:
- The header values
-
getHeaders
public Map<String,List<String>> getHeaders()
Return the map of headers for this request.- Returns:
- the map of headers for this request
-
getInputStream
public ServletInputStream getInputStream() throws IOException
Returns an input stream if there has been added some uploaded files.- Specified by:
getInputStream
in interfaceServletRequest
- Returns:
- The input stream
- Throws:
IOException
- If an I/O related problem occurs
-
getIntHeader
public int getIntHeader(String name)
Get the given header as an int.- Specified by:
getIntHeader
in interfaceHttpServletRequest
- Parameters:
name
- The header name- Returns:
- The header value or -1 if header not found
-
getLocale
public Locale getLocale()
Get the locale of the request. Attempts to decode the Accept-Language header and if not found returns the default locale of the JVM.- Specified by:
getLocale
in interfaceServletRequest
- Returns:
- The locale
-
getLocales
public Enumeration<Locale> getLocales()
Return all the accepted locales. This implementation always returns just one.- Specified by:
getLocales
in interfaceServletRequest
- Returns:
- The locales
-
getMethod
public String getMethod()
Get the method. The returned string will be in upper case eg. POST.- Specified by:
getMethod
in interfaceHttpServletRequest
- Returns:
- The method
-
getParameter
public String getParameter(String name)
Get the request parameter with the given name.- Specified by:
getParameter
in interfaceServletRequest
- Parameters:
name
- The parameter name- Returns:
- The parameter value, or null
-
getParameterMap
public Map<String,String[]> getParameterMap()
Get the map of all of the parameters.- Specified by:
getParameterMap
in interfaceServletRequest
- Returns:
- The parameters
-
getParameterNames
public Enumeration<String> getParameterNames()
Get the names of all of the parameters.- Specified by:
getParameterNames
in interfaceServletRequest
- Returns:
- The parameter names
-
getParameterValues
public String[] getParameterValues(String name)
Get the values for the given parameter.- Specified by:
getParameterValues
in interfaceServletRequest
- Parameters:
name
- The name of the parameter- Returns:
- The return values
-
getPathInfo
public String getPathInfo()
Get the path info.- Specified by:
getPathInfo
in interfaceHttpServletRequest
- Returns:
- The path info
-
getPathTranslated
public String getPathTranslated()
Always returns null.- Specified by:
getPathTranslated
in interfaceHttpServletRequest
- Returns:
- null
-
getProtocol
public String getProtocol()
Get the protocol.- Specified by:
getProtocol
in interfaceServletRequest
- Returns:
- Always HTTP/1.1
-
getQueryString
public String getQueryString()
Get the query string part of the request.- Specified by:
getQueryString
in interfaceHttpServletRequest
- Returns:
- The query string
-
getReader
public BufferedReader getReader() throws IOException
This feature is not implemented at this time as we are not supporting binary servlet input. This functionality may be added in the future.- Specified by:
getReader
in interfaceServletRequest
- Returns:
- The reader
- Throws:
IOException
- If an I/O related problem occurs
-
getRealPath
public String getRealPath(String name)
Deprecated.Use ServletContext.getRealPath(String) instead.Deprecated method - should not be used.- Specified by:
getRealPath
in interfaceServletRequest
- Parameters:
name
- The name- Returns:
- The path
-
getRemoteAddr
public String getRemoteAddr()
Get the remote address of the client.- Specified by:
getRemoteAddr
in interfaceServletRequest
- Returns:
- Always 127.0.0.1
-
getRemoteHost
public String getRemoteHost()
Get the remote host.- Specified by:
getRemoteHost
in interfaceServletRequest
- Returns:
- Always localhost
-
getRemoteUser
public String getRemoteUser()
Return the name of the
userPrincipal
if set, otherwise the value of the "REMOTE_USER" header.To set the remote user, create an instance of a
MockPrincipal
and set it on the request through the methodsetUserPrincipal(java.security.Principal)
.- Specified by:
getRemoteUser
in interfaceHttpServletRequest
- Returns:
- the name of the remote user
-
getLocalAddr
public String getLocalAddr()
Return the local address, "127.0.0.1".- Specified by:
getLocalAddr
in interfaceServletRequest
- Returns:
- "127.0.0.1" as the local address
-
getLocalName
public String getLocalName()
Return the local name, "127.0.0.1".- Specified by:
getLocalName
in interfaceServletRequest
- Returns:
- "127.0.0.1" as the local name
-
getLocalPort
public int getLocalPort()
Return the local port, 80.- Specified by:
getLocalPort
in interfaceServletRequest
- Returns:
- 80 as the local port
-
getRemotePort
public int getRemotePort()
Return the remote port, 80.- Specified by:
getRemotePort
in interfaceServletRequest
- Returns:
- 80 as the remote port
-
getRequestDispatcher
public RequestDispatcher getRequestDispatcher(String path)
Returns a RequestDispatcher for the specified path. The dispatcher will not dispatch to the resource. It only records the specified path so that one can test if the correct path was dispatched to.- Specified by:
getRequestDispatcher
in interfaceServletRequest
- Parameters:
path
- a String specifying the pathname to the resource- Returns:
- a dispatcher for the specified path
-
getRequestedSessionId
public String getRequestedSessionId()
Get the requested session id. Always returns the id of the current session.- Specified by:
getRequestedSessionId
in interfaceHttpServletRequest
- Returns:
- The session id
-
getRequestURI
public String getRequestURI()
Returns context path and servlet path concatenated, typically /applicationClassName/applicationClassName.- Specified by:
getRequestURI
in interfaceHttpServletRequest
- Returns:
- The path value
- See Also:
HttpServletRequest.getRequestURI()
-
setRequestURL
public void setRequestURL(String requestURL)
Provide a convenience method for setting the request URL.- Parameters:
requestURL
- the request URL to set
-
getRequestURL
public StringBuffer getRequestURL()
Returns (an attempt at) a reconstructed URL based on it's constituent parts. If the requestURL property is set this value will be returned instead.- Specified by:
getRequestURL
in interfaceHttpServletRequest
- Returns:
- a StringBuffer object containing the reconstructed URL
- See Also:
HttpServletRequest.getRequestURL()
-
isPost
public boolean isPost()
Return whether the request is a post or not.- Returns:
- true if the request is a post, false otherwise
-
getScheme
public String getScheme()
Get the scheme http, https, or ftp.- Specified by:
getScheme
in interfaceServletRequest
- Returns:
- the scheme used by this request
-
setScheme
public MockRequest setScheme(String scheme)
Set the request's scheme, for example http, https, or ftp.- Parameters:
scheme
- the request's scheme- Returns:
- the MockRequest object
-
getServerName
public String getServerName()
Get the host server name to which the request was sent.- Specified by:
getServerName
in interfaceServletRequest
- Returns:
- always the host server name
-
setServerName
public MockRequest setServerName(String serverName)
Sets the host server name to which the request was sent.- Parameters:
serverName
- the server name the request was sent to- Returns:
- the MockRequest object
-
getServerPort
public int getServerPort()
Returns the port number to which the request was sent.- Specified by:
getServerPort
in interfaceServletRequest
- Returns:
- the server port to which the request was sent
-
setServerPort
public MockRequest setServerPort(int serverPort)
Set the port number to which the request was sent.- Parameters:
serverPort
- the port number to which the request was sent- Returns:
- the MockRequest object
-
getContextPath
public String getContextPath()
Returns the portion of the request URI that indicates the context of the request.- Specified by:
getContextPath
in interfaceHttpServletRequest
- Returns:
- the portion of the request URI that indicates the context of the request.
-
setContextPath
public MockRequest setContextPath(String contextPath)
Set the portion of the request URI that indicates the context of the request.- Parameters:
contextPath
- the portion of the request URI that indicates the context of the request.- Returns:
- the MockRequest object
-
getServletContext
public ServletContext getServletContext()
Return the servlet context.- Specified by:
getServletContext
in interfaceServletRequest
- Returns:
- the servlet context.
- Since:
- Servlet 3.0
-
getServletPath
public String getServletPath()
Return a String containing the name or path of the servlet being called.- Specified by:
getServletPath
in interfaceHttpServletRequest
- Returns:
- The servlet path
-
setServletPath
public MockRequest setServletPath(String servletPath)
Set the string containing the name or path of the servlet being called.- Parameters:
servletPath
- a String containing the name or path of the servlet being called- Returns:
- the MockRequest object
-
getSession
public HttpSession getSession()
Returns the current HttpSession associated with this request.- Specified by:
getSession
in interfaceHttpServletRequest
- Returns:
- the session associated with this request
-
setSession
public MockRequest setSession(HttpSession session)
Set the current HttpSession associated with this request.- Parameters:
session
- the HttpSession to associate with this request- Returns:
- the MockRequest object
-
getSession
public HttpSession getSession(boolean create)
Returns the current HttpSession associated with this request.- Specified by:
getSession
in interfaceHttpServletRequest
- Parameters:
create
- if true creates a new session if one does not exist- Returns:
- the current HttpSession associated with this request.
-
getUserPrincipal
public Principal getUserPrincipal()
Get the user principal. If no user principal was set this method will create a user principal for thegetRemoteUser()
.- Specified by:
getUserPrincipal
in interfaceHttpServletRequest
- Returns:
- the user principal
-
setUserPrincipal
public MockRequest setUserPrincipal(Principal userPrincipal)
Set the user principal.- Parameters:
userPrincipal
- the user principal- Returns:
- the MockRequest object
-
initialize
public final void initialize()
Reset the request back to a default state.
-
reset
public void reset()
Delegate to initialize method.
-
isRequestedSessionIdFromCookie
public boolean isRequestedSessionIdFromCookie()
Check whether session id is from a cookie. Always returns true.- Specified by:
isRequestedSessionIdFromCookie
in interfaceHttpServletRequest
- Returns:
- Always true
-
isRequestedSessionIdFromUrl
public boolean isRequestedSessionIdFromUrl()
Check whether session id is from a url rewrite. Always returns false.- Specified by:
isRequestedSessionIdFromUrl
in interfaceHttpServletRequest
- Returns:
- Always false
-
isRequestedSessionIdFromURL
public boolean isRequestedSessionIdFromURL()
Check whether session id is from a url rewrite. Always returns false.- Specified by:
isRequestedSessionIdFromURL
in interfaceHttpServletRequest
- Returns:
- Always false
-
isRequestedSessionIdValid
public boolean isRequestedSessionIdValid()
Check whether the session id is valid.- Specified by:
isRequestedSessionIdValid
in interfaceHttpServletRequest
- Returns:
- Always true
-
isSecure
public boolean isSecure()
Always returns false.- Specified by:
isSecure
in interfaceServletRequest
- Returns:
- Always false
-
isUserInRole
public boolean isUserInRole(String role)
Returns true if the
authenticated user
is included in the given role, false otherwise.To mock up roles for a user, create a
user principal
and set the necessary roles. SeeMockPrincipal
for an example.- Specified by:
isUserInRole
in interfaceHttpServletRequest
- Parameters:
role
- the role name- Returns:
- true if the user is included in the specified role, false otherwise
-
removeAttribute
public void removeAttribute(String name)
Remove the given attribute.- Specified by:
removeAttribute
in interfaceServletRequest
- Parameters:
name
- The name of the attribute
-
setAttribute
public void setAttribute(String name, Object o)
Set the given attribute.- Specified by:
setAttribute
in interfaceServletRequest
- Parameters:
name
- The attribute nameo
- The value to set
-
setAuthType
public void setAuthType(String authType)
Set the auth type.- Parameters:
authType
- The auth type
-
setCharacterEncoding
public void setCharacterEncoding(String encoding) throws UnsupportedEncodingException
Set the character encoding.- Specified by:
setCharacterEncoding
in interfaceServletRequest
- Parameters:
encoding
- The character encoding- Throws:
UnsupportedEncodingException
- If encoding not supported
-
setCookies
public void setCookies(Cookie[] theCookies)
Set the cookies.- Parameters:
theCookies
- The cookies
-
setMethod
public MockRequest setMethod(String method)
Set the method.- Parameters:
method
- The method- Returns:
- the MockRequest object
-
setParameter
public MockRequest setParameter(String name, String value)
Set a parameter.- Parameters:
name
- The namevalue
- The value- Returns:
- the MockRequest object
-
setParameter
public MockRequest setParameter(String name, String[] values)
Set the specified parameter name to the array of strings.- Parameters:
name
- name of the parametervalues
- the parameter values- Returns:
- the MockRequest object
-
removeParameter
public MockRequest removeParameter(String name)
Remove the specified parameter.- Parameters:
name
- the parameter name to remove- Returns:
- the MockRequest object
-
setParameters
public MockRequest setParameters(Map<String,Object> parameters)
Sets a map of parameters.- Parameters:
parameters
- the parameters to set- Returns:
- the MockRequest object
-
setPathInfo
public MockRequest setPathInfo(String path)
Set the path that this request is supposed to be serving. The path is relative to the web application root and should start with a / character- Parameters:
path
- specifies the request path to serve- Returns:
- the MockRequest object
-
getForward
public String getForward()
Returns the url that was forwarded to, otherwise return null. javax.servlet.ServletResponse)- Returns:
- url that was forwarded to
-
getIncludes
public List<String> getIncludes()
Returns the list of server side included url's. javax.servlet.ServletResponse)- Returns:
- list of urls that were included
-
toString
public String toString()
Returns the String representation of the mock request.
-
getAsyncContext
public AsyncContext getAsyncContext()
- Specified by:
getAsyncContext
in interfaceServletRequest
- Returns:
- null
- See Also:
ServletRequest.getAsyncContext()
-
getContentLengthLong
public long getContentLengthLong()
- Specified by:
getContentLengthLong
in interfaceServletRequest
- Returns:
- 0
- See Also:
ServletRequest.getContentLengthLong()
-
getDispatcherType
public DispatcherType getDispatcherType()
- Specified by:
getDispatcherType
in interfaceServletRequest
- Returns:
- null
- See Also:
ServletRequest.getDispatcherType()
-
isAsyncStarted
public boolean isAsyncStarted()
- Specified by:
isAsyncStarted
in interfaceServletRequest
- Returns:
- false
- See Also:
ServletRequest.isAsyncStarted()
-
isAsyncSupported
public boolean isAsyncSupported()
- Specified by:
isAsyncSupported
in interfaceServletRequest
- Returns:
- false
- See Also:
ServletRequest.isAsyncSupported()
-
startAsync
public AsyncContext startAsync()
- Specified by:
startAsync
in interfaceServletRequest
- Returns:
- the (re)initialized AsyncContext
- See Also:
ServletRequest.startAsync()
-
startAsync
public AsyncContext startAsync(ServletRequest servletRequest, ServletResponse servletResponse)
- Specified by:
startAsync
in interfaceServletRequest
- Parameters:
servletRequest
- the ServletRequest used to initialize the AsyncContextservletResponse
- the ServletResponse used to initialize the AsyncContext- Returns:
- null
- See Also:
ServletRequest.startAsync(javax.servlet.ServletRequest, javax.servlet.ServletResponse)
-
authenticate
public boolean authenticate(HttpServletResponse response) throws IOException
- Specified by:
authenticate
in interfaceHttpServletRequest
- Parameters:
response
- TheHttpServletResponse
associated with thisHttpServletRequest
- Returns:
- false
- Throws:
IOException
- never thrown
-
changeSessionId
public String changeSessionId()
- Specified by:
changeSessionId
in interfaceHttpServletRequest
- Returns:
- null
-
getPart
public Part getPart(String name) throws IOException
- Specified by:
getPart
in interfaceHttpServletRequest
- Parameters:
name
- the part name- Returns:
- null
- Throws:
IOException
- never thrown
-
getParts
public Collection<Part> getParts() throws IOException
- Specified by:
getParts
in interfaceHttpServletRequest
- Returns:
- null
- Throws:
IOException
- never thrown- See Also:
HttpServletRequest.getParts()
-
login
public void login(String username, String password)
- Specified by:
login
in interfaceHttpServletRequest
- Parameters:
username
- TheString
value corresponding to the login identifier of the user.password
- The passwordString
corresponding to the identified user.- See Also:
HttpServletRequest.login(java.lang.String, java.lang.String)
-
logout
public void logout()
- Specified by:
logout
in interfaceHttpServletRequest
- See Also:
HttpServletRequest.logout()
-
upgrade
public HttpUpgradeHandler upgrade(Class handlerClass) throws IOException
- Specified by:
upgrade
in interfaceHttpServletRequest
- Parameters:
handlerClass
- TheHttpUpgradeHandler
class used for the upgrade.- Returns:
- null
- Throws:
IOException
- never thrown- See Also:
HttpServletRequest.upgrade(java.lang.Class)
-
-