Package a.org.fakereplace.integration.jbossas.hibernate4.basic.addcolumn

Source Code of a.org.fakereplace.integration.jbossas.hibernate4.basic.addcolumn.Hibernate4AddColumnTestCase

/*
* Copyright 2012, Stuart Douglas, and individual contributors as indicated
* by the @authors tag.
*
* 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 a.org.fakereplace.integration.jbossas.hibernate4.basic.addcolumn;

import javax.naming.InitialContext;
import javax.naming.NamingException;

import a.org.fakereplace.testsuite.shared.RemoteClassReplacer;
import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.container.test.api.RunAsClient;
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.spec.JavaArchive;
import org.junit.Assert;
import org.junit.Test;
import org.junit.runner.RunWith;

/**
* @author Stuart Douglas
*/
@RunWith(Arquillian.class)
@RunAsClient
public class Hibernate4AddColumnTestCase {

    public static final String DEPLOYMENT_NAME = "Hibernate4AddColumnTestCase.jar";

    @Deployment
    public static Archive deploy() {
        return ShrinkWrap.create(JavaArchive.class, DEPLOYMENT_NAME)
                .addClasses(Employee.class, EmployeeEjb.class, RemoteEmployee.class)
                .addAsManifestResource(Hibernate4AddColumnTestCase.class.getPackage(), "persistence.xml", "persistence.xml");
    }

    @ArquillianResource
    private InitialContext initialContext;

    @Test
    public void testAddingColumn() throws NamingException {
        RemoteEmployee ejb = (RemoteEmployee)initialContext.lookup("ejb:/Hibernate4AddColumnTestCase/" + EmployeeEjb.class.getSimpleName() + "!" + RemoteEmployee.class.getName());
        ejb.saveEntity(1);
        Assert.assertEquals("1-name", ejb.getEntityDesc(1));
        final RemoteClassReplacer replacer = new RemoteClassReplacer();
        replacer.queueClassForReplacement(Employee.class, Employee1.class);
        replacer.queueClassForReplacement(EmployeeEjb.class, EmployeeEjb1.class);
        replacer.replaceQueuedClasses(DEPLOYMENT_NAME);
        ejb.saveEntity(2);
        Assert.assertEquals("2-name-address", ejb.getEntityDesc(2));
    }

}
TOP

Related Classes of a.org.fakereplace.integration.jbossas.hibernate4.basic.addcolumn.Hibernate4AddColumnTestCase

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.