/* * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. * * Copyright (c) 1997-2012 Oracle and/or its affiliates. All rights reserved. * * The contents of this file are subject to the terms of either the GNU * General Public License Version 2 only ("GPL") or the Common Development * and Distribution License("CDDL") (collectively, the "License"). You * may not use this file except in compliance with the License. You can * obtain a copy of the License at * https://glassfish.java.net/public/CDDLGPL_1_1.html * or packager/legal/LICENSE.txt. See the License for the specific * language governing permissions and limitations under the License. * * When distributing the software, include this License Header Notice in each * file and include the License file at packager/legal/LICENSE.txt. * * GPL Classpath Exception: * Oracle designates this particular file as subject to the "Classpath" * exception as provided by Oracle in the GPL Version 2 section of the License * file that accompanied this code. * * Modifications: * If applicable, add the following below the License Header, with the fields * enclosed by brackets [] replaced by your own identifying information: * "Portions Copyright [year] [name of copyright owner]" * * Contributor(s): * If you wish your version of this file to be governed by only the CDDL or * only the GPL Version 2, indicate your decision by adding "[Contributor] * elects to include this software in this distribution under the [CDDL or GPL * Version 2] license." If you don't indicate a single choice of license, a * recipient has the option to distribute your version of this file under * either the CDDL, the GPL Version 2 or to extend the choice of license to * its licensees as provided above. However, if you add GPL Version 2 code * and therefore, elected the GPL Version 2 license, then the option applies * only if the new code is made subject to such option by the copyright * holder. */ package com.sun.faces.test.servlet30.ajax; import com.gargoylesoftware.htmlunit.NicelyResynchronizingAjaxController; import com.gargoylesoftware.htmlunit.WebClient; import com.gargoylesoftware.htmlunit.html.DomElement; import com.gargoylesoftware.htmlunit.html.DomNodeList; import com.gargoylesoftware.htmlunit.html.HtmlCheckBoxInput; import com.gargoylesoftware.htmlunit.html.HtmlPage; import java.util.ArrayList; import java.util.Iterator; import java.util.List; import org.junit.*; import static org.junit.Assert.*; public class Issue1581IT { /** * Stores the web URL. */ private String webUrl; /** * Stores the web client. */ private WebClient webClient; @Before public void setUp() { webUrl = System.getProperty("integration.url"); webClient = new WebClient(); webClient.setAjaxController(new NicelyResynchronizingAjaxController()); } @After public void tearDown() { webClient.close(); } // ------------------------------------------------------------ Test Methods /** * This test verifies correct function of SelectManyCheckbox in a Composite * Component over Ajax. */ @Test public void testSelectManyCheckboxInComposite() throws Exception { HtmlPage page = webClient.getPage(webUrl+"faces/issue1581.xhtml"); final List<HtmlCheckBoxInput> checkBoxes = getCheckboxes(page); HtmlCheckBoxInput cbox1 = getCheckboxes(page).get(0); // This will ensure JavaScript finishes before evaluating the page. webClient.waitForBackgroundJavaScript(60000); assertTrue(page.asXml().contains("JAVASERVERFACES-1 false, JAVASERVERFACES-2 false, JAVASERVERFACES-3 false, JAVASERVERFACES-4 false")); page = cbox1.click(); webClient.waitForBackgroundJavaScript(60000); System.out.println("\n\n\n\n ++++++++++++++++++++++ \n \n \nResponse Body: " + page.getWebResponse().getContentAsString()); assertTrue(page.asXml().contains("JAVASERVERFACES-1 true, JAVASERVERFACES-2 false, JAVASERVERFACES-3 false, JAVASERVERFACES-4 false")); page = getCheckboxes(page).get(1).click(); webClient.waitForBackgroundJavaScript(60000); assertTrue(page.asXml().contains("JAVASERVERFACES-1 true, JAVASERVERFACES-2 true, JAVASERVERFACES-3 false, JAVASERVERFACES-4 false")); page = getCheckboxes(page).get(2).click(); webClient.waitForBackgroundJavaScript(60000); assertTrue(page.asXml().contains("JAVASERVERFACES-1 true, JAVASERVERFACES-2 true, JAVASERVERFACES-3 true, JAVASERVERFACES-4 false")); page = getCheckboxes(page).get(3).click(); webClient.waitForBackgroundJavaScript(60000); assertTrue(page.asXml().contains("JAVASERVERFACES-1 true, JAVASERVERFACES-2 true, JAVASERVERFACES-3 true, JAVASERVERFACES-4 true")); } private List<HtmlCheckBoxInput> getCheckboxes(HtmlPage page) { List<HtmlCheckBoxInput> checkBoxes = new ArrayList<>(); DomNodeList<DomElement> elements = page.getElementsByTagName("input"); for (Iterator<DomElement> it = elements.iterator(); it.hasNext();) { DomElement elem = it.next(); if (elem instanceof HtmlCheckBoxInput) { checkBoxes.add((HtmlCheckBoxInput)elem); } } return checkBoxes; } }