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 edu.sampleu.krad.reference;
17  
18  import org.junit.Test;
19  import org.kuali.rice.testtools.selenium.AutomatedFunctionalTestUtils;
20  import org.kuali.rice.testtools.selenium.WebDriverLegacyITBase;
21  import org.kuali.rice.testtools.selenium.WebDriverUtils;
22  
23  /**
24   * Tests the Component section in Rice.
25   *
26   * @author Kuali Rice Team (rice.collab@kuali.org)
27   */
28  public class EmailTypeAft extends WebDriverLegacyITBase {
29  
30      /**
31       *  AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Email%20Type&channelUrl="
32       *   + WebDriverUtils.getBaseUrlString() + AutomatedFunctionalTestUtils.KRAD_LOOKUP_METHOD +
33       *   "org.kuali.rice.kim.impl.identity.email.EntityEmailTypeBo&returnLocation="
34       *   + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK;
35       */
36      public static final String BOOKMARK_URL = AutomatedFunctionalTestUtils.PORTAL + "?channelTitle=Email%20Type&channelUrl="
37              + WebDriverUtils.getBaseUrlString() + AutomatedFunctionalTestUtils.KRAD_LOOKUP_METHOD +
38              "org.kuali.rice.kim.impl.identity.email.EntityEmailTypeBo&returnLocation="
39              + AutomatedFunctionalTestUtils.PORTAL_URL + AutomatedFunctionalTestUtils.HIDE_RETURN_LINK;
40              
41      @Override
42      protected String getBookmarkUrl() {
43          return BOOKMARK_URL;
44      }
45  
46      @Override
47      protected void navigate() throws InterruptedException {
48          waitAndClickKRAD();
49          waitAndClickByLinkText("Email Type");
50      }
51  
52      protected void clickSearch() throws InterruptedException {
53          waitAndClickSearchByText();
54      }
55  
56      //Code for KRAD Test Package.
57      protected void testEmailType() throws Exception {
58          selectFrameIframePortlet();
59  
60          //Search by "Both" Filter in Active Indicator
61          clickSearch();
62          String[][] data = {{"HM", "Home", "b"},
63                  {"OTH", "Other", "c"},
64                  {"WRK", "Work", "a"}};
65          assertTextPresent(data);
66          waitAndClickClearValues();
67  
68          //Search by "Yes" Filter in Active Indicator
69          waitAndClickByXpath("//input[@name='lookupCriteria[active]' and @value='Y']");
70          clickSearch();
71          assertTextPresent(data);
72          waitAndClickClearValues();
73  
74          //Search by "No" Filter in Active Indicator
75          waitAndClickByXpath("//input[@name='lookupCriteria[active]' and @value='N']");
76          clickSearch();
77          waitForTextPresent("No values match this search.");
78          waitAndClickClearValues();
79  
80          //Search by Code Filter
81          waitAndTypeByName("lookupCriteria[code]","HM");
82          clickSearch();
83          String[] assertSearchResultForTypeCode = {"HM", "Home", "b"};
84          assertTextPresent(assertSearchResultForTypeCode);
85          waitAndClickClearValues();
86  
87          //Search by Name Filter
88          waitAndTypeByName("lookupCriteria[name]","Home");
89          clickSearch();
90          String[] assertSearchResultForTypeName = {"HM", "Home", "b"};
91          assertTextPresent(assertSearchResultForTypeName);
92          waitAndClickClearValues();
93      }
94  
95      @Test
96      public void testEmailTypeBookmark() throws Exception {
97          testEmailType();
98          passed();
99      }
100 
101     @Test
102     public void testEmailTypeNav() throws Exception {
103         testEmailType();
104         passed();
105     }
106 }