Package com.hazelcast.jca

Source Code of com.hazelcast.jca.AbstractDeploymentTest

/*
* Copyright (c) 2008-2013, Hazelcast, Inc. All Rights Reserved.
*
* 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 com.hazelcast.jca;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.asset.EmptyAsset;
import org.jboss.shrinkwrap.api.spec.JavaArchive;
import org.jboss.shrinkwrap.api.spec.ResourceAdapterArchive;

import javax.annotation.Resource;
import java.util.UUID;

import static org.junit.Assert.assertNotNull;

/**
* base class for jca tests
*
* @author asimarslan
*/
public class AbstractDeploymentTest {

    private final static String deploymentName="hazelcast-jca-rar";


//    @Deployment
//    public static JavaArchive createDeployment() {
//        JavaArchive ja = ShrinkWrap.create(JavaArchive.class, UUID.randomUUID().toString() + ".jar");
//        ja.addPackage(JcaBase.class.getPackage());
//        ja.setManifest("MANIFEST.MF");
//        ja.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");
//        return ja;
//    }

    @Deployment
    public static ResourceAdapterArchive deploymentHzRar(){
        ResourceAdapterArchive raa = ShrinkWrap.create(ResourceAdapterArchive.class, deploymentName + ".rar");

        JavaArchive ja = ShrinkWrap.create(JavaArchive.class, UUID.randomUUID().toString() + ".jar");
        ja.addPackage(JcaBase.class.getPackage());
        ja.setManifest("MANIFEST.MF");
//        ja.addAsManifestResource(EmptyAsset.INSTANCE, "beans.xml");

        raa.addAsLibrary(ja);
        raa.addAsManifestResource("ra.xml","ra.xml");
        raa.addAsManifestResource("ironjacamar.xml","ironjacamar.xml");

        return raa;
    }

    @Resource(mappedName = "java:/HazelcastCF")
    protected HazelcastConnectionFactory connectionFactory;

    protected HazelcastConnection getConnection() throws Throwable{
        assertNotNull(connectionFactory);
        HazelcastConnection c = connectionFactory.getConnection();
        assertNotNull(c);
        return c;
    }

}
TOP

Related Classes of com.hazelcast.jca.AbstractDeploymentTest

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.