/* * JBoss, Home of Professional Open Source * Copyright 2010-2016, 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.tests.metamer.ftest.richPlaceholder; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertFalse; import static org.testng.Assert.assertTrue; import java.awt.Color; import org.jboss.arquillian.graphene.Graphene; import org.jboss.arquillian.graphene.condition.element.WebElementConditionFactory; import org.jboss.test.selenium.support.color.ColorUtils; import org.openqa.selenium.WebDriver; import org.openqa.selenium.WebElement; import org.openqa.selenium.support.FindBy; import org.richfaces.tests.metamer.ftest.AbstractWebDriverTest; import org.richfaces.tests.metamer.ftest.extension.attributes.coverage.annotations.CoversAttributes; import org.richfaces.tests.metamer.ftest.webdriver.Attributes; import org.richfaces.tests.metamer.ftest.webdriver.MetamerPage.WaitRequestType; import com.google.common.base.Predicate; /** * * @author <a href="mailto:jstefek@redhat.com">Jiri Stefek</a> */ public abstract class AbstractPlaceholderJSFTest extends AbstractWebDriverTest { public static final String DEFAULT_PLACEHOLDER_CLASS = "rf-plhdr"; public static final String DEFAULT_PLACEHOLDER_TEXT = "Watermark text"; public static final String INPUT1_ID = "[id$=input1]"; public static final String INPUT2_ID = "[id$=input2]"; @FindBy(css = "[id$=a4jButton]") private WebElement a4jSubmitBtn; private final String componentName; @FindBy(css = "[id$=hButton]") private WebElement hSubmitBtn; @FindBy(css = "[id$=output1]") private WebElement output1; @FindBy(css = "[id$=output2]") private WebElement output2; @FindBy(css = "[id$=placeholder]") private WebElement placeholder; private final Attributes<PlaceholderAttributes> placeholderAttributes = getAttributes(); public AbstractPlaceholderJSFTest(String componentName) { this.componentName = componentName; } protected void clearInput1() { getInput1().clear(); blur(WaitRequestType.NONE); } protected void focusOnInput1() { getInput1().click(); } protected void focusOnInput2() { getInput2().click(); } @Override public String getComponentTestPagePath() { return "richPlaceholder/" + componentName + ".xhtml"; } Color getDefaultInputColor() { return Color.BLACK; } abstract WebElement getInput1(); protected Color getInput1Color() { return ColorUtils.convertToAWTColor(getInput1().getCssValue("color")); } /** * Because of inplace input components * * @return */ protected String getInput1EditValue() { return getInput1Value(); } protected String getInput1StyleClass() { return getInput1().getAttribute("class"); } protected String getInput1Value() { return getInput1().getAttribute("value"); } abstract WebElement getInput2(); protected String getInput2StyleClass() { return getInput2().getAttribute("class"); } protected String getInput2Value() { return getInput2().getAttribute("value"); } protected String getOutput1Value() { return output1.getText(); } protected String getOutput2Value() { return output2.getText(); } protected String getTestedValue() { return "abcd"; } protected void sendKeysToInput1(String keys) { getInput1().sendKeys(keys); blur(WaitRequestType.NONE); } public void testAjaxSubmit() { assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); assertEquals(getInput2Value(), "", "Input 2 value"); Graphene.guardAjax(a4jSubmitBtn).click(); assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); assertEquals(getInput2Value(), "", "Input 2 value"); assertEquals(getOutput1Value(), "", "Output 1 value"); assertEquals(getOutput2Value(), "", "Output 2 value"); } public void testClickOnInputWithPlaceholder() { assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); focusOnInput1(); Graphene.waitGui().withMessage("Input 1 value should not contain placeholder text.").until(new Predicate<WebDriver>() { @Override public boolean apply(WebDriver t) { return getInput1EditValue().isEmpty(); } }); } public void testDeleteTextFromInputWithPlaceholder() { assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); assertTrue(getInput1StyleClass().contains(DEFAULT_PLACEHOLDER_CLASS), "Input 1 styleClass"); clearInput1(); sendKeysToInput1(getTestedValue()); Graphene.waitGui().withMessage("Input 1 value should equal to the tested value.").until(new Predicate<WebDriver>() { @Override public boolean apply(WebDriver t) { return getInput1EditValue().equals(getTestedValue()); } }); assertFalse(getInput1StyleClass().contains(DEFAULT_PLACEHOLDER_CLASS), "Input 1 styleClass"); assertEquals(getInput1Color(), getDefaultInputColor(), "Input 1 text color"); clearInput1(); focusOnInput2(); Graphene.waitGui().withMessage("Input 1 value should not contain placeholder text.").until(new Predicate<WebDriver>() { @Override public boolean apply(WebDriver t) { return getInput1Value().equals(DEFAULT_PLACEHOLDER_TEXT); } }); assertTrue(getInput1StyleClass().contains(DEFAULT_PLACEHOLDER_CLASS), "Input 1 styleClass"); assertEquals(getInput1Color(), Color.blue, "Input 1 text color"); } public void testHTTPSubmit() { assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); assertEquals(getInput2Value(), "", "Input 2 value"); Graphene.guardHttp(hSubmitBtn).click(); assertEquals(getOutput1Value(), "", "Output 1 value"); assertEquals(getOutput2Value(), "", "Output 2 value"); } @CoversAttributes("rendered") public void testRendered() { placeholderAttributes.set(PlaceholderAttributes.rendered, Boolean.FALSE); assertFalse(new WebElementConditionFactory(placeholder).isPresent().apply(driver), "Placeholder should not be present"); assertFalse(getInput1StyleClass().contains(DEFAULT_PLACEHOLDER_CLASS), "Input 1 styleClass"); assertEquals(getInput1Value(), "", "Input 1 value"); } @CoversAttributes("selector") public void testSelector() { // default selector = input1 assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); assertEquals(getInput2Value(), "", "Input 2 value"); placeholderAttributes.set(PlaceholderAttributes.selector, INPUT2_ID); assertEquals(getInput1Value(), "", "Input 1 value"); assertEquals(getInput2Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 2 value"); } @CoversAttributes("selector") public void testSelectorEmpty() { // Placeholder is in first component, without selector, it should work for the first input placeholderAttributes.set(PlaceholderAttributes.selector, ""); assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); assertEquals(getInput2Value(), "", "Input 2 value"); } @CoversAttributes("styleClass") public void testStyleClass() { assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); testStyleClass(getInput1()); } @CoversAttributes("value") public void testTypeToInputWithPlaceholder() { assertEquals(getInput1Value(), DEFAULT_PLACEHOLDER_TEXT, "Input 1 value"); assertTrue(getInput1StyleClass().contains(DEFAULT_PLACEHOLDER_CLASS), "Input 1 styleClass"); assertEquals(getInput1Color(), Color.blue); clearInput1(); sendKeysToInput1(getTestedValue()); Graphene.waitGui().withMessage("Input 1 value should equal to the tested value.").until(new Predicate<WebDriver>() { @Override public boolean apply(WebDriver t) { return getInput1EditValue().equals(getTestedValue()); } }); assertFalse(getInput1StyleClass().contains(DEFAULT_PLACEHOLDER_CLASS), "Input 1 styleClass"); assertEquals(getInput1Color(), getDefaultInputColor()); } }