be.rubus.web.jerry.validation.MaxSizeTest.java Source code

Java tutorial

Introduction

Here is the source code for be.rubus.web.jerry.validation.MaxSizeTest.java

Source

/*
 * Copyright 2014-2016 Rudy De Busscher
 *
 * 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 be.rubus.web.jerry.validation;

import be.rubus.web.jerry.util.MavenDependencyUtil;
import be.rubus.web.jerry.view.DescriptionBean;
import be.rubus.web.jerry.view.MaxSizeBean;
import org.jboss.arquillian.container.test.api.Deployment;
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.jboss.shrinkwrap.api.ShrinkWrap;
import org.jboss.shrinkwrap.api.asset.EmptyAsset;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.openqa.selenium.By;
import org.openqa.selenium.WebDriver;
import org.openqa.selenium.WebElement;

import java.net.URL;

import static org.assertj.core.api.Assertions.assertThat;

/**
 * Valerie test
 */
@RunWith(Arquillian.class)
public class MaxSizeTest {

    private static final String ARCHIVE_NAME = "maxSizeTest";
    @Drone
    private WebDriver driver;

    @ArquillianResource
    private URL contextPath;

    @Deployment
    public static WebArchive deploy() {

        return ShrinkWrap.create(WebArchive.class, ARCHIVE_NAME + ".war")
                // We don't do transitive dependencies, so manually adding them
                .addAsLibraries(MavenDependencyUtil.valerieFiles())
                .addAsLibraries(MavenDependencyUtil.valeriePrimeFacesFiles())
                .addAsLibraries(MavenDependencyUtil.jerryFiles())
                .addAsLibraries(MavenDependencyUtil.primeFacesFiles()).addClass(MaxSizeBean.class)
                .addClass(DescriptionBean.class).addAsWebInfResource("default/WEB-INF/web.xml", "web.xml")
                .addAsWebResource("maxSize.xhtml", "maxSize.xhtml")
                .addAsWebResource("maxSize_TextArea.xhtml", "maxSize_TextArea.xhtml")
                .addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml");
    }

    @Test
    @RunAsClient
    public void testMaxLength() throws Exception {
        driver.get(new URL(contextPath, "maxSize.xhtml").toString());

        WebElement element = driver.findElement(By.id("test:default"));
        assertThat(element.getAttribute("maxlength")).isNull();

        element = driver.findElement(By.id("test:value"));
        assertThat(element.getAttribute("maxlength")).isNull();

        element = driver.findElement(By.id("test:standard"));
        assertThat(element.getAttribute("maxlength")).isEqualTo("5");

        element = driver.findElement(By.id("test:maxLength"));
        assertThat(element.getAttribute("maxlength")).isEqualTo("5");

        element = driver.findElement(By.id("test:special"));
        assertThat(element.getAttribute("maxlength")).isEqualTo("7");

    }

    @Test
    @RunAsClient
    public void testMaxLength_TextArea() throws Exception {
        driver.get(new URL(contextPath, "maxSize_TextArea.xhtml").toString());

        WebElement element = driver.findElement(By.id("frm:description"));

        WebElement remaining = driver.findElement(By.id("frm:remaining"));
        assertThat(remaining.getText()).contains("10");

        element.sendKeys("abcde");
        assertThat(remaining.getText()).contains("5");

        element.sendKeys("abcdefghijk");
        assertThat(remaining.getText()).contains("0");

        assertThat(element.getAttribute("value")).isEqualTo("abcdeabcde");

    }

}