Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

servletunit
Class ServletContextSimulator  view ServletContextSimulator download ServletContextSimulator.java

java.lang.Object
  extended byservletunit.ServletContextSimulator
All Implemented Interfaces:
javax.servlet.ServletContext

public class ServletContextSimulator
extends java.lang.Object
implements javax.servlet.ServletContext

This class simulates a ServletContext.


Field Summary
private  java.util.Hashtable attributes
           
private  java.io.File contextDirectory
           
private  RequestDispatcherSimulator dispatcher
           
private  java.util.Hashtable initParameters
           
private static org.apache.commons.logging.Log logger
           
 
Constructor Summary
ServletContextSimulator()
           
 
Method Summary
 java.lang.Object getAttribute(java.lang.String name)
          Returns the servlet container attribute with the given name, or null if there is no attribute by that name.
 java.util.Enumeration getAttributeNames()
          Returns an Enumeration containing the attribute names available within this servlet context.
 javax.servlet.ServletContext getContext(java.lang.String uripath)
          Unsupported in this version.
 java.io.File getContextDirectory()
           
 java.lang.String getInitParameter(java.lang.String s)
          Returns a String containing the value of the named context-wide initialization parameter, or null if the parameter does not exist.
 java.util.Enumeration getInitParameterNames()
          Returns the names of the context's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the context has no initialization parameters.
 int getMajorVersion()
          Returns the major version of the Java Servlet API that this Web server supports.
 java.lang.String getMimeType(java.lang.String file)
          Unsupported in this version.
 int getMinorVersion()
          Returns the minor version of the Servlet API that this Web server supports.
 javax.servlet.RequestDispatcher getNamedDispatcher(java.lang.String s)
          Returns a javax.servlet.RequestDispatcher object that acts as a wrapper for the named servlet.
 java.lang.String getRealPath(java.lang.String path)
          Returns a String containing the real path for a given virtual path.
 javax.servlet.RequestDispatcher getRequestDispatcher(java.lang.String urlpath)
          Returns a javax.servlet.RequestDispatcher object that acts as a wrapper for the resource located at the given path.
 RequestDispatcherSimulator getRequestDispatcherSimulator()
          Returns the mock RequestDispatcher object used in this test.
 java.net.URL getResource(java.lang.String path)
          TODO: add appropriate comments
 java.io.File getResourceAsFile(java.lang.String path)
          Attempts to load a resource from the underlying file system and return a file handle to it.
 java.io.InputStream getResourceAsStream(java.lang.String path)
          Returns the resource located at the named path as an InputStream object.
 java.util.Set getResourcePaths()
          Unsupported in this version.
 java.util.Set getResourcePaths(java.lang.String path)
          Unsupported in this version.
 java.lang.String getServerInfo()
          Returns the name and version of the servlet container on which the servlet is running.
 javax.servlet.Servlet getServlet(java.lang.String name)
          Unsupported in this version.
 java.lang.String getServletContextName()
          Unsupported in this version.
 java.util.Enumeration getServletNames()
          Unsupported in this version.
 java.util.Enumeration getServlets()
          Unsupported in this version.
 void log(java.lang.Exception exception, java.lang.String msg)
          Deprecated. As of Java Servlet API 2.1, use
 void log(java.lang.String msg)
          Writes the specified message to a servlet log file, which is usually an event log.
 void log(java.lang.String message, java.lang.Throwable throwable)
          Writes the stack trace and an explanatory message for a given Throwable exception to the servlet log file.
 void removeAttribute(java.lang.String name)
          Removes the attribute with the given name from the servlet context.
 void setAttribute(java.lang.String name, java.lang.Object object)
          Binds an object to a given attribute name in this servlet context.
 void setContextDirectory(java.io.File contextDirectory)
          Sets the absolute context directory to be used in the getRealPath() method.
 void setInitParameter(java.lang.String key, java.lang.String value)
          Sets a named initialization parameter with the supplied String value.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

initParameters

private java.util.Hashtable initParameters

attributes

private java.util.Hashtable attributes

dispatcher

private RequestDispatcherSimulator dispatcher

logger

private static org.apache.commons.logging.Log logger

contextDirectory

private java.io.File contextDirectory
Constructor Detail

ServletContextSimulator

public ServletContextSimulator()
Method Detail

getAttribute

public java.lang.Object getAttribute(java.lang.String name)
Returns the servlet container attribute with the given name, or null if there is no attribute by that name. An attribute allows a servlet container to give the servlet additional information not already provided by this interface. See your server documentation for information about its attributes. A list of supported attributes can be retrieved using getAttributeNames.

The attribute is returned as a java.lang.Object or some subclass. Attribute names should follow the same convention as package names. The Java Servlet API specification reserves names matching java.*, javax.*, and sun.*.

Specified by:
getAttribute in interface javax.servlet.ServletContext

getAttributeNames

public java.util.Enumeration getAttributeNames()
Returns an Enumeration containing the attribute names available within this servlet context. Use the getAttribute(java.lang.String) 55 method with an attribute name to get the value of an attribute.

Specified by:
getAttributeNames in interface javax.servlet.ServletContext

getContext

public javax.servlet.ServletContext getContext(java.lang.String uripath)
Unsupported in this version.

Specified by:
getContext in interface javax.servlet.ServletContext

getInitParameter

public java.lang.String getInitParameter(java.lang.String s)
Returns a String containing the value of the named context-wide initialization parameter, or null if the parameter does not exist.

This method can make available configuration information useful to an entire "web application". For example, it can provide a webmaster's email address or the name of a system that holds critical data.

Specified by:
getInitParameter in interface javax.servlet.ServletContext

getInitParameterNames

public java.util.Enumeration getInitParameterNames()
Returns the names of the context's initialization parameters as an Enumeration of String objects, or an empty Enumeration if the context has no initialization parameters.

Specified by:
getInitParameterNames in interface javax.servlet.ServletContext

setInitParameter

public void setInitParameter(java.lang.String key,
                             java.lang.String value)
Sets a named initialization parameter with the supplied String value.


getMajorVersion

public int getMajorVersion()
Returns the major version of the Java Servlet API that this Web server supports. All implementations that comply with Version 2.3 must have this method return the integer 2.

Specified by:
getMajorVersion in interface javax.servlet.ServletContext

getMimeType

public java.lang.String getMimeType(java.lang.String file)
Unsupported in this version.

Specified by:
getMimeType in interface javax.servlet.ServletContext

getMinorVersion

public int getMinorVersion()
Returns the minor version of the Servlet API that this Web server supports. All implementations that comply with Version 2.3 must have this method return the integer 1.

Specified by:
getMinorVersion in interface javax.servlet.ServletContext

getNamedDispatcher

public javax.servlet.RequestDispatcher getNamedDispatcher(java.lang.String s)
Description copied from interface: javax.servlet.ServletContext
Returns a javax.servlet.RequestDispatcher object that acts as a wrapper for the named servlet.

Servlets (and JSP pages also) may be given names via server administration or via a web application deployment descriptor. A servlet instance can determine its name using ServletConfig.getServletName()>ServletConfig.getServletName() 55 .

This method returns null if the ServletContext cannot return a RequestDispatcher for any reason.

Specified by:
getNamedDispatcher in interface javax.servlet.ServletContext

getRealPath

public java.lang.String getRealPath(java.lang.String path)
Description copied from interface: javax.servlet.ServletContext
Returns a String containing the real path for a given virtual path. For example, the path "/index.html" returns the absolute file path on the server's filesystem would be served by a request for "http://host/contextPath/index.html", where contextPath is the context path of this ServletContext..

The real path returned will be in a form appropriate to the computer and operating system on which the servlet container is running, including the proper path separators. This method returns null if the servlet container cannot translate the virtual path to a real path for any reason (such as when the content is being made available from a .war archive).

Specified by:
getRealPath in interface javax.servlet.ServletContext

getRequestDispatcher

public javax.servlet.RequestDispatcher getRequestDispatcher(java.lang.String urlpath)
Returns a javax.servlet.RequestDispatcher object that acts as a wrapper for the resource located at the given path. A RequestDispatcher object can be used to forward a request to the resource or to include the resource in a response. The resource can be dynamic or static.

The pathname must begin with a "/" and is interpreted as relative to the current context root. Use getContext to obtain a RequestDispatcher for resources in foreign contexts. This method returns null if the ServletContext cannot return a RequestDispatcher.

Specified by:
getRequestDispatcher in interface javax.servlet.ServletContext

getRequestDispatcherSimulator

public RequestDispatcherSimulator getRequestDispatcherSimulator()
Returns the mock RequestDispatcher object used in this test. The RequestDispatcherSimulator contains forwarding information that can be used in test validation.


getResource

public java.net.URL getResource(java.lang.String path)
                         throws java.net.MalformedURLException
TODO: add appropriate comments

Specified by:
getResource in interface javax.servlet.ServletContext

getResourceAsStream

public java.io.InputStream getResourceAsStream(java.lang.String path)
Returns the resource located at the named path as an InputStream object.

The data in the InputStream can be of any type or length. The path must be specified according to the rules given in getResource. This method returns null if no resource exists at the specified path.

Meta-information such as content length and content type that is available via getResource method is lost when using this method.

The servlet container must implement the URL handlers and URLConnection objects necessary to access the resource.

In this mock implementation, this method first looks for the supplied pathname in the underlying filesystem; if it does not exist there, the default Java classloader is used.

Specified by:
getResourceAsStream in interface javax.servlet.ServletContext

getResourceAsFile

public java.io.File getResourceAsFile(java.lang.String path)
Attempts to load a resource from the underlying file system and return a file handle to it. It first treats the path as an absolute path. If no file is found, it attempts to treat the path as relative to the context directory. If no file is found, it attempts to treat the path as relative to the current directory. If all these options fail, the returned file will return false() to calls to File.exists().


getResourcePaths

public java.util.Set getResourcePaths()
Unsupported in this version.


getServerInfo

public java.lang.String getServerInfo()
Returns the name and version of the servlet container on which the servlet is running.

The form of the returned string is servername/versionnumber. For example, the JavaServer Web Development Kit may return the string JavaServer Web Dev Kit/1.0.

The servlet container may return other optional information after the primary string in parentheses, for example, JavaServer Web Dev Kit/1.0 (JDK 1.1.6; Windows NT 4.0 x86).

Specified by:
getServerInfo in interface javax.servlet.ServletContext

getServlet

public javax.servlet.Servlet getServlet(java.lang.String name)
                                 throws javax.servlet.ServletException
Unsupported in this version.

Specified by:
getServlet in interface javax.servlet.ServletContext

getServletContextName

public java.lang.String getServletContextName()
Unsupported in this version.

Specified by:
getServletContextName in interface javax.servlet.ServletContext

getServletNames

public java.util.Enumeration getServletNames()
Unsupported in this version.

Specified by:
getServletNames in interface javax.servlet.ServletContext

getServlets

public java.util.Enumeration getServlets()
Unsupported in this version.

Specified by:
getServlets in interface javax.servlet.ServletContext

log

public void log(java.lang.Exception exception,
                java.lang.String msg)
Deprecated. As of Java Servlet API 2.1, use

Specified by:
log in interface javax.servlet.ServletContext

log

public void log(java.lang.String msg)
Writes the specified message to a servlet log file, which is usually an event log. The message provides explanatory information about an exception or error or an action the servlet engine takes. The name and type of the servlet log file is specific to the servlet engine.

Specified by:
log in interface javax.servlet.ServletContext

log

public void log(java.lang.String message,
                java.lang.Throwable throwable)
Writes the stack trace and an explanatory message for a given Throwable exception to the servlet log file. The name and type of the servlet log file is specific to the servlet engine, but it is usually an event log.

Specified by:
log in interface javax.servlet.ServletContext

removeAttribute

public void removeAttribute(java.lang.String name)
Removes the attribute with the given name from the servlet context. After removal, subsequent calls to getAttribute(java.lang.String) 55 to retrieve the attribute's value will return null.

If listeners are configured on the ServletContext the container notifies them accordingly.

Specified by:
removeAttribute in interface javax.servlet.ServletContext

setAttribute

public void setAttribute(java.lang.String name,
                         java.lang.Object object)
Binds an object to a given attribute name in this servlet context. If the name specified is already used for an attribute, this method will replace the attribute with the new to the new attribute.

If listeners are configured on the ServletContext the container notifies them accordingly.

If a null value is passed, the effect is the same as calling removeAttribute().

Attribute names should follow the same convention as package names. The Java Servlet API specification reserves names matching java.*, javax.*, and sun.*.

Specified by:
setAttribute in interface javax.servlet.ServletContext

getResourcePaths

public java.util.Set getResourcePaths(java.lang.String path)
Unsupported in this version.

Specified by:
getResourcePaths in interface javax.servlet.ServletContext

setContextDirectory

public void setContextDirectory(java.io.File contextDirectory)
Sets the absolute context directory to be used in the getRealPath() method.


getContextDirectory

public java.io.File getContextDirectory()