All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.weld.test.harness.AbstractStandaloneContainersImpl Maven / Gradle / Ivy

There is a newer version: 1.2.0.Beta1
Show newest version
/*
 * JBoss, Home of Professional Open Source
 * Copyright 2010, Red Hat, Inc., and individual contributors
 * by the @authors tag. See the copyright.txt in the distribution for a
 * full listing of individual contributors.
 *
 * 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 org.jboss.weld.test.harness;

import org.jboss.arquillian.container.weld.ee.embedded_1_1.mock.TestContainer;
import org.jboss.testharness.api.DeploymentException;
import org.jboss.testharness.spi.StandaloneContainers;

import java.net.URL;
import java.util.Collection;
import java.util.logging.Level;
import java.util.logging.Logger;

public abstract class AbstractStandaloneContainersImpl implements StandaloneContainers {

    private static final Logger log = Logger.getLogger(AbstractStandaloneContainersImpl.class.getName());

    private DeploymentException deploymentException;

    private TestContainer testContainer;

    public boolean deploy(Collection> classes, Collection beansXml) {
        this.testContainer = new TestContainer(beansXml, classes);

        try {
            testContainer.startContainer();
        } catch (Exception e) {
            this.deploymentException = new DeploymentException("Error deploying beans", e);
            return false;
        }
        testContainer.ensureRequestActive();
        return true;
    }

    public void deploy(Collection> classes) throws DeploymentException {
        deploy(classes, null);
    }

    public void cleanup() {
        // Np-op

    }

    public void setup() {
        // No-op
    }

    public DeploymentException getDeploymentException() {
        return deploymentException;
    }

    public void undeploy() {
        try {
            testContainer.stopContainer();
        } catch (Exception e) {
            log.log(Level.SEVERE, "Could not shut down container", e);
        }
        testContainer = null;
        deploymentException = null;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy