org.jboss.arquillian.drone.webdriver.augmentation.AugmentingEnhancer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arquillian-drone-webdriver Show documentation
Show all versions of arquillian-drone-webdriver Show documentation
Extension for functional testing based on web view layer (Ajocado, Selenium, WebDriver)
/*
* JBoss, Home of Professional Open Source
* Copyright 2013, Red Hat Middleware LLC, 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.arquillian.drone.webdriver.augmentation;
import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.logging.Level;
import java.util.logging.Logger;
import org.jboss.arquillian.drone.spi.DroneInstanceEnhancer;
import org.jboss.arquillian.drone.spi.InstanceOrCallableInstance;
import org.jboss.arquillian.drone.webdriver.factory.remote.reusable.ReusableRemoteWebDriver;
import org.jboss.arquillian.drone.webdriver.spi.DroneAugmented;
import org.openqa.selenium.Capabilities;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.remote.Augmenter;
import org.openqa.selenium.remote.AugmenterProvider;
import org.openqa.selenium.remote.DesiredCapabilities;
import org.openqa.selenium.remote.ExecuteMethod;
import org.openqa.selenium.remote.InterfaceImplementation;
import org.openqa.selenium.remote.RemoteWebDriver;
/**
* Augments {@link RemoteWebDriver} instances so that it implements all interfaces determined by provided {@link Capabilities}.
*
* @author Lukas Fryc
*/
public class AugmentingEnhancer implements DroneInstanceEnhancer {
private static final Logger logger = Logger.getLogger(AugmentingEnhancer.class.getName());
public static final String DRONE_AUGMENTED = "droneAugmented";
/**
* Augmenter instance which is able to handle invocations of {@link DroneAugmented} interface
*/
private final Augmenter augmenter = new Augmenter() {
{
addDriverAugmentation(DRONE_AUGMENTED, new AugmenterProvider() {
@Override
public Class> getDescribedInterface() {
return DroneAugmented.class;
}
@Override
public InterfaceImplementation getImplementation(Object value) {
return new DroneAugmentedImpl((RemoteWebDriver) value);
}
});
}
// This changes Augmenter behavior to support ReusableRemoteWebDriver
// see http://code.google.com/p/selenium/issues/detail?id=7089
@Override
protected RemoteWebDriver extractRemoteWebDriver(WebDriver driver) {
if (driver.getClass() == RemoteWebDriver.class
// here we allow enhancing by both CGLib and Mockito
|| driver.getClass().getName().startsWith("org.openqa.selenium.remote.RemoteWebDriver$$Enhancer")
|| driver instanceof ReusableRemoteWebDriver) {
return (RemoteWebDriver) driver;
} else {
logger.log(Level.WARNING,
"Augmenter should be applied to (Reusable)RemoteWebDriver instances or previously augmented instances only, but it was {0}", driver.getClass().getName());
return null;
}
}
};
@Override
public int getPrecedence() {
return 0;
}
@Override
public boolean canEnhance(InstanceOrCallableInstance instance, Class> droneType, Class extends Annotation> qualifier) {
if (RemoteWebDriver.class == droneType || ReusableRemoteWebDriver.class == droneType) {
return true;
}
Class> realInstanceClass = instance.asInstance(droneType).getClass();
if (RemoteWebDriver.class == realInstanceClass || ReusableRemoteWebDriver.class == realInstanceClass
|| DroneAugmented.class.isAssignableFrom(realInstanceClass)) {
return true;
}
return false;
}
/**
* Augments the instance
*/
@Override
public RemoteWebDriver enhance(RemoteWebDriver instance, Class extends Annotation> qualifier) {
RemoteWebDriver enhanced = (RemoteWebDriver) augmenter.augment(instance);
return enhanced;
}
/**
* Unwraps the instance
*/
@Override
public RemoteWebDriver deenhance(RemoteWebDriver enhancedInstance, Class extends Annotation> qualifier) {
if (enhancedInstance instanceof DroneAugmented) {
RemoteWebDriver original = (RemoteWebDriver) ((DroneAugmented) enhancedInstance).getWrapped();
Capabilities capabilities = enhancedInstance.getCapabilities();
if (capabilities != null) {
((DesiredCapabilities) enhancedInstance.getCapabilities()).setCapability(DRONE_AUGMENTED, Boolean.FALSE);
}
return original;
}
return enhancedInstance;
}
/**
* Implements {@link DroneAugmented} interfaces which allows unwrapping of an augmented instance
*/
private class DroneAugmentedImpl implements InterfaceImplementation {
private transient RemoteWebDriver original;
DroneAugmentedImpl(RemoteWebDriver original) {
this.original = original;
}
@Override
public Object invoke(ExecuteMethod executeMethod, Object self, Method method, Object... args) {
return original;
}
}
}