/** * JBoss, Home of Professional Open Source * Copyright 2012, 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.richfaces.component.placeholder; import static org.jboss.arquillian.graphene.Graphene.guardAjax; import static org.jboss.arquillian.graphene.Graphene.guardHttp; import static org.jboss.arquillian.graphene.Graphene.waitAjax; import static org.jboss.arquillian.graphene.Graphene.waitModel; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import java.awt.Color; import java.net.URL; import org.jboss.arquillian.container.test.api.RunAsClient; import org.jboss.arquillian.drone.api.annotation.Drone; import org.jboss.arquillian.graphene.GrapheneElement; import org.jboss.arquillian.graphene.fragment.Root; import org.jboss.arquillian.junit.Arquillian; import org.jboss.arquillian.test.api.ArquillianResource; import org.junit.Test; import org.junit.runner.RunWith; import org.openqa.selenium.Keys; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.richfaces.arquillian.page.source.SourceChecker; import org.richfaces.utils.ColorUtils; /** * @author <a href="mailto:lfryc@redhat.com">Lukas Fryc</a> * @author <a href="mailto:jstefek@redhat.com">Jiri Stefek</a> */ @RunAsClient @RunWith(Arquillian.class) public abstract class AbstractPlaceholderTest { protected static final Color DEFAULT_PLACEHOLDER_COLOR = new Color(119, 119, 119); protected static final String PLACEHOLDER_TEXT = "Placeholder Text"; protected static final String PLACEHOLDER_CLASS = "rf-plhdr"; protected static final String PLACEHOLDER_ID = "placeholderID"; protected static final String INPUT_ID = "input"; protected static final String INPUT_SELECTOR = "[id=input]"; protected static final String SECOND_INPUT_ID = "second-input"; protected static final String SECOND_INPUT_SELECTOR = "[id=second-input]"; protected static final String EMPTY_STRING = ""; protected static final String TESTED_VALUE = "some value"; @Drone WebDriver browser; @ArquillianResource URL contextPath; @ArquillianResource SourceChecker sourceChecker; @FindBy(css = "[id$=ajaxSubmit]") WebElement a4jSubmitBtn; @FindBy(css = "[id$=httpSubmit]") WebElement httpSubmitBtn; @FindBy(css = "[id$=output]") WebElement output; @FindBy(tagName = "body") WebElement body; @FindBy(id = PLACEHOLDER_ID) GrapheneElement placeholderElement; abstract Input input(); protected Color getDefaultInputColor() { return Color.BLACK; } protected String getTestedValue() { return TESTED_VALUE; } protected String getTestedValueResponse() { return TESTED_VALUE; } @Test public void testConverter() { // having browser.get(contextPath.toExternalForm() + "converter.jsf"); // then assertEquals(PlaceHolderValue.DEFAULT_VALUE, input().getDefaultText()); } @Test public void testDefaultAttributes() { // having browser.get(contextPath.toExternalForm() + "index.jsf"); // then assertEquals(PLACEHOLDER_TEXT, input().getDefaultText()); assertEquals(DEFAULT_PLACEHOLDER_COLOR, input().getTextColor()); assertTrue("placeholder does not contain default class", input().getStyleClass().contains(PLACEHOLDER_CLASS)); } @Test public void testRendered() { // having browser.navigate().to(contextPath.toExternalForm() + "rendered.jsf"); // then assertFalse("Placeholder should not be present.", placeholderElement.isPresent()); } @Test public void testSelector() { // having browser.navigate().to(contextPath.toExternalForm() + "selector.jsf"); // then assertEquals(PLACEHOLDER_TEXT, input().getDefaultText()); } @Test public void testStyleClass() { // having String className = "some-class"; browser.navigate().to(contextPath.toExternalForm() + "index.jsf?styleClass=" + className); // then assertTrue("input should contain placeholder's default class", input().getStyleClass().contains(PLACEHOLDER_CLASS)); assertTrue("input should contain specified class", input().getStyleClass().contains(className)); } @Test public void when_input_with_placeholder_gains_focus_then_placeholder_is_removed() { // having browser.navigate().to(contextPath.toExternalForm() + "index.jsf"); // when input().clickOnInput(); // then assertEquals("", input().getEditedText()); } @Test public void when_text_is_changed_then_text_changes_color_to_default_and_removes_placeholder_style_classes() { // having browser.navigate().to(contextPath.toExternalForm() + "index.jsf"); // when input().setTestedValue(getTestedValue()); // then assertFalse("input should not contain placeholder class", input().getStyleClass().contains(PLACEHOLDER_CLASS)); assertEquals(getDefaultInputColor(), input().getTextColor()); assertEquals(getTestedValue(), input().getEditedText()); } @Test public void when_text_is_cleared_then_input_gets_placeholder_text_and_style_again() { // having browser.navigate().to(contextPath.toExternalForm() + "index.jsf"); // when input().setTestedValue(getTestedValue()); input().clear(); body.click(); // then assertEquals(PLACEHOLDER_TEXT, input().getDefaultText()); assertEquals(DEFAULT_PLACEHOLDER_COLOR, input().getTextColor()); assertTrue("input should contain placeholder's default class", input().getStyleClass().contains(PLACEHOLDER_CLASS)); } @Test public void when_text_is_changed_and_input_is_blurred_then_typed_text_is_preserved() { // having browser.navigate().to(contextPath.toExternalForm() + "index.jsf"); // when input().setTestedValue(getTestedValue()); body.click(); // then assertEquals(getTestedValue(), input().getEditedText()); assertEquals(getDefaultInputColor(), input().getTextColor()); } @Test public void testAjaxSendsEmptyValue() { // given browser.get(contextPath.toExternalForm() + "submit.jsf"); input().setTestedValue(getTestedValue()); body.click(); guardAjax(a4jSubmitBtn).click(); waitAjax().until().element(output).is().visible(); waitAjax().until().element(output).text().equalTo(getTestedValueResponse()); // when input().clear(); guardAjax(a4jSubmitBtn).click(); // then waitAjax().until().element(output).is().not().visible(); } @Test public void testAjaxSendsTextValue() { // given browser.get(contextPath.toExternalForm() + "submit.jsf"); // when input().setTestedValue(getTestedValue()); guardAjax(a4jSubmitBtn).click(); // then waitAjax().until().element(output).is().visible(); waitAjax().until().element(output).text().equalTo(getTestedValueResponse()); } @Test public void testSubmitEmptyValue() { // given browser.get(contextPath.toExternalForm() + "submit.jsf"); // when guardHttp(httpSubmitBtn).click(); // then waitModel().until().element(output).is().not().visible(); } @Test public void testSubmitTextValue() { // given browser.get(contextPath.toExternalForm() + "submit.jsf"); // when input().setTestedValue(getTestedValue()); guardHttp(httpSubmitBtn).click(); // then waitModel().until().element(output).is().visible(); assertEquals(getTestedValueResponse(), output.getText()); } public static class Input { @Root protected WebElement input; public String getEditedText() { return input.getAttribute("value"); } public String getDefaultText() { return getEditedText(); } public void clickOnInput() { input.click(); } public void clear() { input.clear(); } public void setTestedValue(String value) { input.click(); input.sendKeys(value); } public Color getTextColor() { return ColorUtils.convertToAWTColor(input.getCssValue("color")); } public String getStyleClass() { return input.getAttribute("class"); } } public static class InplaceInput extends Input { @FindBy(css = "input[id$=Input]") WebElement inplaceInput; @FindBy(css = "span[id$=Label]") WebElement inplaceLabel; @Override public String getEditedText() { return inplaceInput.getAttribute("value"); } @Override public String getDefaultText() { return inplaceLabel.getText(); } @Override public void clickOnInput() { inplaceLabel.click(); } @Override public void setTestedValue(String value) { inplaceLabel.click(); inplaceInput.sendKeys(value); } @Override public void clear() { inplaceLabel.click(); inplaceInput.clear(); } @Override public Color getTextColor() { return ColorUtils.convertToAWTColor(inplaceLabel.getCssValue("color")); } @Override public String getStyleClass() { return inplaceLabel.getAttribute("class"); } } public static class InplaceSelectInput extends InplaceInput { @Override public void setTestedValue(String value) { inplaceInput.sendKeys(Keys.DOWN); inplaceInput.sendKeys("\n");//Enter does not work } } public static class SelectInput extends Input { @Override public void setTestedValue(String value) { input.sendKeys(value); input.sendKeys("\n");//Enter does not work } @Override public void clear() { input.click(); input.clear(); } } }