001/**
002 * Copyright 2005-2014 The Kuali Foundation
003 *
004 * Licensed under the Educational Community License, Version 2.0 (the "License");
005 * you may not use this file except in compliance with the License.
006 * You may obtain a copy of the License at
007 *
008 * http://www.opensource.org/licenses/ecl2.php
009 *
010 * Unless required by applicable law or agreed to in writing, software
011 * distributed under the License is distributed on an "AS IS" BASIS,
012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013 * See the License for the specific language governing permissions and
014 * limitations under the License.
015 */
016package org.kuali.rice.krad.demo.uif.library.widgets;
017
018import org.junit.Test;
019import org.kuali.rice.krad.demo.uif.library.DemoLibraryBase;
020import org.openqa.selenium.By;
021
022/**
023 * @author Kuali Rice Team (rice.collab@kuali.org)
024 */
025public class DemoWidgetsGrowlAft extends DemoLibraryBase {
026
027           /**
028     * /kr-krad/kradsampleapp?viewId=Demo-GrowlsView&methodToCall=start
029     */
030    public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-GrowlsView&methodToCall=start";
031
032    @Override
033    protected String getBookmarkUrl() {
034        return BOOKMARK_URL;
035    }
036
037    @Override
038    protected void navigate() throws Exception {
039        navigateToLibraryDemo("Widgets", "Growls");
040    }
041
042    protected void testWidgetsGrowlServerSide() throws Exception {
043        selectByName("exampleShown","Server-side Growls");
044
045        //check if growl text is present
046        assertTextNotPresent("Sample Message Text. Data passed: none");
047
048        //create growl
049        waitAndClickButtonByText("Growl");
050
051        //give it a second to display
052        Thread.sleep(1000);
053
054        // get growl text
055        String growlText = findElement(By.className("jGrowl-message")).getText();
056
057        //check growl text is present
058        assertTrue(growlText.equals("Sample Message Text. Data passed: none"));
059    }
060
061    protected void testWidgetsGrowlClientSide() throws Exception {
062        selectByName("exampleShown","Client-side Growls");
063
064        //create growl
065        waitAndClickByXpath("//section[@id='Demo-Growls-Example2']/button");
066
067        //give it a half second to display
068        Thread.sleep(500);
069
070        // get growl text and assert it is what we expect
071        String growlText = findElement(By.className("growlUI")).getText();
072        assertTrue(growlText.equals("Growl Test\nThis is a test growl message"));
073    }
074
075    @Test
076    public void testWidgetsGrowlBookmark() throws Exception {
077        testWidgetsGrowlClientSide();
078        testWidgetsGrowlServerSide();
079        passed();
080    }
081
082    @Test
083    public void testWidgetsGrowlNav() throws Exception {
084        testWidgetsGrowlClientSide();
085        testWidgetsGrowlServerSide();
086        passed();
087    }
088}