/** * 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 javax.naming.InitialContext; import java.util.Properties; public class CmpTestSuite extends org.apache.openejb.test.FilteredTestSuite { public CmpTestSuite() { 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()); } public static junit.framework.Test suite() { return new CmpTestSuite(); } /** * Sets up the fixture, for example, open a network connection. * This method is called before a test is executed. */ protected void setUp() throws Exception { final Properties props = TestManager.getServer().getContextEnvironment(); //props.put(Context.SECURITY_PRINCIPAL, "ENTITY_TEST_CLIENT"); //props.put(Context.SECURITY_CREDENTIALS, "ENTITY_TEST_CLIENT"); final 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(); } }