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 org.kuali.rice.testtools.selenium.breadcrumb;
17  
18  import org.junit.Test;
19  import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
20  
21  import java.util.Arrays;
22  import java.util.Collections;
23  
24  /**
25   * @author Kuali Rice Team (rice.collab@kuali.org)
26   */
27  public abstract class BreadcrumbAftBase extends WebDriverLegacyITBase {
28  
29      /**
30       * //div[@class='uif-breadcrumbSiblingContent']//div[@class='uif-inputField']//ul[@class='uif-optionList']
31       */
32      public static final String SECOND_BREADCRUMB_NAV_XPATH = "//div[@class='uif-breadcrumbSiblingContent']//div[@class='uif-inputField']//ul[@class='uif-optionList']";
33  
34      /**
35       * (//a[@class='uif-breadcrumbSiblingLink'])[2]
36       * Not final as it needs to be overwritten for the Demo Breadcrumbs smoke test
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          assertFalse(isVisibleByXpath(SECOND_BREADCRUMB_NAV_XPATH));
57          // The second ▼
58          waitAndClickByXpath(getTriangleXpath(), "failed on breadcrumb pageNumber " + pageNumber);
59          Thread.sleep(100);
60          assertTrue(isVisibleByXpath(SECOND_BREADCRUMB_NAV_XPATH));
61          waitAndClickByXpath(getTriangleXpath());
62          assertFalse(isVisibleByXpath(SECOND_BREADCRUMB_NAV_XPATH));
63          waitAndClickByXpath(getTriangleXpath());
64  
65          // The Second selection of the second ▼
66          // you can't just click by link text as the same clickable text is on the left navigation.
67          waitAndClickByXpath(SECOND_BREADCRUMB_NAV_XPATH +"/li[" + pageNumber + "]/a");
68          waitForElementPresentById("TopLink" + pageNumber, "Breadcrumb number " + pageNumber + " failure", 30); // bottom jump to top link
69          driver.getCurrentUrl().contains("pageId=UifCompView-Page" + pageNumber);
70      }
71  
72      protected void testBreadcrumbs() throws Exception {
73          for (int i = 0, s = breadcrumbOrderIndexes.length; i < s; i++) {
74              testBreadcrumb(breadcrumbOrderIndexes[i]);
75          }
76      }
77  
78      protected void testBreadcrumbsShuffled() throws Exception {
79          int[] copiedBreadcrumbOrderIndex = Arrays.copyOf(breadcrumbOrderIndexes, breadcrumbOrderIndexes.length);
80  
81          Collections.shuffle(Arrays.asList(copiedBreadcrumbOrderIndex));
82          for (int i = 0, s = copiedBreadcrumbOrderIndex.length; i < s; i++) {
83              testBreadcrumb(copiedBreadcrumbOrderIndex[i]);
84          }
85      }
86  
87      @Test
88      public void testBreadcrumbBookmark() throws Exception {
89          testBreadcrumbs();
90          passed();
91      }
92  
93      @Test
94      public void testBreadcrumbShuffledBookmark() throws Exception {
95          testBreadcrumbsShuffled();
96          passed();
97      }
98  
99      @Test
100     public void testBreadcrumbNav() throws Exception {
101         testBreadcrumbs();
102         passed();
103     }
104 
105     @Test
106     public void testBreadcrumbShuffledNav() throws Exception {
107         testBreadcrumbsShuffled();
108         passed();
109     }
110 }