/* * JBoss, Home of Professional Open Source. * Copyright 2011, Red Hat, Inc., and individual contributors * as indicated by the @author tags. See the copyright.txt file in the * distribution for a full listing of individual contributors. * * This is free software; you can redistribute it and/or modify it * under the terms of the GNU Lesser General Public License as * published by the Free Software Foundation; either version 2.1 of * the License, or (at your option) any later version. * * This software is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this software; if not, write to the Free * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA, or see the FSF site: http://www.fsf.org. */ package org.jboss.as.test.compat.jpa.eclipselink; import static org.junit.Assume.assumeTrue; import javax.naming.InitialContext; import javax.naming.NamingException; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; import org.jboss.shrinkwrap.api.Archive; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.StringAsset; import org.jboss.shrinkwrap.api.spec.EnterpriseArchive; import org.jboss.shrinkwrap.api.spec.JavaArchive; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; /** * @author Scott Marlow */ @RunWith(Arquillian.class) public class EclipseLinkSharedModuleProviderTestCase { private static final String ARCHIVE_NAME = "toplink_module_test"; private static final String persistence_xml = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> " + "<persistence xmlns=\"http://java.sun.com/xml/ns/persistence\" version=\"1.0\">" + " <persistence-unit name=\"hibernate3_pc\">" + "<provider>org.eclipse.persistence.jpa.PersistenceProvider</provider>"+ " <description>TopLink Persistence Unit." + " </description>" + " <jta-data-source>java:jboss/datasources/ExampleDS</jta-data-source>" + " <properties>" + " <property name=\"jboss.as.jpa.providerModule\" value=\"org.eclipse.persistence:test\"/>" + " <property name=\"eclipselink.ddl-generation\" value=\"drop-and-create-tables\"/>"+ " </properties>" + " </persistence-unit>" + "</persistence>"; @ArquillianResource private static InitialContext iniCtx; @BeforeClass public static void beforeClass() throws NamingException { iniCtx = new InitialContext(); } @Deployment public static Archive<?> deploy() throws Exception { EnterpriseArchive ear = ShrinkWrap.create(EnterpriseArchive.class, ARCHIVE_NAME + ".ear"); JavaArchive lib = ShrinkWrap.create(JavaArchive.class, "beans.jar"); lib.addClasses(SFSB1.class); ear.addAsModule(lib); lib = ShrinkWrap.create(JavaArchive.class, "entities.jar"); lib.addClasses(Employee.class); lib.addAsManifestResource(new StringAsset(persistence_xml), "persistence.xml"); ear.addAsLibraries(lib); final WebArchive main = ShrinkWrap.create(WebArchive.class, "main.war"); main.addClasses(EclipseLinkSharedModuleProviderTestCase.class); ear.addAsModule(main); return ear; } protected static <T> T lookup(String beanName, Class<T> interfaceType) throws NamingException { try { return interfaceType.cast(iniCtx.lookup("java:global/" + ARCHIVE_NAME + "/" + "beans/" + beanName + "!" + interfaceType.getName())); } catch (NamingException e) { throw e; } } @Test public void testSimpleCreateAndLoadEntities() throws Exception { assumeTrue(System.getSecurityManager() == null); // ignore test if System.getSecurityManager() returns non-null SFSB1 sfsb1 = lookup("SFSB1", SFSB1.class); sfsb1.createEmployee("Kelly Smith", "Watford, England", 10); sfsb1.createEmployee("Alex Scott", "London, England", 20); sfsb1.getEmployeeNoTX(10); sfsb1.getEmployeeNoTX(20); } }