Package org.apache.jetspeed.test

Source Code of org.apache.jetspeed.test.HeadlessBaseTest

/*
* Copyright 2000-2001,2004 The Apache Software Foundation.
*
* Licensed 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.jetspeed.test;

import java.io.File;
import java.io.FileReader;

import junit.framework.AssertionFailedError;
import junit.framework.TestResult;

import org.apache.commons.configuration.Configuration;
import org.apache.commons.configuration.PropertiesConfiguration;
import org.apache.commons.lang.exception.NestableRuntimeException;
import org.apache.jetspeed.om.profile.PSMLDocument;
import org.apache.jetspeed.om.profile.Portlets;
import org.apache.jetspeed.services.PsmlManager;
import org.apache.turbine.util.StringUtils;
import org.apache.turbine.util.TurbineConfig;
import org.exolab.castor.mapping.Mapping;

/**
* @author <a href="mailto:sweaver@rippe.com">Scott Weaver</a>
*
* Base abstract class for running Jetspeed (Turbine) in headles-mode
* i.e. without a servlet container.
* @version $Id: HeadlessBaseTest.java,v 1.1 2004/04/07 22:02:41 jford Exp $
*/
public abstract class HeadlessBaseTest extends JetspeedTestCase
{
   
    public static final String WEBAPP_PATH = "webapp.path";
    public static final String TR_PROPS_PATH = "tr.props.path";
    public static final String TEST_CONF_RES = "org/apache/jetspeed/test/jetspeed_testconfig.properties";
    public static final String PSML_MAPPING = "psml.mapping";
    public static final String DIVIDER = "+=============================================================================+";
    //public static final String  TEST_CONF_RES = "jetspeed_testconfig.properties";
   
   
    /*
    Configuration object to run Turbine outside a servlet container
    ( uses turbine.properties )
    */
    private static TurbineConfig config = null;
    private static final PropertiesConfiguration testConfig = new PropertiesConfiguration();
   
    protected TestResult testResult;


   
    public HeadlessBaseTest( String name)
    {
        super(name);
    }

    /**
     * Returns the Configuration object that holds testing values
     * @return PropertiesConfiguration
     */
    public static Configuration getTestConfig()
    {
        return testConfig;
    }
   
   
        /**
     * @see junit.framework.Test#run(TestResult)
     */
    public void run(TestResult result)
    {
        result.startTest(this);
        try
        {
            setUp();
        }
        catch (Exception e)
        {
            throw new NestableRuntimeException("Error running TestCase setUp().", e);
        }
        try
        {
            runTest();
        }
        catch (AssertionFailedError e)
        { //1
            result.addFailure(this, e);
        }

        catch (Throwable e)
        { // 2
            result.addError(this, e);
        }
        finally
        {
            try
            {
                tearDown();
            }
            catch (Exception e)
            {
                throw new NestableRuntimeException("Error running TestCase tearDown().", e);
            }
        }
    }
   



    /**
     * @see junit.framework.TestCase#setUp()
     *
     * Sets up TurbineConfig using the system property:
     *  <pre>turbine.properties</pre>
     */
   
    protected void setUp() throws Exception
    {
        try
        {
            // Only set it up once per class loader
            if(testConfig == null || config == null)
            {
                ClassLoader cl = Thread.currentThread().getContextClassLoader();
                System.out.println(cl.getResource(TEST_CONF_RES));
                testConfig.load(cl.getResourceAsStream(TEST_CONF_RES));
                System.out.println(testConfig.getString(WEBAPP_PATH));
                File webappUrl = new File(testConfig.getString(WEBAPP_PATH));
                System.out.println(webappUrl);
                //System.out.println("webapp found "+webappUrl.exists());
                config = new TurbineConfig(webappUrl.getPath(), testConfig.getString(TR_PROPS_PATH));
                config.init();
            }
        }
        catch (Throwable e)
        {
            fail(StringUtils.stackTrace(e));
        }       
       
        super.setUp();
    }
   
    public PSMLDocument getDocumentFromPath(String psmlFile)
    {
        print("Loading portlets from PSML file "+psmlFile);
     
        Portlets rootset = null;
           
        PSMLDocument doc = PsmlManager.getDocument(psmlFile);       
        rootset = doc.getPortlets();
       
         return doc;
    }
   
    public void saveDocument(PSMLDocument doc)
    {
        PsmlManager.saveDocument(doc);
    }
   
   
    public void savePortletsToPSML(String psmlFile, Portlets portlets)
    {
        print("Storing portlets to PSML file "+psmlFile);
     
        Mapping mapping = null;
        String mapFile = getProfileMappingFileName();
        print("Locating PSML file "+mapFile+"...");
        File map = new File(mapFile);
        print("PSML file exists????: "+map.exists());
        Portlets rootset = null;
        FileReader reader = null;
        if (map.exists() && map.isFile() && map.canRead())
        {
               
                try
                {
                }
                catch(Exception e)
                {
                }
        }
    }
   
    protected void print(Object obj)
    {
        if(testConfig.getBoolean("verbose"))
            System.out.println("+ "+obj);
    }
   
    protected void printOk()
    {
   
            print("OK");
       
    }
   
     protected void printOk(String linePrefix)
    {
   
            print(linePrefix+"OK");
   
    }
   
    protected void printDivider()
    {
        if(testConfig.getBoolean("verbose"))
          System.out.println(DIVIDER);       
    }
   
    /**
     * retreives the castor mapping file to use if
     * we need to marshal/unmarshal profiles
     */
    protected String getProfileMappingFileName()
    {
        return testConfig.getString(PSML_MAPPING);
    }

}
TOP

Related Classes of org.apache.jetspeed.test.HeadlessBaseTest

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.