/* * 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.richPanelMenu; import static org.richfaces.fragment.common.Event.CLICK; import static org.richfaces.fragment.common.Event.DBLCLICK; import static org.richfaces.fragment.common.Event.MOUSEOVER; import static org.richfaces.tests.metamer.ftest.extension.configurator.use.annotation.ValuesFrom.FROM_FIELD; import static org.richfaces.tests.metamer.ftest.richPanelMenu.PanelMenuAttributes.collapseEvent; import static org.richfaces.tests.metamer.ftest.richPanelMenu.PanelMenuAttributes.expandEvent; import static org.richfaces.tests.metamer.ftest.richPanelMenu.PanelMenuAttributes.onclick; import static org.richfaces.tests.metamer.ftest.richPanelMenu.PanelMenuAttributes.ondblclick; import static org.richfaces.tests.metamer.ftest.richPanelMenu.PanelMenuAttributes.onmousedown; import static org.richfaces.tests.metamer.ftest.richPanelMenu.PanelMenuAttributes.onmousemove; import static org.richfaces.tests.metamer.ftest.richPanelMenu.PanelMenuAttributes.onmouseover; import static org.richfaces.tests.metamer.ftest.richPanelMenu.PanelMenuAttributes.onmouseup; import static org.testng.Assert.assertFalse; import static org.testng.Assert.assertTrue; import org.openqa.selenium.interactions.Action; import org.openqa.selenium.interactions.Actions; import org.richfaces.fragment.common.Event; import org.richfaces.tests.metamer.ftest.extension.attributes.coverage.annotations.CoversAttributes; import org.richfaces.tests.metamer.ftest.extension.configurator.templates.annotation.Templates; import org.richfaces.tests.metamer.ftest.extension.configurator.use.annotation.UseWithField; import org.richfaces.tests.metamer.ftest.webdriver.Attributes; import org.testng.annotations.Test; /** * @author <a href="mailto:lfryc@redhat.com">Lukas Fryc</a> * @since 4.3.4 */ public class TestPanelMenuDOMEvents extends AbstractPanelMenuTest { private Event event = DBLCLICK; private final Event[] events = new Event[] { CLICK, DBLCLICK, MOUSEOVER }; private final Attributes<PanelMenuAttributes> panelMenuAttributes = getAttributes(); @Test @CoversAttributes("collapseEvent") @UseWithField(field = "event", valuesFrom = FROM_FIELD, value = "events") public void testCollapseEvent() { panelMenuAttributes.set(collapseEvent, event.getEventName()); getPage().getPanelMenu().expandGroup(1); assertTrue(getPage().getGroup2().advanced().isExpanded()); fireEvent(getPage().getGroup2().advanced().getLabelElement(), event); getPage().getGroup2().advanced().waitUntilMenuGroupExpanded(getPage().getGroup2().advanced().getHeaderElement()); } @Test @CoversAttributes("expandEvent") @UseWithField(field = "event", valuesFrom = FROM_FIELD, value = "events") public void testExpandEvent() { panelMenuAttributes.set(expandEvent, event.getEventName()); assertFalse(getPage().getGroup2().advanced().isExpanded()); fireEvent(getPage().getGroup2().advanced().getLabelElement(), event); getPage().getGroup2().advanced().waitUntilMenuGroupExpanded(getPage().getGroup2().advanced().getHeaderElement()); } @Test @CoversAttributes("onclick") @Templates("plain") public void testOnclick() { Action click = new Actions(driver).click(getPage().getPanelMenu().advanced().getRootElement()).build(); testFireEvent(panelMenuAttributes, onclick, click); } @Test @CoversAttributes("ondblclick") @Templates("plain") public void testOndblclick() { Action dblClick = new Actions(driver).doubleClick(getPage().getPanelMenu().advanced().getRootElement()).build(); testFireEvent(panelMenuAttributes, ondblclick, dblClick); } @Test @CoversAttributes("onmousedown") @Templates(value = "plain") public void testOnmousedown() { Action mousedown = new Actions(driver).clickAndHold(getPage().getPanelMenu().advanced().getRootElement()).build(); testFireEvent(panelMenuAttributes, onmousedown, mousedown); } @Test @CoversAttributes("onmousemove") @Templates("plain") public void testOnmousemove() { Action mousemove = new Actions(driver).moveToElement(getPage().getPanelMenu().advanced().getRootElement(), 3, 3).build(); testFireEvent(panelMenuAttributes, onmousemove, mousemove); } @Test @CoversAttributes("onmouseout") @Templates("plain") public void testOnmouseout() { testFireEventWithJS(getPage().getPanelMenu().advanced().getRootElement(), panelMenuAttributes, PanelMenuAttributes.onmouseout); } @Test @CoversAttributes("onmouseover") @Templates("plain") public void testOnmouseover() { //This test should be done first, because use static x and y variables Actions mouseover = new Actions(driver).moveToElement(getPage().getRequestTimeElement()); mouseover.moveToElement(getPage().getPanelMenu().advanced().getRootElement(), 3, 3); testFireEvent(panelMenuAttributes, onmouseover, mouseover.build()); } @Test @CoversAttributes("onmouseup") @Templates(value = "plain") public void testOnmouseup() { Action mouseup = new Actions(driver).click(getPage().getPanelMenu().advanced().getRootElement()).build(); testFireEvent(panelMenuAttributes, onmouseup, mouseup); } }