/* * 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.richExtendedDataTable; import static org.testng.Assert.assertEquals; import static org.testng.Assert.assertFalse; import static org.testng.Assert.assertTrue; import java.util.List; import org.jboss.arquillian.graphene.Graphene; import org.jboss.arquillian.graphene.page.Page; import org.openqa.selenium.WebDriver; import org.richfaces.tests.configurator.unstable.annotation.Unstable; import org.richfaces.tests.metamer.ftest.AbstractWebDriverTest; import org.richfaces.tests.metamer.ftest.annotations.IssueTracking; import org.richfaces.tests.metamer.ftest.extension.configurator.templates.annotation.Templates; import org.richfaces.tests.metamer.ftest.richExtendedDataTable.fragment.SimpleEDTRow; import org.richfaces.tests.metamer.ftest.richExtendedDataTable.page.SelectionPage; import org.richfaces.tests.metamer.ftest.webdriver.Attributes; import org.richfaces.tests.metamer.ftest.webdriver.MetamerPage; import org.richfaces.tests.metamer.ftest.webdriver.MetamerPage.WaitRequestType; import org.testng.annotations.BeforeMethod; import org.testng.annotations.Test; import com.google.common.base.Predicate; import com.google.common.collect.Lists; import com.google.common.primitives.Ints; import edu.emory.mathcs.backport.java.util.Arrays; /** * @author <a href="mailto:jstefek@redhat.com">Jiri Stefek</a> */ @IssueTracking("https://issues.jboss.org/browse/RF-14277") public class TestExtendedDataTableJSAPISelectAndDeselect extends AbstractWebDriverTest { @Page private SelectionPage page; private final Attributes<ExtendedDataTableAttributes> tableAttributes = getAttributes(); private List<Integer> arrayToList(int... indexes) { List<Integer> r = Lists.newArrayList(); for (int i : indexes) { r.add(i); } return r; } @BeforeMethod public void clearSelected() { page.setTableAttributes(tableAttributes); } @Override public String getComponentTestPagePath() { return "richExtendedDataTable/selection.xhtml"; } @Test @Templates("plain") public void testOnselectionEventsAreTriggered() { testRequestEventsBefore("onbeforeselectionchange", "onselectionchange"); Graphene.guardAjax(page.getSelectRowsUsingIndexJSAPIButton()).click(); testRequestEventsAfter("onbeforeselectionchange", "onselectionchange"); verifySelectedBefore(); verifySelectedNow(2); testRequestEventsBefore("onbeforeselectionchange", "onselectionchange"); Graphene.guardAjax(page.getDeselectRowJSAPIButton()).click(); testRequestEventsAfter("onbeforeselectionchange", "onselectionchange"); verifySelectedBefore(2); verifySelectedNow(); } @Test @Templates("plain") @Unstable public void testSelectRowsAndDeselectRow() { final int rows = Integer.parseInt(tableAttributes.get(ExtendedDataTableAttributes.rows)); for (int p : new int[] { 1, 2 }) { if (p == 2) { Graphene.guardAjax(page.getDataScroller()).switchTo(p); } int pageConstant = rows * (p - 1); Graphene.guardAjax(page.getSelectRowsUsingIndexJSAPIButton()).click(); verifySelectedBefore(); verifySelectedNow(2 + pageConstant); Graphene.guardAjax(page.getDeselectRowJSAPIButton()).click(); verifySelectedBefore(2 + pageConstant); verifySelectedNow(); Graphene.guardAjax(page.getSelectRowsUsingRangeJSAPIButton()).click(); verifySelectedBefore(); verifySelectedNow(1 + pageConstant, 2 + pageConstant, 3 + pageConstant, 4 + pageConstant, 5 + pageConstant); Graphene.guardAjax(page.getDeselectRowJSAPIButton()).click(); verifySelectedBefore(1 + pageConstant, 2 + pageConstant, 3 + pageConstant, 4 + pageConstant, 5 + pageConstant); verifySelectedNow(1 + pageConstant, 3 + pageConstant, 4 + pageConstant, 5 + pageConstant); Graphene.guardAjax(page.getSelectRowsUsingIndexJSAPIButton()).click(); verifySelectedBefore(1 + pageConstant, 3 + pageConstant, 4 + pageConstant, 5 + pageConstant); verifySelectedNow(2 + pageConstant); Graphene.guardAjax(page.getDeselectRowJSAPIButton()).click(); verifySelectedBefore(2 + pageConstant); verifySelectedNow(); } } @Test @Templates("plain") public void testSelectionModeIsRespected() { tableAttributes.set(ExtendedDataTableAttributes.selectionMode, "none"); MetamerPage.waitRequest(page.getSelectRowsUsingRangeJSAPIButton(), WaitRequestType.NONE, 1000).click(); MetamerPage.waitRequest(page.getDeselectRowJSAPIButton(), WaitRequestType.NONE, 1000).click(); tableAttributes.set(ExtendedDataTableAttributes.selectionMode, "single"); Graphene.guardAjax(page.getSelectRowsUsingRangeJSAPIButton()).click(); verifySelectedBefore(); verifySelectedNow(1); } private void verifySelectedBefore(int... indexes) { assertEquals(page.getActualPreviousSelection(), arrayToList(indexes)); } private void verifySelectedNow(final int... indexes) { final int rows = Integer.parseInt(tableAttributes.get(ExtendedDataTableAttributes.rows)); // wait until client-side JavaScript is executed after Ajax and check selected indexes in output Graphene.waitGui().until(new Predicate<WebDriver>() { @Override public boolean apply(WebDriver arg0) { return Arrays.equals(Ints.toArray(page.getActualCurrentSelection()), indexes); } }); List<Integer> listOfIndexes = arrayToList(indexes); // check rows contains correct classes if (indexes != null && indexes.length > 0) { final int secondPageConstant = (indexes[0] >= rows ? rows : 0); List<SimpleEDTRow> allRows = page.getTable().getAllRows(); for (int i = 0; i < allRows.size(); i++) { if (listOfIndexes.contains(i + secondPageConstant)) { assertTrue(page.getTable().getRow(i).getRootElement().getAttribute("class").contains("rf-edt-r-sel")); } else { assertFalse(page.getTable().getRow(i).getRootElement().getAttribute("class").contains("rf-edt-r-sel")); } } } } }