com.vaadin.tests.components.calendar.CalendarActionEventSourceTest.java Source code

Java tutorial

Introduction

Here is the source code for com.vaadin.tests.components.calendar.CalendarActionEventSourceTest.java

Source

/*
 * Copyright 2000-2014 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.calendar;

import org.junit.Assert;
import org.junit.Test;
import org.openqa.selenium.By;
import org.openqa.selenium.WebElement;
import org.openqa.selenium.interactions.Actions;

import com.vaadin.tests.tb3.PrivateTB3Configuration;

/**
 * Test that calendar action event source is the calendar, not a private nested
 * class in it.
 * 
 * The related code is not browser dependent so only running on a single
 * browser.
 * 
 * @author Vaadin Ltd
 */
public class CalendarActionEventSourceTest extends PrivateTB3Configuration {
    @Test
    public void testActionEventSourceIsCalendarForEmptyCell() throws Exception {
        openTestURL();

        // perform action on empty cell
        WebElement element = getDriver().findElement(By.className("v-calendar-spacer"));
        performAction(element);

        checkEventSourceIsCalendar();
    }

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

        // perform action on calendar event
        WebElement element = getDriver().findElement(By.className("v-calendar-event"));
        performAction(element);

        checkEventSourceIsCalendar();
    }

    private void performAction(WebElement element) {
        // right click
        new Actions(getDriver()).contextClick(element).perform();
        WebElement menuItem = getDriver().findElement(By.className("gwt-MenuItem"));
        menuItem.click();
    }

    private void checkEventSourceIsCalendar() {
        String calendarObject = getDriver().findElement(By.id("calendarlabel")).getText();
        String actionSourceObject = getDriver().findElement(By.id("senderlabel")).getText();
        Assert.assertEquals("Calendar action event source must be the calendar itself", calendarObject,
                actionSourceObject);
    }

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

}