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  
19  import static org.junit.Assert.assertEquals;
20  import static org.junit.Assert.assertTrue;
21  
22  import edu.samplu.common.UpgradedSeleniumITBase;
23  import org.junit.After;
24  import org.junit.Before;
25  import org.junit.Test;
26  
27  import com.thoughtworks.selenium.DefaultSelenium;
28  import com.thoughtworks.selenium.Selenium;
29  /**
30   * tests that user 'admin', on blanket approving a new Campus maintenance document, results in a final document
31   * 
32   * @author Kuali Rice Team (rice.collab@kuali.org)
33   */
34  public class LocationCampusBlanketAppIT extends UpgradedSeleniumITBase {
35      @Override
36      public String getTestUrl() {
37          return PORTAL;
38      }
39  
40      @Test
41      public void testCampus() throws Exception {
42          assertEquals("Kuali Portal Index", selenium.getTitle());
43          selenium.click("link=Administration");
44          selenium.waitForPageToLoad("30000");
45          assertEquals("Kuali Portal Index", selenium.getTitle());
46          selenium.click("link=Campus");
47          selenium.waitForPageToLoad("30000");
48          assertEquals("Kuali Portal Index", selenium.getTitle());
49          selenium.selectFrame("iframeportlet");
50          selenium.click("//img[@alt='create new']");        
51          selenium.waitForPageToLoad("30000");
52          assertTrue(selenium.isElementPresent("name=methodToCall.cancel"));
53          String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
54         
55          selenium.type("id=document.documentHeader.documentDescription", "Validation Test Campus");
56          selenium.type("id=document.newMaintainableObject.code", "VC");
57          selenium.type("id=document.newMaintainableObject.name", "Validation Test Campus");
58          selenium.type("id=document.newMaintainableObject.shortName", "VTC");
59          selenium.select("id=document.newMaintainableObject.campusTypeCode", "label=B - BOTH");
60          selenium.click("name=methodToCall.blanketApprove");
61          selenium.waitForPageToLoad("30000");
62          selenium.selectWindow("null");
63          selenium.click("//img[@alt='doc search']");
64          selenium.waitForPageToLoad("30000");
65          assertEquals("Kuali Portal Index", selenium.getTitle());
66          selenium.selectFrame("iframeportlet");
67          selenium.click("//input[@name='methodToCall.search' and @value='search']");
68          selenium.waitForPageToLoad("30000");
69          docId= "link=" + docId;
70          assertTrue(selenium.isElementPresent(docId));       
71          if(selenium.isElementPresent(docId)){            
72              assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
73          }else{
74              assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));            
75              assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
76          }
77          
78      }
79  }