|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.apache.myfaces.test.base.junit4.AbstractJsfConfigurableMultipleRequestsTestCase
public abstract class AbstractJsfConfigurableMultipleRequestsTestCase
Abstract JUnit 4.5 test case base class, which sets up the JavaServer Faces
mock object environment for multiple simulated request. The following
protected variables are initialized in the setUp()
method, and
cleaned up in the tearDown()
method:
application
(Application
)config
(MockServletConfig
)externalContext
(ExternalContext
)facesContext
(FacesContext
)lifecycle
(Lifecycle
)request
(MockHttpServletRequest
response
(MockHttpServletResponse
)servletContext
(MockServletContext
)session
(MockHttpSession
)In addition, appropriate factory classes will have been registered with
javax.faces.FactoryFinder
for Application
and
RenderKit
instances. The created FacesContext
instance will also have been registered in the proper thread local
variable, to simulate what a servlet container would do.
WARNING - If you choose to subclass this class, be sure
your setUp()
and tearDown()
methods call
super.setUp()
and super.tearDown()
respectively,
and that you implement your own suite()
method that exposes
the test methods for your test case. Additionally, check on each test
that setupRequest() and tearDownRequest() are called correctly.
Field Summary | |
---|---|
protected javax.faces.application.Application |
application
|
protected MockServletConfig |
config
|
protected javax.faces.context.ExternalContext |
externalContext
|
protected javax.faces.context.FacesContext |
facesContext
|
protected javax.faces.context.FacesContextFactory |
facesContextFactory
|
protected javax.faces.lifecycle.Lifecycle |
lifecycle
|
protected javax.faces.lifecycle.LifecycleFactory |
lifecycleFactory
|
protected javax.faces.render.RenderKit |
renderKit
|
protected MockHttpServletRequest |
request
|
protected MockHttpServletResponse |
response
|
protected MockServletContext |
servletContext
|
protected MockHttpSession |
session
|
Constructor Summary | |
---|---|
AbstractJsfConfigurableMultipleRequestsTestCase()
Construct a new instance of this test case. |
Method Summary | |
---|---|
protected void |
setFactories()
Set JSF factories using FactoryFinder method setFactory. |
void |
setUp()
Set up instance variables required by this test case. |
protected void |
setUpApplication()
Setup the application variable and before
the end by default it is assigned to the facesContext
variable, calling facesContext.setApplication(application) |
protected void |
setUpExternalContext()
Setup the externalContext variable, using the
servlet variables already initialized. |
protected void |
setUpFacesContext()
Setup the facesContextFactory and facesContext
variable. |
protected void |
setUpJSFRequestObjects()
Setup JSF object used for the test. |
protected void |
setUpLifecycle()
Setup the lifecycle and lifecycleFactory
variables. |
protected void |
setUpRenderKit()
Setup the renderKit variable. |
void |
setupRequest()
This method initialize an new empty request. |
protected void |
setUpServletContextAndSession()
Setup servlet objects that will be used for the test: |
protected void |
setUpServletRequestAndResponse()
|
protected void |
setUpView()
By default, create an instance of UIViewRoot, set its viewId as "/viewId" and assign it to the current facesContext. |
void |
tearDown()
Tear down instance variables required by this test case. |
void |
tearDownRequest()
This method ends the current request. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
protected javax.faces.application.Application application
protected MockServletConfig config
protected javax.faces.context.ExternalContext externalContext
protected javax.faces.context.FacesContext facesContext
protected javax.faces.context.FacesContextFactory facesContextFactory
protected javax.faces.lifecycle.Lifecycle lifecycle
protected javax.faces.lifecycle.LifecycleFactory lifecycleFactory
protected javax.faces.render.RenderKit renderKit
protected MockHttpServletRequest request
protected MockHttpServletResponse response
protected MockServletContext servletContext
protected MockHttpSession session
Constructor Detail |
---|
public AbstractJsfConfigurableMultipleRequestsTestCase()
Construct a new instance of this test case.
name
- Name of this test caseMethod Detail |
---|
public void setUp() throws Exception
Set up instance variables required by this test case.
Exception
public void setupRequest() throws Exception
Exception
protected void setUpJSFRequestObjects() throws Exception
Setup JSF object used for the test. By default it calls to the following methods in this order:
setUpExternalContext();
setUpLifecycle();
setUpFacesContext();
setUpView();
setUpApplication();
setUpRenderKit();
Exception
protected void setUpServletContextAndSession() throws Exception
Setup servlet objects that will be used for the test:
config
(MockServletConfig
)servletContext
(MockServletContext
)request
(MockHttpServletRequest
response
(MockHttpServletResponse
)session
(MockHttpSession
)
Exception
protected void setUpServletRequestAndResponse() throws Exception
Exception
protected void setFactories() throws Exception
Set JSF factories using FactoryFinder method setFactory.
Exception
protected void setUpExternalContext() throws Exception
externalContext
variable, using the
servlet variables already initialized.
Exception
protected void setUpLifecycle() throws Exception
lifecycle
and lifecycleFactory
variables.
Exception
protected void setUpFacesContext() throws Exception
facesContextFactory
and facesContext
variable. Before end, by default it override externalContext
variable from the value retrieved from facesContext.getExternalContext(),
because sometimes it is possible facesContext overrides externalContext
internally.
Exception
protected void setUpView() throws Exception
Exception
protected void setUpApplication() throws Exception
application
variable and before
the end by default it is assigned to the facesContext
variable, calling facesContext.setApplication(application)
Exception
protected void setUpRenderKit() throws Exception
renderKit
variable. This is a good place to use
ConfigParser
to register converters, validators, components
or renderkits.
Exception
public void tearDown() throws Exception
Tear down instance variables required by this test case.
Exception
public void tearDownRequest()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |