View Javadoc
1   /**
2    * Copyright 2005-2016 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 org.kuali.rice.testtools.selenium.breadcrumb;
17  
18  import org.junit.Test;
19  import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
20  import org.openqa.selenium.By;
21  
22  import java.util.Arrays;
23  import java.util.Collections;
24  
25  /**
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   */
28  public abstract class BreadcrumbAftBase extends WebDriverLegacyITBase {
29  
30      /**
31       * //div[@class='uif-breadcrumbSiblingContent']//div[@class='uif-inputField']//ul[@class='uif-optionList']
32       */
33      public static final String SECOND_BREADCRUMB_NAV_XPATH = "//div[@class='uif-breadcrumbSiblingContent']//div[@class='uif-inputField']//ul[@class='uif-optionList']";
34  
35      /**
36       * (//a[@class='uif-breadcrumbSiblingLink'])[2]
37       */
38      public static final String SECOND_DOWN_TRIANGLE_XPATH = "(//a[@class='uif-breadcrumbSiblingLink'])[2]";
39  
40      String[][] selectAsserts = {{"UifCompView", "Uif Components"}};
41  
42      int[] breadcrumbOrderIndexes = {2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 1};
43  
44      protected String getTriangleXpath() {
45          return SECOND_DOWN_TRIANGLE_XPATH;
46      }
47  
48      protected void testBreadcrumb(int pageNumber) throws Exception {
49          // <ul id="u13_control" class="uif-optionList" data-control_for="u13" tabindex="0"><li class="uif-optionList-item uif-optionList-selectedItem"><a href="http://env1.rice.kuali.org/kr-krad/uicomponents?methodToCall=start&pageId=UifCompView-Page1&viewId=UifCompView" data-key="UifCompView-Page1">
50          //         Input Fields and Controls
51          // </a></li>
52          // <li class="uif-optionList-item"><a href="http://env1.rice.kuali.org/kr-krad/uicomponents?methodToCall=start&pageId=UifCompView-Page2&viewId=UifCompView" data-key="UifCompView-Page2">
53          //         Other Fields
54          // </a></li>
55          // etc.
56          jiraAwareWaitFor(By.xpath(SECOND_BREADCRUMB_NAV_XPATH));
57          assertFalse(isVisibleByXpath(SECOND_BREADCRUMB_NAV_XPATH));
58          // The second ▼
59          waitAndClickByXpath(getTriangleXpath(), "failed on breadcrumb pageNumber " + pageNumber);
60          Thread.sleep(100);
61          assertTrue(isVisibleByXpath(SECOND_BREADCRUMB_NAV_XPATH));
62          waitAndClickByXpath(getTriangleXpath());
63          assertFalse(isVisibleByXpath(SECOND_BREADCRUMB_NAV_XPATH));
64          waitAndClickByXpath(getTriangleXpath());
65  
66          // The Second selection of the second ▼
67          // you can't just click by link text as the same clickable text is on the left navigation.
68          waitAndClickByXpath(SECOND_BREADCRUMB_NAV_XPATH +"/li[" + pageNumber + "]/a");
69          waitForElementPresentById("TopLink" + pageNumber, "Breadcrumb number " + pageNumber + " failure", 30); // bottom jump to top link
70          driver.getCurrentUrl().contains("pageId=UifCompView-Page" + pageNumber);
71      }
72  
73      protected void testBreadcrumbs() throws Exception {
74          for (int i = 0, s = breadcrumbOrderIndexes.length; i < s; i++) {
75              testBreadcrumb(breadcrumbOrderIndexes[i]);
76          }
77      }
78  
79      protected void testBreadcrumbsShuffled() throws Exception {
80          int[] copiedBreadcrumbOrderIndex = Arrays.copyOf(breadcrumbOrderIndexes, breadcrumbOrderIndexes.length);
81  
82          Collections.shuffle(Arrays.asList(copiedBreadcrumbOrderIndex));
83          for (int i = 0, s = copiedBreadcrumbOrderIndex.length; i < s; i++) {
84              jGrowl("Click on Bread crumb index number " + i);
85              testBreadcrumb(copiedBreadcrumbOrderIndex[i]);
86          }
87      }
88  
89      @Test
90      public void testBreadcrumbBookmark() throws Exception {
91          testBreadcrumbs();
92          passed();
93      }
94  
95      @Test
96      public void testBreadcrumbShuffledBookmark() throws Exception {
97          testBreadcrumbsShuffled();
98          passed();
99      }
100 
101     @Test
102     public void testBreadcrumbNav() throws Exception {
103         testBreadcrumbs();
104         passed();
105     }
106 
107     @Test
108     public void testBreadcrumbShuffledNav() throws Exception {
109         testBreadcrumbsShuffled();
110         passed();
111     }
112 }