Package org.apache.jetspeed.components.portletregistry.direct

Source Code of org.apache.jetspeed.components.portletregistry.direct.TestRegistryDirectPart2a

/*
* Copyright 2000-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.components.portletregistry.direct;

import java.util.Iterator;

import junit.framework.Test;
import junit.framework.TestSuite;

import org.apache.jetspeed.cache.PortletCache;
import org.apache.jetspeed.components.portletregistry.AbstractRegistryTest;
import org.apache.jetspeed.factory.JetspeedPortletFactory;
import org.apache.jetspeed.factory.JetspeedPortletFactoryProxy;
import org.apache.pluto.om.portlet.PortletApplicationDefinition;

/**
*
* TestRegistry runs a suite tests creating, updating, retreiving and deleting
* portlet information from the registry.
*
* @author <a href="mailto:weaver@apache.org">Scott T. Weaver </a>
* @version $Id: TestRegistryDirectPart2a.java,v 1.2 2004/10/29 14:06:20 weaver Exp $
*/
public class TestRegistryDirectPart2a extends AbstractRegistryTest
{

    /*
     * (non-Javadoc)
     *
     * @see junit.framework.TestCase#setUp()
     */
    protected void setUp() throws Exception
    {
        super.setUp();
        PortletCache portletCache = new PortletCache();
        try
        {
            new JetspeedPortletFactoryProxy(new JetspeedPortletFactory(portletCache));
        }
        catch (IllegalStateException e)
        {
           
        }
    }

    /*
     * (non-Javadoc)
     *
     * @see junit.framework.TestCase#tearDown()
     */
    protected void tearDown() throws Exception
    {
       
       
       
        Iterator itr = registry.getPortletApplications().iterator();
        while(itr.hasNext())
        {       
            registry.removeApplication((PortletApplicationDefinition)itr.next());
        }
       
       
       
        super.tearDown();
    }

    public static Test suite()
    {
        // All methods starting with "test" will be executed in the test suite.
        return new TestSuite(TestRegistryDirectPart2a.class);
    }

    public void testData() throws Exception
    {
        verifyData(true);
    }
}
TOP

Related Classes of org.apache.jetspeed.components.portletregistry.direct.TestRegistryDirectPart2a

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.