View Javadoc

1   /**
2    * Copyright 2005-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.samplu.krad.demo.uif.library;
17  
18  import org.junit.Test;
19  import org.openqa.selenium.By;
20  import org.openqa.selenium.WebElement;
21  
22  /**
23   * @author Kuali Rice Team (rice.collab@kuali.org)
24   */
25  public class DemoLibraryWidgetsGrowlSmokeTest extends DemoLibraryBase {
26  
27      /**
28       * /kr-krad/kradsampleapp?viewId=Demo-Growls-View&methodToCall=start
29       */
30      public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-Growls-View&methodToCall=start";
31  
32      @Override
33      protected String getBookmarkUrl() {
34          return BOOKMARK_URL;
35      }
36  
37      @Override
38      protected void navigate() throws Exception {
39          navigateToLibraryDemo("Widgets", "Growls");
40      }
41  
42      protected void testWidgetsGrowlDefault() throws Exception {
43  
44          //check if growl text is present
45          assertTextNotPresent("Sample Message Text. Data passed: none");
46  
47          //create growl
48          waitAndClickButtonByText("Growl");
49  
50          //give it a second to display
51          Thread.sleep(1000);
52  
53          //check growl text is present
54          assertTextPresent("Sample Message Text. Data passed: none");
55      }
56  
57      protected void testWidgetsDatePickerWidget() throws Exception {
58          waitAndClickByLinkText(">> Open Library Navigation");
59          waitAndClickByLinkText("Suggest");
60          waitAndClickByLinkText("Tooltip");
61          select(By.id("Demo-LargeExampleDropdown_control"), "Tooltip On Focus");
62  
63          //focus label
64          fireMouseOverEvent(By.id("u100101_label"));
65          Thread.sleep(1000);
66          WebElement tooltipFocusLabel = driver.findElement(By.xpath("//div[@data-for=\"u100101_label\"]")).findElement(
67                  By.className("jquerybubblepopup-innerHtml"));
68          if (!tooltipFocusLabel.isDisplayed()) {
69              fail("Tooltip help for label not displayed.");
70          }
71          if (!tooltipFocusLabel.getText().equals("Click on the text box for a tool tip")) {
72              fail("Incorrect inner html text for label focus tooltip.");
73          }
74  
75          //focus control
76          waitAndClickById("u100101_control");
77          Thread.sleep(1000);
78          WebElement tooltipFocusControl = driver.findElement(By.xpath("//div[@data-for=\"u100101_control\"]"))
79                  .findElement(By.className("jquerybubblepopup-innerHtml"));
80          if (!tooltipFocusControl.isDisplayed()) {
81              fail("Tooltip help for control not displayed.");
82          }
83          if (!tooltipFocusControl.getText().equals("This tooltip appears when the field receives focus")) {
84              fail("Incorrect inner html text for tooltip focus control.");
85          }
86      }
87  
88      @Test
89      public void testWidgetsGrowlBookmark() throws Exception {
90          testWidgetsGrowlDefault();
91          passed();
92      }
93  
94      @Test
95      public void testWidgetsGrowlNav() throws Exception {
96          testWidgetsGrowlDefault();
97          passed();
98      }
99  }