View Javadoc

1   /**
2    * Copyright 2005-2011 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.samplu.admin.test;
17  
18  import static org.junit.Assert.assertEquals;
19  import static org.junit.Assert.assertTrue;
20  
21  import edu.samplu.common.UpgradedSeleniumITBase;
22  import org.apache.commons.lang.RandomStringUtils;
23  import org.junit.Test;
24  
25  /**
26   * tests that user 'admin', on blanket approving a new County maintenance document, results in a final document
27   * 
28   * @author Kuali Rice Team (rice.collab@kuali.org)
29   */
30  public class LocationCountyBlanketAppIT extends UpgradedSeleniumITBase {
31      @Override
32      public String getTestUrl() {
33          return PORTAL;
34      }
35  
36      @Test
37      public void testCounty() throws Exception {
38          String remotePublicUrl = getBaseUrlString();
39          assertEquals("Kuali Portal Index", selenium.getTitle());
40          selenium.click("link=Administration");
41          selenium.waitForPageToLoad("30000");
42          assertEquals("Kuali Portal Index", selenium.getTitle());
43          selenium.click("link=County");
44          selenium.waitForPageToLoad("30000");
45          assertEquals("Kuali Portal Index", selenium.getTitle());
46          selenium.selectFrame("iframeportlet");
47          selenium.click("//img[@alt='create new']");
48          selenium.waitForPageToLoad("30000");
49          //selenium.setSpeed("2000");
50          String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
51          assertTrue(selenium.isElementPresent("methodToCall.cancel"));
52          selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test County");
53          selenium.click("methodToCall.performLookup.(!!org.kuali.rice.location.impl.country.CountryBo!!).(((code:document.newMaintainableObject.countryCode,))).((`document.newMaintainableObject.countryCode:code,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" + remotePublicUrl
54                  + "/kr/lookup.do;::::).anchor4");
55          selenium.waitForPageToLoad("30000");
56          selenium.type("code", "US");
57          selenium.click("//input[@name='methodToCall.search' and @value='search']");
58          selenium.waitForPageToLoad("30000");
59          selenium.click("link=return value");
60          selenium.waitForPageToLoad("30000");
61          selenium.type("//input[@id='document.newMaintainableObject.code']", RandomStringUtils.randomAlphabetic(2).toUpperCase());
62          selenium.click("methodToCall.performLookup.(!!org.kuali.rice.location.impl.state.StateBo!!).(((countryCode:document.newMaintainableObject.countryCode,code:document.newMaintainableObject.stateCode,))).((`document.newMaintainableObject.countryCode:countryCode,document.newMaintainableObject.stateCode:code,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" + remotePublicUrl
63                  + "/kr/lookup.do;::::).anchor4");
64          selenium.waitForPageToLoad("30000");
65          selenium.type("code", "IN");
66          selenium.click("//input[@name='methodToCall.search' and @value='search']");
67          selenium.waitForPageToLoad("30000");
68          selenium.click("link=return value");
69          selenium.waitForPageToLoad("30000");
70          selenium.type("//input[@id='document.newMaintainableObject.name']", "Validation Test County");
71          selenium.click("//input[@id='document.newMaintainableObject.active']");
72          selenium.click("methodToCall.blanketApprove");
73          selenium.waitForPageToLoad("30000");
74          selenium.selectWindow("null");
75          selenium.click("//img[@alt='doc search']");
76          selenium.waitForPageToLoad("30000");
77          assertEquals("Kuali Portal Index", selenium.getTitle());
78          selenium.selectFrame("iframeportlet");
79          selenium.click("//input[@name='methodToCall.search' and @value='search']");
80          selenium.waitForPageToLoad("30000");
81          docId= "link=" + docId;
82          assertTrue(selenium.isElementPresent(docId));       
83          if(selenium.isElementPresent(docId)){            
84              assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
85          }else{
86              assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));            
87              assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
88          }
89      }
90  }