View Javadoc
1   /**
2    * Copyright 2005-2014 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.sampleu.krad.configview;
17  
18  import org.kuali.rice.testtools.common.JiraAwareFailable;
19  import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
20  
21  /**
22   * @author Kuali Rice Team (rice.collab@kuali.org)
23   */
24  public abstract class HelpAftBase extends WebDriverLegacyITBase {
25  
26      /**
27       * /kr-krad/configuration-test-view-uif-controller?viewId=ConfigurationTestView&methodToCall=start&pageId=ConfigurationTestView-Help-Page
28       */
29      public static final String BOOKMARK_URL = "/kr-krad/configuration-test-view-uif-controller?viewId=ConfigurationTestView&methodToCall=start&pageId=ConfigurationTestView-Help-Page";
30      public static final String HELP_FOR_CONFIGURATION_TEST_VIEW_XPATH =
31              "//a[@title='Help for Configuration Test View']";
32  
33      @Override
34      protected String getBookmarkUrl() {
35          return BOOKMARK_URL;
36      }
37  
38      protected void navigation() throws Exception {
39          waitAndClickKRAD();
40          waitAndClickByXpath(CONFIGURATION_VIEW_XPATH);
41          switchToWindow(CONFIGURATION_VIEW_WINDOW_TITLE);
42          waitAndClickByLinkText("Help");
43          Thread.sleep(5000);
44      }
45  
46      protected void testHelpNav(JiraAwareFailable failable) throws Exception {
47          navigation();
48          testViewHelp();
49          testPageHelp();
50          testTooltipHelp();
51          testDisplayOnlyTooltipHelp();
52          testMissingTooltipHelp();
53          passed();
54      }
55  
56      protected void testHelpBookmark(JiraAwareFailable failable) throws Exception {
57          testViewHelp();
58          testPageHelp();
59          testTooltipHelp();
60          testDisplayOnlyTooltipHelp();
61          testMissingTooltipHelp();
62          passed();
63      }
64  
65  
66      /**
67       * Test the tooltip and external help on the page
68       */
69      protected void testPageHelp() throws Exception {
70          // test tooltip help
71          fireMouseOverEventByXpath("//a/span[@class='uif-headerText-span']");
72          waitForElementPresent("//div[@class='popover top in']");
73  
74          // test external help
75          switchToWindow("Kuali Portal Index");
76          switchToWindow(CONFIGURATION_VIEW_WINDOW_TITLE);
77      }
78  
79      /**
80       * Test the tooltip help on the section and fields
81       */
82      protected void testTooltipHelp() throws Exception {
83          // verify that no tooltips are displayed initially
84          if (isElementPresentByXpath("//td[contains(text(),'Sample text for section help - tooltip help')]")) {
85              assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for section help - tooltip help')]"));
86          }
87  
88          if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label left')]")) {
89              assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label left')]"));
90          }
91  
92          if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label right')]")) {
93              assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label right')]"));
94          }
95  
96          if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label top')]")) {
97              assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label top')]"));
98          }
99  
100         if (isElementPresentByXpath("//td[contains(text(),'Sample text for standalone help widget tooltip which will never be rendered')]")) {
101             assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for standalone help widget tooltip which will never be rendered')]"));
102         }
103 
104         if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - there is also a tooltip on the label but it is overridden by the help tooltip')]")) {
105             assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - there is also a tooltip on the label but it is overridden by the help tooltip')]"));
106         }
107 
108         if (isElementPresentByXpath("//td[contains(text(),'Sample text for label tooltip - this will not be rendered as it is overridden by the help tooltip')]")) {
109             assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for label tooltip - this will not be rendered as it is overridden by the help tooltip')]"));
110         }
111 
112         if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - there is also an on-focus tooltip')]")) {
113             assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - there is also an on-focus tooltip')]"));
114         }
115 
116         if (isElementPresentByXpath("//td[contains(text(),'Sample text for on-focus event tooltip')]")) {
117             assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for on-focus event tooltip')]"));
118         }
119 
120         if (isElementPresentByXpath("//td[contains(text(),'Sample text for check box help')]")) {
121             assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for check box help')]"));
122         }
123 
124         // test tooltip help of section header
125         fireMouseOverEventByXpath("//section[@id='ConfigurationTestView-Help-Section1']/header/h3[@class='uif-headerText']");
126         waitForElementPresentByXpath("//div[@class='popover top in']");
127 
128         // verify that no external help exist
129         assertFalse(isElementPresent("#ConfigurationTestView-Help-Section1 input.uif-helpImage"));
130 
131         // test tooltip help of field with label to the left
132         fireMouseOverEventByXpath("//label[@id='field-label-left_label']");
133         waitForElementPresentByXpath("//div[@class='popover top in']");
134 
135         // test tooltip help of field with label to the right
136         fireMouseOverEventByXpath("//label[@id='field-label-right_label']");
137         waitForElementPresentByXpath("//div[@class='popover top in']");
138 
139         // test tooltip help of field with label to the top
140         fireMouseOverEventByXpath("//label[@id='field-label-top_label']");
141         waitForElementPresentByXpath("//div[@class='popover top in']");
142         
143         // verify that standalone help with tooltip is not rendered
144         assertFalse(isElementPresentByXpath("//*[@id='standalone-help-not-rendered']"));
145 
146         // test tooltip help when it overrides a tooltip
147         fireMouseOverEventByXpath("//label[@id='override-tooltip_label']");
148         waitForElementPresentByXpath("//div[@class='popover top in']");
149         if (isElementPresentByXpath("//td[contains(text(),'Sample text for label tooltip - this will not be rendered as it is overridden by the help tooltip')]")) {
150             assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for label tooltip - this will not be rendered as it is overridden by the help tooltip')]"));
151         }
152 
153         // test tooltip help in conjunction with a focus event tooltip
154         fireMouseOverEventByXpath("//input[@id='on-focus-tooltip_control']");
155         waitForElementPresentByXpath("//div[@class='popover top in']");
156         fireMouseOverEventByXpath("//label[@id='on-focus-tooltip_label']");
157         waitForElementPresentByXpath("//div[@class='popover top in']");
158 
159         // test tooltip help against a check box - help contains html
160         fireMouseOverEventByXpath("//label[@id='checkbox_label']");
161         waitForElementPresentByXpath("//div[@class='popover top in']");
162     }
163 
164     /**
165      * Test the tooltip help on the sub-section and fields that are display only
166      */
167     protected void testDisplayOnlyTooltipHelp() throws Exception {
168 
169         // test tooltip help of sub-section header
170         fireMouseOverEventByXpath("//section[@data-parent='ConfigurationTestView-Help-Section1']/header/h4");
171         waitForElementPresentByXpath("//td[contains(text(),'Sample text for sub-section help')]");
172 
173         // test tooltip help of display only data field
174         fireMouseOverEventByXpath("//label[@for='display-field_control']");
175         waitForElementPresentByXpath("//td[contains(text(),'Sample text for read only field help')]");
176     }
177 
178     /**
179      * Test the tooltip help on the section and fields with no content
180      */
181     protected void testMissingTooltipHelp() throws Exception {
182 
183         // test tooltip help of section header
184         fireMouseOverEventByXpath("//section[@id='ConfigurationTestView-Help-Section2']/div");
185         assertFalse(isElementPresentByXpath("//div[@class='jquerybubblepopup jquerybubblepopup-black' and @style='opacity: 0; top: 627px; left: 2px; position: absolute; display: block;']"));
186 
187         // test tooltip help of field
188         fireMouseOverEventByXpath("//label[@id='missing-tooltip-help_label']");
189         assertFalse(isElementPresentByXpath("//div[@class='jquerybubblepopup jquerybubblepopup-black' and @style='opacity: 0; top: 627px; left: 2px; position: absolute; display: block;']"));
190     }
191 
192     /**
193      * Test the tooltip and external help on the view
194      */
195     protected void testViewHelp() throws Exception {
196         // test tooltip help
197         fireEvent("field102", "blur");
198         fireMouseOverEventByXpath("//label[@id='field-label-left_label']");
199         waitForElementPresent("//div[@class='popover top in']");
200 
201         // test external help
202         switchToWindow("Kuali Portal Index");
203         switchToWindow(CONFIGURATION_VIEW_WINDOW_TITLE);
204     }
205 }