View Javadoc
1   /**
2    * Copyright 2005-2015 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.krad.demo.uif.library.general;
17  
18  import org.junit.Test;
19  
20  import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
21  import org.openqa.selenium.By;
22  
23  /**
24   * @author Kuali Rice Team (rice.collab@kuali.org)
25   */
26  public class LibraryGeneralFeaturesUnifiedViewHeaderAft extends WebDriverLegacyITBase {
27  
28      /**
29       * /kr-krad/kradsampleapp?viewId=Demo-UnifiedHeaderView&methodToCall=start
30       */
31      public static final String BOOKMARK_URL = "/kr-krad/kradsampleapp?viewId=Demo-UnifiedHeaderView&methodToCall=start";
32  
33      @Override
34      protected String getBookmarkUrl() {
35          return BOOKMARK_URL;
36      }
37  
38      @Override
39      protected void navigate() throws Exception {
40          waitAndClickLibraryLink();
41          waitAndClickByLinkText("General Features");
42          waitAndClickByLinkText("Unified View Header");
43      }
44  
45      protected void testGeneralFeaturesUnifiedHeader() throws Exception {
46          selectByName("exampleShown", "Unified Header");
47          waitAndClickByLinkText("Unified example");
48          switchToWindow("Kuali :: View Header");
49          waitForElementPresent(By.xpath("//h1/span[@class='uif-headerText-span']"));
50          assertElementPresentByXpath("//h1/span[2]/p[@class='uif-viewHeader-supportTitle']");
51          driver.close();
52          switchToWindow("Kuali");
53      }
54      
55      protected void testGeneralFeaturesNonUnifiedHeader() throws Exception {
56          selectByName("exampleShown", "Non-Unified Header");
57          waitAndClickByLinkText("Non-Unified example");
58          switchToWindow("Kuali :: View Header");
59          waitForElementPresent(By.xpath("//h1/span[@class='uif-headerText-span']"));
60          assertElementPresentByXpath("//h2/span[@class='uif-headerText-span']");
61          driver.close();
62          switchToWindow("Kuali");
63      }
64      
65      protected void testGeneralFeaturesUnifiedHeaderOptions() throws Exception {
66          selectByName("exampleShown", "Options");
67          waitAndClickByLinkText("Additional unified header options");
68          switchToWindow("Kuali :: View Header");
69          assertTextPresent(new String[]{"metadata information", "Custom Support/Page title"});
70          assertElementPresentByXpath("//h1/p[@class='uif-viewHeader-areaTitle']");
71          assertElementPresentByXpath("//h1/span[@class='uif-headerText-span']");
72          driver.close();
73          switchToWindow("Kuali");
74      }
75      
76      @Test
77      public void testGeneralFeaturesUnifiedViewHeaderBookmark() throws Exception {
78          testGeneralFeaturesUnifiedHeaderOptions();
79          testGeneralFeaturesUnifiedHeader();
80          testGeneralFeaturesNonUnifiedHeader();
81          passed();
82      }
83  
84      @Test
85      public void testGeneralFeaturesUnifiedViewHeaderNav() throws Exception {
86          testGeneralFeaturesUnifiedHeaderOptions();
87          testGeneralFeaturesUnifiedHeader();
88          testGeneralFeaturesNonUnifiedHeader();
89          passed();
90      }  
91  }