Skip to content

Commit

Permalink
IT for h:inputText type
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Apr 3, 2021
1 parent fbefaf3 commit 5c6438c
Show file tree
Hide file tree
Showing 4 changed files with 234 additions and 0 deletions.
37 changes: 37 additions & 0 deletions test2/faces40/inputText/pom.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2021 Contributors to Eclipse Foundation.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.glassfish.mojarra.faces40</groupId>
<artifactId>pom</artifactId>
<version>4.0.0-SNAPSHOT</version>
</parent>

<artifactId>inputText</artifactId>
<packaging>war</packaging>

<name>Mojarra ${project.version} - Test - Faces 4.0 - h:inputText</name>

<build>
<finalName>test-faces40-inputText</finalName>
</build>
</project>
54 changes: 54 additions & 0 deletions test2/faces40/inputText/src/main/webapp/WEB-INF/web.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
<?xml version="1.0" encoding="UTF-8"?>
<!--
Copyright (c) 2021 Contributors to Eclipse Foundation.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<web-app
xmlns="https://jakarta.ee/xml/ns/jakartaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="https://jakarta.ee/xml/ns/jakartaee https://jakarta.ee/xml/ns/jakartaee/web-app_5_0.xsd"
version="5.0"
>
<context-param>
<param-name>jakarta.faces.PROJECT_STAGE</param-name>
<param-value>${webapp.projectStage}</param-value>
</context-param>
<context-param>
<param-name>jakarta.faces.PARTIAL_STATE_SAVING</param-name>
<param-value>${webapp.partialStateSaving}</param-value>
</context-param>
<context-param>
<param-name>jakarta.faces.STATE_SAVING_METHOD</param-name>
<param-value>${webapp.stateSavingMethod}</param-value>
</context-param>
<context-param>
<param-name>jakarta.faces.SERIALIZE_SERVER_STATE</param-name>
<param-value>${webapp.serializeServerState}</param-value>
</context-param>

<servlet>
<servlet-name>facesServlet</servlet-name>
<servlet-class>jakarta.faces.webapp.FacesServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>facesServlet</servlet-name>
<url-pattern>*.xhtml</url-pattern>
</servlet-mapping>

<welcome-file-list>
<welcome-file>spec1560IT.xhtml</welcome-file>
</welcome-file-list>
</web-app>
38 changes: 38 additions & 0 deletions test2/faces40/inputText/src/main/webapp/spec1560IT.xhtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
<!DOCTYPE html>
<!--
Copyright (c) 2021 Contributors to Eclipse Foundation.
This program and the accompanying materials are made available under the
terms of the Eclipse Public License v. 2.0, which is available at
http://www.eclipse.org/legal/epl-2.0.
This Source Code may also be made available under the following Secondary
Licenses when the conditions for such availability set forth in the
Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
version 2 with the GNU Classpath Exception, which is available at
https://www.gnu.org/software/classpath/license.html.
SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
-->
<html
xmlns:f="jakarta.faces.core"
xmlns:h="jakarta.faces.html"
xmlns:a="jakarta.faces.passthrough"
>
<h:head/>

<h:body>
<h:form id="form">
<h:inputText id="noType" />
<h:inputText id="typeEmail" type="email" />
<h:message for="typeEmail" id="messageForTypeEmail" />
<h:inputText id="passthroughTypeEmail" a:type="email" />
<h:inputText id="typeTelAndPassthroughTypeEmail" type="tel" a:type="email" />
<h:inputText id="typeButton" type="button" />
<h:message for="typeButton" id="messageForTypeButton" />
</h:form>
<h:messages id="messages" />
</h:body>
</html>
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
/*
* Copyright (c) 2021 Contributors to Eclipse Foundation.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0, which is available at
* http://www.eclipse.org/legal/epl-2.0.
*
* This Source Code may also be made available under the following Secondary
* Licenses when the conditions for such availability set forth in the
* Eclipse Public License v. 2.0 are satisfied: GNU General Public License,
* version 2 with the GNU Classpath Exception, which is available at
* https://www.gnu.org/software/classpath/license.html.
*
* SPDX-License-Identifier: EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
*/

package com.sun.faces.test.servlet50.inputtext;

import static java.lang.System.getProperty;
import static org.jboss.shrinkwrap.api.ShrinkWrap.create;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;

import java.io.File;
import java.net.URL;

import org.jboss.arquillian.container.test.api.Deployment;
import org.jboss.arquillian.junit.Arquillian;
import org.jboss.arquillian.test.api.ArquillianResource;
import org.jboss.shrinkwrap.api.importer.ZipImporter;
import org.jboss.shrinkwrap.api.spec.WebArchive;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;

import com.gargoylesoftware.htmlunit.WebClient;
import com.gargoylesoftware.htmlunit.html.HtmlElement;
import com.gargoylesoftware.htmlunit.html.HtmlInput;
import com.gargoylesoftware.htmlunit.html.HtmlPage;

@RunWith(Arquillian.class)
public class Spec1560IT {

@ArquillianResource
private URL webUrl;
private WebClient webClient;

@Deployment(testable = false)
public static WebArchive createDeployment() {
return create(ZipImporter.class, getProperty("finalName") + ".war")
.importFrom(new File("target/" + getProperty("finalName") + ".war"))
.as(WebArchive.class);
}

@Before
public void setUp() {
webClient = new WebClient();
}

@After
public void tearDown() {
webClient.close();
}

@Test
public void test() throws Exception {
HtmlPage page = webClient.getPage(webUrl + "spec1560IT.xhtml");

HtmlInput noType = (HtmlInput) page.getElementById("form:noType");
assertEquals("Default type is 'text'", "text", noType.getTypeAttribute());

HtmlInput typeEmail = (HtmlInput) page.getElementById("form:typeEmail");
assertEquals("Type set via actual attribute is 'email'", "email", typeEmail.getTypeAttribute());

HtmlInput passthroughTypeEmail = (HtmlInput) page.getElementById("form:passthroughTypeEmail");
assertEquals("Type set via passthrough attribute is 'email'", "email", passthroughTypeEmail.getTypeAttribute());

HtmlInput typeTelAndPassthroughTypeEmail = (HtmlInput) page.getElementById("form:typeTelAndPassthroughTypeEmail");
assertEquals("Type overridden via passthrough attribute is 'email'", "email", typeTelAndPassthroughTypeEmail.getTypeAttribute());

HtmlInput typeButton = (HtmlInput) page.getElementById("form:typeButton");
assertEquals("Type set via actual attribute is 'button'", "button", typeButton.getTypeAttribute());

HtmlElement messageForTypeEmail = (HtmlElement) page.getElementById("form:messageForTypeEmail");
HtmlElement messageForTypeButton = (HtmlElement) page.getElementById("form:messageForTypeButton");
HtmlElement messages = (HtmlElement) page.getElementById("messages");

String emailMessage = messageForTypeEmail.asText();
String buttonMessage = messageForTypeButton.asText();
String globalMessage = messages.asText();

if ("Development".equals(System.getProperty("webapp.projectStage"))) {
assertEquals("There is no faces message for type 'email'", "", emailMessage);
assertNotEquals("There is a faces message for type 'button'", "", buttonMessage);
assertEquals("The message for type 'button' is the only message set", globalMessage, buttonMessage);
}
else {
assertEquals("There is no faces message for type 'email'", "", emailMessage);
assertEquals("There is no faces message for type 'button'", "", buttonMessage);
assertEquals("There is no faces message set at all", "", globalMessage);
}
}

}

0 comments on commit 5c6438c

Please sign in to comment.