org.jboss.arquillian.graphene.configuration.GrapheneConfigurator Maven / Gradle / Ivy
The newest version!
/**
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat, Inc. and individual contributors
* by the @authors tag. See the copyright.txt 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.arquillian.graphene.configuration;
import org.jboss.arquillian.config.descriptor.api.ArquillianDescriptor;
import org.jboss.arquillian.core.api.Event;
import org.jboss.arquillian.core.api.InstanceProducer;
import org.jboss.arquillian.core.api.annotation.Inject;
import org.jboss.arquillian.core.api.annotation.Observes;
import org.jboss.arquillian.drone.api.annotation.Default;
import org.jboss.arquillian.graphene.spi.configuration.GrapheneConfiguration;
import org.jboss.arquillian.graphene.spi.configuration.GrapheneConfigured;
import org.jboss.arquillian.graphene.spi.configuration.GrapheneUnconfigured;
import org.jboss.arquillian.test.spi.annotation.ClassScoped;
import org.jboss.arquillian.test.spi.event.suite.AfterClass;
import org.jboss.arquillian.test.spi.event.suite.BeforeClass;
/**
* @author Jan Papousek
* @author Karel Piwko
*/
public class GrapheneConfigurator {
@Inject
@ClassScoped
private InstanceProducer configuration;
@Inject
private Event configuredEvent;
@Inject
private Event unconfiguredEvent;
// graphene has to be configured before the drone factory creates the webdriver
public void configureGraphene(@Observes(precedence=100) BeforeClass event, ArquillianDescriptor descriptor) {
GrapheneConfiguration c = new GrapheneConfiguration();
c.configure(descriptor, Default.class).validate();
this.configuration.set(c);
this.configuredEvent.fire(new GrapheneConfigured(c));
}
// configuration has to be dropped after the drone factory destroy the webdriver
public void unconfigureGraphene(@Observes(precedence=-100) AfterClass event) {
unconfiguredEvent.fire(new GrapheneUnconfigured(this.configuration.get()));
}
}