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 edu.sampleu.krad.configview; 017 018import org.kuali.rice.testtools.common.JiraAwareFailable; 019import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase; 020 021/** 022 * @author Kuali Rice Team (rice.collab@kuali.org) 023 */ 024public abstract class HelpAftBase extends WebDriverLegacyITBase { 025 026 /** 027 * /kr-krad/configuration-test-view-uif-controller?viewId=ConfigurationTestView&methodToCall=start&pageId=ConfigurationTestView-Help-Page 028 */ 029 public static final String BOOKMARK_URL = "/kr-krad/configuration-test-view-uif-controller?viewId=ConfigurationTestView&methodToCall=start&pageId=ConfigurationTestView-Help-Page"; 030 public static final String HELP_FOR_CONFIGURATION_TEST_VIEW_XPATH = 031 "//a[@title='Help for Configuration Test View']"; 032 033 @Override 034 protected String getBookmarkUrl() { 035 return BOOKMARK_URL; 036 } 037 038 protected void navigation() throws Exception { 039 waitAndClickKRAD(); 040 waitAndClickByXpath(CONFIGURATION_VIEW_XPATH); 041 switchToWindow(CONFIGURATION_VIEW_WINDOW_TITLE); 042 waitAndClickByLinkText("Help"); 043 Thread.sleep(5000); 044 } 045 046 protected void testHelpNav(JiraAwareFailable failable) throws Exception { 047 navigation(); 048 testViewHelp(); 049 testPageHelp(); 050 testTooltipHelp(); 051 testDisplayOnlyTooltipHelp(); 052 testMissingTooltipHelp(); 053 passed(); 054 } 055 056 protected void testHelpBookmark(JiraAwareFailable failable) throws Exception { 057 testViewHelp(); 058 testPageHelp(); 059 testTooltipHelp(); 060 testDisplayOnlyTooltipHelp(); 061 testMissingTooltipHelp(); 062 passed(); 063 } 064 065 066 /** 067 * Test the tooltip and external help on the page 068 */ 069 protected void testPageHelp() throws Exception { 070 // test tooltip help 071 fireMouseOverEventByXpath("//a/span[@class='uif-headerText-span']"); 072 waitForElementPresent("//div[@class='popover top in']"); 073 074 // test external help 075 switchToWindow("Kuali Portal Index"); 076 switchToWindow(CONFIGURATION_VIEW_WINDOW_TITLE); 077 } 078 079 /** 080 * Test the tooltip help on the section and fields 081 */ 082 protected void testTooltipHelp() throws Exception { 083 // verify that no tooltips are displayed initially 084 if (isElementPresentByXpath("//td[contains(text(),'Sample text for section help - tooltip help')]")) { 085 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for section help - tooltip help')]")); 086 } 087 088 if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label left')]")) { 089 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label left')]")); 090 } 091 092 if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label right')]")) { 093 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label right')]")); 094 } 095 096 if (isElementPresentByXpath("//td[contains(text(),'Sample text for field help - label top')]")) { 097 assertFalse(isVisibleByXpath("//td[contains(text(),'Sample text for field help - label top')]")); 098 } 099 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}