blob: a633abc10e6a34e4d0e3ddaf3a4d80919578dea0 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.myfaces.extensions.validator;
import java.io.StringWriter;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.Iterator;
import javax.faces.FactoryFinder;
import javax.faces.el.ValueBinding;
import javax.faces.application.ApplicationFactory;
import javax.faces.component.UIViewRoot;
import javax.faces.component.UIInput;
import javax.faces.context.FacesContext;
import javax.faces.event.PhaseEvent;
import javax.faces.event.PhaseId;
import javax.faces.render.RenderKit;
import javax.faces.render.RenderKitFactory;
import javax.el.ValueExpression;
import junit.framework.TestCase;
import org.apache.myfaces.extensions.validator.core.renderkit.DefaultRenderKitWrapperFactory;
import org.apache.myfaces.extensions.validator.crossval.CrossValidationPhaseListener;
import org.apache.myfaces.extensions.validator.util.TestUtils;
import org.apache.myfaces.extensions.validator.mock.ExtValMockApplicationFactory;
import org.apache.myfaces.shared_impl.config.MyfacesConfig;
import org.apache.shale.test.mock.MockApplication;
import org.apache.shale.test.mock.MockExternalContext;
import org.apache.shale.test.mock.MockFacesContext;
import org.apache.shale.test.mock.MockFacesContextFactory;
import org.apache.shale.test.mock.MockHttpServletRequest;
import org.apache.shale.test.mock.MockHttpServletResponse;
import org.apache.shale.test.mock.MockHttpSession;
import org.apache.shale.test.mock.MockLifecycle;
import org.apache.shale.test.mock.MockLifecycleFactory;
import org.apache.shale.test.mock.MockRenderKit;
import org.apache.shale.test.mock.MockResponseWriter;
import org.apache.shale.test.mock.MockServletConfig;
import org.apache.shale.test.mock.MockServletContext;
import org.apache.shale.test.el.MockExpressionFactory;
/**
* Abstract Shale Test base class, which sets up the JSF environment. If the test
* overrides <code>setUp()</code> and/or <code>tearDown()</code>, then those
* methods but call the overwitten method to insure a valid test environment.
*/
public class AbstractExValViewControllerTestCase extends TestCase
{
protected MockApplication application;
protected MockServletConfig config;
protected MockExternalContext externalContext;
protected MockFacesContext facesContext;
protected MockFacesContextFactory facesContextFactory;
protected MockLifecycle lifecycle;
protected MockLifecycleFactory lifecycleFactory;
protected RenderKit renderKit;
protected MockHttpServletRequest request;
protected MockHttpServletResponse response;
protected MockServletContext servletContext;
protected MockHttpSession session;
protected MockExpressionFactory expressionFactory;
private ClassLoader threadContextClassLoader;
/** Response Writer */
private MockResponseWriter writer;
/**
* Construct a new instance of the test.
*
* @param name Name of the test.
*/
public AbstractExValViewControllerTestCase(String name)
{
super(name);
application = null;
config = null;
externalContext = null;
facesContext = null;
facesContextFactory = null;
lifecycle = null;
lifecycleFactory = null;
renderKit = null;
request = null;
response = null;
servletContext = null;
session = null;
expressionFactory = null;
threadContextClassLoader = null;
}
/**
* Setup the test environment, including the following:
* <ul>
* <li>Set the Application Map.</li>
* <li>Set a response writer</li>
* <li>Add Tomahawk's renderers to the faces context.</li>
* </ul>
*/
protected void setUp() throws Exception
{
threadContextClassLoader = Thread.currentThread().getContextClassLoader();
Thread.currentThread().setContextClassLoader(new URLClassLoader(new URL[0], getClass().getClassLoader()));
servletContext = new MockServletContext();
//for testing the fallback
//servletContext.addInitParameter(ExtValInformation.WEBXML_PARAM_PREFIX + ".DEACTIVATE_EL_RESOLVER", "true");
config = new MockServletConfig(servletContext);
session = new MockHttpSession();
session.setServletContext(servletContext);
request = new MockHttpServletRequest(session);
request.setServletContext(servletContext);
response = new MockHttpServletResponse();
FactoryFinder.releaseFactories();
FactoryFinder.setFactory("javax.faces.application.ApplicationFactory", ExtValMockApplicationFactory.class.getName());
FactoryFinder.setFactory("javax.faces.context.FacesContextFactory", "org.apache.shale.test.mock.MockFacesContextFactory");
FactoryFinder.setFactory("javax.faces.lifecycle.LifecycleFactory", "org.apache.shale.test.mock.MockLifecycleFactory");
FactoryFinder.setFactory("javax.faces.render.RenderKitFactory", "org.apache.shale.test.mock.MockRenderKitFactory");
externalContext = new MockExternalContext(servletContext, request, response);
lifecycleFactory = (MockLifecycleFactory)FactoryFinder.getFactory("javax.faces.lifecycle.LifecycleFactory");
lifecycle = (MockLifecycle)lifecycleFactory.getLifecycle("DEFAULT");
facesContextFactory = (MockFacesContextFactory)FactoryFinder.getFactory("javax.faces.context.FacesContextFactory");
facesContext = (MockFacesContext)facesContextFactory.getFacesContext(servletContext, request, response, lifecycle);
externalContext = (MockExternalContext)facesContext.getExternalContext();
UIViewRoot root = new UIViewRoot();
root.setViewId("/viewId");
root.setRenderKitId("HTML_BASIC");
facesContext.setViewRoot(root);
ApplicationFactory applicationFactory = (ApplicationFactory)FactoryFinder.getFactory("javax.faces.application.ApplicationFactory");
application = (MockApplication)applicationFactory.getApplication();
facesContext.setApplication(application);
RenderKitFactory renderKitFactory = (RenderKitFactory)FactoryFinder.getFactory("javax.faces.render.RenderKitFactory");
//Wrap renderers with proper exval wrapper
renderKit = new DefaultRenderKitWrapperFactory().create(new MockRenderKit());
renderKitFactory.addRenderKit("HTML_BASIC", renderKit);
// additional setup not provided automatically by the shale mock stuff
facesContext.getExternalContext().getApplicationMap().put(
MyfacesConfig.class.getName(), new MyfacesConfig());
writer = new MockResponseWriter(new StringWriter(), null, null);
facesContext.setResponseWriter(writer);
TestUtils.addDefaultRenderers(facesContext);
TestUtils.addDefaultValidators(facesContext);
expressionFactory = (MockExpressionFactory)application.getExpressionFactory();
new PropertyValidationModuleStartupListener().init();
}
/**
* Tear down the test environment.
*/
protected void tearDown() throws Exception
{
application = null;
config = null;
externalContext = null;
facesContext.release();
facesContext = null;
lifecycle = null;
lifecycleFactory = null;
renderKit = null;
request = null;
response = null;
servletContext = null;
session = null;
FactoryFinder.releaseFactories();
Thread.currentThread().setContextClassLoader(threadContextClassLoader);
expressionFactory = null;
threadContextClassLoader = null;
}
protected void processCrossValValidation()
{
new CrossValidationPhaseListener().afterPhase(new PhaseEvent((FacesContext)facesContext,PhaseId.ANY_PHASE,lifecycle));
}
protected void checkMessageCount(int expected)
{
int actual = 0;
for(Iterator messages = facesContext.getMessages(); messages.hasNext();)
{
messages.next();
actual++;
}
assertEquals("Complete message count", expected, actual);
}
protected void checkMessageCount(String clientId, int expected)
{
int actual = 0;
for(Iterator messages = facesContext.getMessages(clientId); messages.hasNext();)
{
messages.next();
actual++;
}
assertEquals("Complete message count", expected, actual);
}
/**
* Verify the following:
* <ul>
* <li>id is not null</li>
* <li>Response is complete</li>
* <li>Responce contains the id</li>
* </ul>
*
* @param id ID to verify
*/
protected void assertIdExists(String id)
{
assertNotNull("ID is not null", id);
assertTrue("Response Complete", facesContext.getResponseComplete());
String output = writer.getWriter().toString();
assertNotNull("Has output", output);
assertTrue("Contains id '" + id + "'", output.indexOf(id) != -1);
}
protected void createValueBinding(UIInput uiInput, String name, String expression)
{
ValueBinding valueBinding = application.createValueBinding(expression);
ValueExpression valueExpression = expressionFactory.createValueExpression(
facesContext.getELContext(), expression, Object.class);
if(uiInput != null)
{
uiInput.setValueBinding(name, valueBinding);
uiInput.setValueExpression(name, valueExpression);
}
}
}