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

org.primefaces.extensions.arquillian.AbstractPrimePageTest Maven / Gradle / Ivy

Go to download

PrimeFaces testing support based on Selenium, Arquillian, Arquillian Graphene and the concept of page ojects / fragements.

The newest version!
/**
 * Copyright 2011-2019 PrimeFaces Extensions
 *
 * 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.primefaces.extensions.arquillian;

import java.net.MalformedURLException;
import org.jboss.arquillian.container.test.api.RunAsClient;
import org.jboss.arquillian.drone.api.annotation.Drone;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.junit.Assert;
import org.junit.runner.RunWith;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

import java.net.URL;
import org.jboss.arquillian.graphene.page.Location;

@RunWith(Arquillian.class)
@RunAsClient
public abstract class AbstractPrimePageTest {

    @Drone
    protected WebDriver webDriver;

    @ArquillianResource
    protected URL contextPath;

    protected void assertPresent(WebElement element) {
        if (!PrimeGraphene.isElementPresent(element)) {
            Assert.fail("Element should be present!");
        }
    }

    protected void assertNotPresent(WebElement element) {
        if (PrimeGraphene.isElementPresent(element)) {
            Assert.fail("Element should not be present!");
        }
    }

    protected void assertDisplayed(WebElement element) {
        if (!PrimeGraphene.isElementDisplayed(element)) {
            Assert.fail("Element should be displayed!");
        }
    }

    protected void assertNotDisplayed(WebElement element) {
        if (PrimeGraphene.isElementDisplayed(element)) {
            Assert.fail("Element should not be displayed!");
        }
    }

    protected void assertEnabled(WebElement element) {
        if (!PrimeGraphene.isElementEnabled(element)) {
            Assert.fail("Element should be enabled!");
        }
    }

    protected void assertNotEnabled(WebElement element) {
        if (PrimeGraphene.isElementEnabled(element)) {
            Assert.fail("Element should not be enabled!");
        }
    }

    protected void assertDisabled(WebElement element) {
        if (PrimeGraphene.isElementEnabled(element)) {
            Assert.fail("Element should be disabled!");
        }
    }

    protected void assertNotDisabled(WebElement element) {
        if (!PrimeGraphene.isElementEnabled(element)) {
            Assert.fail("Element should not be disabled!");
        }
    }

    protected void assertIsAt(AbstractPrimePage page) {
        assertIsAt(page.getLocation());
    }

    protected void assertIsAt(Class pageClass) {
        Location location = pageClass.getAnnotation(Location.class);
        if (location == null) {
            Assert.fail("Class doesn't have " + Location.class.getName() + " annotation");
            return;
        }

        assertIsAt(location.value());
    }

    protected void assertIsAt(String relativePath) {
        String fullPath = contextPath.getPath() + relativePath;

        try {
            URL url = new URL(webDriver.getCurrentUrl());
            Assert.assertEquals(fullPath, url.getPath());
        }
        catch (MalformedURLException e) {
            throw new IllegalStateException("Malformed url: " + webDriver.getCurrentUrl(), e);
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy