Package org.apache.myfaces.mc.test.core

Source Code of org.apache.myfaces.mc.test.core.AbstractMyFacesFaceletsTestCase

/*
* 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.mc.test.core;

import javax.faces.FactoryFinder;
import javax.faces.component.UIViewRoot;
import javax.faces.view.ViewDeclarationLanguageFactory;

/**
* <p>Abstract JUnit test case base class, which provide a var called vdl, that
* can be used to build facelet views calling for example:</p>
* <p>vdl.buildView(facesContext, facesContext.getViewRoot(), "/hello.xhtml");</p>
* <p>It already set up a request.</p>
*
* @author Leonardo Uribe
*
*/
public abstract class AbstractMyFacesFaceletsTestCase extends AbstractMyFacesRequestTestCase
{
    @Override
    public void setUp() throws Exception
    {
        super.setUp();
       
        setupFaceletRequest();

        setUpVDL();
    }
   
    protected void setUpVDL() throws Exception
    {
        ViewDeclarationLanguageFactory vdlFactory = (ViewDeclarationLanguageFactory) FactoryFinder.getFactory(FactoryFinder.VIEW_DECLARATION_LANGUAGE_FACTORY);
        vdl = (MockMyFacesFaceletViewDeclarationLanguage) vdlFactory.getViewDeclarationLanguage("/a.xhtml");
    }
   
    protected void setupFaceletRequest() throws Exception
    {
        setupRequest();
        // Create a new UIViewRoot to work with it later
        UIViewRoot root = new UIViewRoot();
        root.setViewId("/test");
        root.setRenderKitId("HTML_BASIC");
        facesContext.setViewRoot(root);
    }

    @Override
    public void tearDown() throws Exception
    {
        tearDownRequest();
       
        super.tearDown();
    }
   
    protected MockMyFacesFaceletViewDeclarationLanguage vdl;
}
TOP

Related Classes of org.apache.myfaces.mc.test.core.AbstractMyFacesFaceletsTestCase

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.