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.krad.labs.kitchensink;
17  
18  import org.junit.Test;
19  
20  /**
21   * @author Kuali Rice Team (rice.collab@kuali.org)
22   */
23  
24  public class LabsLookupsAft extends LabsKitchenSinkBase {
25  
26      public static final String BOOKMARK_URL = "/kr-krad/uicomponents?viewId=UifCompView&formKey=49dbef40-65ef-424a-ae8a-1741cf947fee&cacheKey=eu0yn3vhdhhb753reybcvd&pageId=UifCompView-Page6&lightbox=true#UifCompView-Page6";
27  
28      private static final String IFRAME_XPATH="//iframe[@class='fancybox-iframe']";
29      
30      @Override
31      protected String getBookmarkUrl() {
32          return BOOKMARK_URL;
33      }
34  
35  	@Override
36  	protected void navigate() throws Exception {
37  		navigateToKitchenSink("Lookups, etc");
38  	}
39  	
40  	@Test
41      public void testLookupsBookmark() throws Exception {
42          testLookups();
43          passed();
44      }
45  
46      @Test
47      public void testLookupsNav() throws Exception {
48          testLookups();
49          passed();
50      }
51      
52      protected void testLookups() throws InterruptedException {
53  // a2 link is now gone, bug or feature?
54  //        waitAndClickByLinkText("a2");
55  //        gotoLightBox();
56  //        assertTextPresent(new String[] {"Travel Account Number:", "a2", "Travel Account Name:", "Travel Account 2", "Code And Description:", "EAT - Expense"});
57  //        waitAndClickButtonByText("Close");
58  
59      	clearTextByName("field72");
60      	waitAndTypeByName("field72","a2");
61          fireEvent("field72", "blur");
62          waitAndClickByName("field76"); // force blur on field72
63      	waitForTextPresent("Travel Account 2");
64  
65          clearTextByName("field76");
66      	waitAndTypeByName("field76","a1");
67          fireEvent("field76", "blur");
68          waitForTextPresent("Travel Account 1");
69  
70          String field79Value = waitAndGetAttributeByName("field79", "value");
71          jGrowl("field79's value is: " + field79Value); // it appears sometimes the value is already a3?
72          clearTextByName("field79");
73          waitAndTypeByName("field79", "a3");
74          fireEvent("field79", "blur");
75          waitAndClickByName("field60"); // force blur on field79
76          waitForTextPresent("Travel Account 3");
77  
78          waitAndClickByXpath("//button[@class='btn btn-default uif-action icon-search']");
79      	gotoIframeByXpath(IFRAME_XPATH);
80          waitAndClickSearchByText();
81      	waitAndClickReturnValue();
82          waitAndClickByXpath("//div[@data-parent='refreshLookups1']/div/div/button[@class='btn btn-default uif-action icon-search']");
83      	gotoIframeByXpath(IFRAME_XPATH);
84          waitAndClickSearchByText();
85          waitAndClickReturnValue();
86  
87          clearTextByName("field70");
88          waitAndTypeByName("field70", "a1");
89          waitAndClickByXpath("//button[@title='Direct Inquiry']");
90          gotoLightBox();
91          assertTextPresent(new String[] {"Travel Account Number:", "a1", "Travel Account Name:", "Travel Account 1", "Code And Description:", "IAT - Income"});
92          waitAndClickButtonByText("Close");
93      }
94  }