com.vaadin.tests.components.tree.TreeContextMenuAndIconsTest.java Source code

Java tutorial

Introduction

Here is the source code for com.vaadin.tests.components.tree.TreeContextMenuAndIconsTest.java

Source

/*
 * Copyright 2000-2016 Vaadin Ltd.
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
 * use this file except in compliance with the License. You may obtain a copy of
 * the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 * License for the specific language governing permissions and limitations under
 * the License.
 */
package com.vaadin.tests.components.tree;

import java.util.List;

import org.junit.Assert;
import org.junit.Test;
import org.openqa.selenium.Dimension;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;
import org.openqa.selenium.remote.DesiredCapabilities;

import com.vaadin.testbench.By;
import com.vaadin.tests.tb3.MultiBrowserTest;

public class TreeContextMenuAndIconsTest extends MultiBrowserTest {

    @Override
    protected Class<?> getUIClass() {
        return Trees.class;
    }

    @Override
    public List<DesiredCapabilities> getBrowsersToTest() {
        return getBrowsersSupportingContextMenu();
    }

    @Test
    public void testSimpleContextMenu() throws Exception {
        openTestURL();

        selectMenuPath("Settings", "Show event log");
        selectMenuPath("Component", "Features", "Context menu", "Item without icon");

        openContextMenu(getTreeNodeByCaption("Item 1"));

        compareScreen("contextmenu-noicon");

        closeContextMenu();
    }

    @Test
    public void testContextMenuWithAndWithoutIcon() throws Exception {
        openTestURL();

        selectMenuPath("Settings", "Show event log");
        selectMenuPath("Component", "Features", "Context menu", "With and without icon");

        openContextMenu(getTreeNodeByCaption("Item 1"));

        compareScreen("caption-only-and-has-icon");

        closeContextMenu();
    }

    @Test
    public void testContextLargeIcon() throws Exception {
        openTestURL();

        selectMenuPath("Settings", "Show event log");
        selectMenuPath("Component", "Features", "Context menu", "Only one large icon");

        WebElement menu = openContextMenu(getTreeNodeByCaption("Item 1"));

        // reindeer doesn't support menu with larger row height, so the
        // background image contains parts of other sprites =>
        // just check that the menu is of correct size
        Dimension size = menu.getSize();
        Assert.assertEquals("Menu height with large icons", 74, size.height);

        closeContextMenu();
    }

    @Test
    public void testContextRemoveIcon() throws Exception {
        openTestURL();

        selectMenuPath("Settings", "Show event log");
        selectMenuPath("Component", "Features", "Context menu", "Only one large icon");

        openContextMenu(getTreeNodeByCaption("Item 1"));
        closeContextMenu();

        selectMenuPath("Component", "Features", "Context menu", "Item without icon");

        openContextMenu(getTreeNodeByCaption("Item 1"));

        compareScreen("contextmenu-noicon");

        closeContextMenu();
    }

    private WebElement openContextMenu(WebElement element) {
        Actions actions = new Actions(getDriver());
        // Note: on Firefox, the first menu item does not get focus; on other
        // browsers it does
        actions.contextClick(element);
        actions.perform();
        return findElement(By.className("v-contextmenu"));
    }

    private void closeContextMenu() {
        findElement(By.className("v-app")).click();
    }

    private WebElement getTreeNodeByCaption(String caption) {
        return getDriver().findElement(By.xpath("//span[text() = '" + caption + "']"));
    }

}