Package org.apache.openejb.test.entity.cmp

Source Code of org.apache.openejb.test.entity.cmp.CmpLocalTestSuite

/**
* 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.openejb.test.entity.cmp;

import org.apache.openejb.test.TestManager;
import org.apache.openejb.test.entity.cmp2.EjbqlLocalTest;

import javax.naming.InitialContext;
import java.util.Properties;

/**
* @author <a href="mailto:david.blevins@visi.com">David Blevins</a>
* @author <a href="mailto:Richard@Monson-Haefel.com">Richard Monson-Haefel</a>
*/
public class CmpLocalTestSuite extends org.apache.openejb.test.FilteredTestSuite {

    public CmpLocalTestSuite() {
        super();
        this.addTest(new CmpJndiTests());
        this.addTest(new CmpHomeIntfcTests());
        this.addTest(new CmpEjbHomeTests());
        this.addTest(new CmpEjbObjectTests());
        this.addTest(new CmpRemoteIntfcTests());
        this.addTest(new CmpHomeHandleTests());
        this.addTest(new CmpHandleTests());
        this.addTest(new CmpEjbMetaDataTests());
        this.addTest(new CmpAllowedOperationsTests());
        this.addTest(new CmpJndiEncTests());
        this.addTest(new CmpContextLookupTests());
        this.addTest(new CmpRmiIiopTests());

        this.addTest(new ComplexHomeIntfcTests());
        this.addTest(new ComplexEjbHomeTests());
        this.addTest(new ComplexEjbObjectTests());
        this.addTest(new ComplexRemoteIntfcTests());
        this.addTest(new ComplexHomeHandleTests());
        this.addTest(new ComplexHandleTests());
        this.addTest(new ComplexEjbMetaDataTests());

        this.addTest(new UnknownHomeIntfcTests());
        this.addTest(new UnknownEjbHomeTests());
        this.addTest(new UnknownEjbObjectTests());
        this.addTest(new UnknownRemoteIntfcTests());
        this.addTest(new UnknownHomeHandleTests());
        this.addTest(new UnknownHandleTests());
        this.addTest(new UnknownEjbMetaDataTests());

        this.addTest(new EjbqlLocalTest());
    }

    public static junit.framework.Test suite() {
        return new CmpLocalTestSuite();
    }

    /**
     * Sets up the fixture, for example, open a network connection.
     * This method is called before a test is executed.
     */
    protected void setUp() throws Exception {
        Properties props = TestManager.getServer().getContextEnvironment();
        //props.put(Context.SECURITY_PRINCIPAL, "ENTITY_TEST_CLIENT");
        //props.put(Context.SECURITY_CREDENTIALS, "ENTITY_TEST_CLIENT");
        InitialContext initialContext = new InitialContext(props);

        /*[2] Create database table */
        TestManager.getDatabase().createEntityTable();
    }

    /**
     * Tears down the fixture, for example, close a network connection.
     * This method is called after a test is executed.
     */
    protected void tearDown() throws Exception {
        /*[1] Drop database table */
        TestManager.getDatabase().dropEntityTable();
    }
}
TOP

Related Classes of org.apache.openejb.test.entity.cmp.CmpLocalTestSuite

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.