View Javadoc

1   /*
2    * Copyright 2006-2012 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.compview;
17  
18  import edu.samplu.common.UpgradedSeleniumITBase;
19  import junit.framework.Assert;
20  import org.junit.Test;
21  
22  /**
23   * Selenium test that tests that tooltips are rendered on mouse over and focus events
24   * and hidden on mouse out and blur events
25   *
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   */
28  public class UifTooltipIT extends UpgradedSeleniumITBase {
29      @Override
30      public String getTestUrl() {
31          // open Other Examples page in kitchen sink view
32          return "/kr-krad/uicomponents?viewId=UifCompView&methodToCall=start&pageId=UifCompView-Page10";
33      }
34  
35      @Test
36      public void testTooltip() throws Exception {
37          // check if tooltip opens on focus
38          selenium.fireEvent("name=field1", "focus");
39          Assert.assertTrue(selenium.isVisible(
40                  "//td[contains(.,\"This tooltip is triggered by focus or and mouse over.\")]"));
41          // check if tooltip closed on blur
42          selenium.fireEvent("name=field1", "blur");
43          Assert.assertFalse(selenium.isVisible(
44                  "//td[contains(.,\"This tooltip is triggered by focus or and mouse over.\")]"));
45          // check if tooltip opens on mouse over
46          selenium.mouseOver("name=field2");
47          Assert.assertTrue(selenium.isVisible(
48                  "//td[contains(.,\"This is a tool-tip with different position and tail options\")]"));
49          // check if tooltip closed on mouse out
50          selenium.mouseOut("name=field2");
51          Assert.assertFalse(selenium.isVisible(
52                  "//td[contains(.,\"This is a tool-tip with different position and tail options\")]"));
53          // check that default tooltip does not display when there are an error message on the field
54          selenium.type("name=field1", "1");
55          selenium.fireEvent("name=field1", "blur");
56          selenium.fireEvent("name=field1", "focus");
57          Assert.assertFalse(selenium.isVisible(
58                  "//td[contains(.,\"This tooltip is triggered by focus or and mouse over.\")]"));
59      }
60  }