org.jboss.arquillian.ajocado.framework.SystemPropertiesConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of graphene-selenium-impl Show documentation
Show all versions of graphene-selenium-impl Show documentation
Testing Ajax with flavour of sexy type-safe API
/**
* JBoss, Home of Professional Open Source
* Copyright 2011, 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.ajocado.framework;
import static org.jboss.arquillian.ajocado.utils.PrimitiveUtils.asBoolean;
import static org.jboss.arquillian.ajocado.utils.PrimitiveUtils.asInteger;
import static org.jboss.arquillian.ajocado.utils.PrimitiveUtils.asLong;
import org.jboss.arquillian.ajocado.browser.Browser;
import org.jboss.arquillian.core.spi.Validate;
/**
* Exposing of test system properties.
*
* @author Lukas Fryc
* @version $Revision$
*/
@SuppressWarnings("deprecation")
public class SystemPropertiesConfiguration implements GrapheneConfiguration, AjocadoConfiguration {
private static final long serialVersionUID = -660236743676985887L;
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.GrapheneConfiguration#getBrowser()
*/
@Override
public Browser getBrowser() {
String browser = System.getProperty("browser", "*firefox");
Validate.notNull(browser, "browser system property should be set");
return new Browser(browser);
}
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.GrapheneConfiguration#getSeleniumHost()
*/
@Override
public String getSeleniumHost() {
String seleniumHost = System.getProperty("selenium.host", "localhost");
Validate.notNull(seleniumHost, "selenium.host system property should be set");
return seleniumHost;
}
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.GrapheneConfiguration#getSeleniumPort()
*/
@Override
public int getSeleniumPort() {
String seleniumPort = System.getProperty("selenium.port", "4444");
Validate.notNull(seleniumPort, "selenium.port system property should be set");
return asInteger(seleniumPort);
}
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.GrapheneConfiguration#isSeleniumMaximize()
*/
@Override
public boolean isSeleniumMaximize() {
return asBoolean(System.getProperty("selenium.maximize", "false"));
}
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.GrapheneConfiguration#isSeleniumDebug()
*/
@Override
public boolean isSeleniumDebug() {
return asBoolean(System.getProperty("selenium.debug", "false"));
}
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.GrapheneConfiguration#getSeleniumSpeed()
*/
@Override
public int getSeleniumSpeed() {
return asInteger(System.getProperty("selenium.speed", "0"));
}
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.GrapheneConfiguration#isSeleniumNetworkTrafficEnabled()
*/
@Override
public boolean isSeleniumNetworkTrafficEnabled() {
return asBoolean(System.getProperty("selenium.network.traffic", "false"));
}
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.GrapheneConfiguration#getSeleniumTimeout(org.jboss.arquillian.ajocado.
* GrapheneConfigurationImpl.SeleniumTimeoutType)
*/
@Override
public long getTimeout(TimeoutType type) {
Validate.notNull(type, "type should not be null");
String seleniumTimeout = System.getProperty("selenium.timeout." + type.toString().toLowerCase());
if (seleniumTimeout == null) {
return type.getDefaultTimeout();
}
return asLong(seleniumTimeout);
}
/*
* (non-Javadoc)
*
* @see org.jboss.arquillian.ajocado.framework.GrapheneConfiguration#getStartParameters()
*/
@Override
public String getStartParameters() {
return System.getProperty("selenium.start.parameters", null);
}
}