org.jboss.as.arquillian.container.ServerSetupObserver Maven / Gradle / Ivy
/*
* JBoss, Home of Professional Open Source.
* Copyright 2012, 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.arquillian.container;
import java.lang.reflect.Constructor;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import org.jboss.arquillian.container.spi.Container;
import org.jboss.arquillian.container.spi.event.container.AfterUnDeploy;
import org.jboss.arquillian.container.spi.event.container.BeforeDeploy;
import org.jboss.arquillian.core.api.Instance;
import org.jboss.arquillian.core.api.annotation.Inject;
import org.jboss.arquillian.core.api.annotation.Observes;
import org.jboss.arquillian.test.spi.context.ClassContext;
import org.jboss.arquillian.test.spi.event.suite.AfterClass;
import org.jboss.as.arquillian.api.ServerSetup;
import org.jboss.as.arquillian.api.ServerSetupTask;
import org.jboss.logging.Logger;
/**
* @author Stuart Douglas
*/
public class ServerSetupObserver {
private static final Logger log = Logger.getLogger(ServerSetupObserver.class);
@Inject
private Instance managementClient;
@Inject
private Instance classContextInstance;
private final List setupTasksAll = new ArrayList();
private final List setupTasksInForce = new ArrayList();
private final Map active = new HashMap();
private Map deployed;
boolean afterClassRun = false;
public synchronized void handleBeforeDeployment(@Observes BeforeDeploy event, Container container) throws Throwable {
if (deployed == null) {
deployed = new HashMap();
setupTasksAll.clear();
setupTasksInForce.clear();
afterClassRun = false;
}
if (deployed.containsKey(container.getName())) {
deployed.put(container.getName(), deployed.get(container.getName()) + 1);
} else {
deployed.put(container.getName(), 1);
}
if (active.containsKey(container.getName())) {
return;
}
final ClassContext classContext = classContextInstance.get();
if (classContext == null) {
return;
}
final Class> currentClass = classContext.getActiveId();
final ContainerClassHolder holder = new ContainerClassHolder(container.getName(), currentClass);
ServerSetup setup = currentClass.getAnnotation(ServerSetup.class);
if (setup == null) {
return;
}
final Class extends ServerSetupTask>[] classes = setup.value();
if (setupTasksAll.isEmpty()) {
for (Class extends ServerSetupTask> clazz : classes) {
Constructor extends ServerSetupTask> ctor = clazz.getDeclaredConstructor();
ctor.setAccessible(true);
setupTasksAll.add(ctor.newInstance());
}
} else {
//this should never happen
for (int i = 0; i < setupTasksAll.size(); ++i) {
if (classes[i] != setupTasksAll.get(i).getClass()) {
throw new RuntimeException("Mismatched ServerSetupTask current is " + setupTasksAll + " but " + currentClass + " is expecting " + Arrays.asList(classes));
}
}
}
final ManagementClient client = managementClient.get();
int index = 0;
try {
for (;index> it = deployed.entrySet().iterator();
while (it.hasNext()) {
Map.Entry container = it.next();
if (container.getValue() == 0) {
if (active.containsKey(container.getKey())) {
ManagementClient client = active.get(container.getKey());
for (int i = setupTasksInForce.size() - 1; i >= 0; i--) {
try {
setupTasksInForce.get(i).tearDown(client, container.getKey());
} catch (Exception e) {
log.error("Setup task failed during tear down. Offending class '" + setupTasksAll.get(i) + "'", e);
}
}
active.remove(container.getKey());
it.remove();
}
}
}
afterClassRun = true;
if (deployed.isEmpty()) {
deployed = null;
setupTasksAll.clear();
setupTasksInForce.clear();
afterClassRun = false;
}
}
public synchronized void handleAfterUndeploy(@Observes AfterUnDeploy afterDeploy, final Container container) throws Exception {
if(deployed == null) {
return;
}
int count = deployed.get(container.getName());
deployed.put(container.getName(), --count);
if (count == 0 && afterClassRun) {
for (int i = setupTasksInForce.size() - 1; i >= 0; i--) {
try {
setupTasksInForce.get(i).tearDown(managementClient.get(), container.getName());
} catch (Exception e) {
log.error("Setup task failed during tear down. Offending class '" + setupTasksAll.get(i) + "'", e);
}
}
active.remove(container.getName());
deployed.remove(container.getName());
}
if (deployed.isEmpty()) {
deployed = null;
setupTasksAll.clear();
setupTasksInForce.clear();
afterClassRun = false;
}
}
private static final class ContainerClassHolder {
private final Class> testClass;
private final String name;
private ContainerClassHolder(final String name, final Class> testClass) {
this.name = name;
this.testClass = testClass;
}
@Override
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
final ContainerClassHolder that = (ContainerClassHolder) o;
if (name != null ? !name.equals(that.name) : that.name != null) return false;
if (testClass != null ? !testClass.equals(that.testClass) : that.testClass != null) return false;
return true;
}
@Override
public int hashCode() {
int result = testClass != null ? testClass.hashCode() : 0;
result = 31 * result + (name != null ? name.hashCode() : 0);
return result;
}
}
} © 2015 - 2025 Weber Informatics LLC | Privacy Policy