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.junit.Test;
23  
24  /**
25   * tests that user admin's blanket approve of the Parameter maintenance document results in a final document
26   * The component is chosen from a lookup screen
27   * 
28   * @author Kuali Rice Team (rice.collab@kuali.org)
29   */
30  public class ConfigParameterBlanketAppIT extends UpgradedSeleniumITBase {
31      @Override
32      public String getTestUrl() {
33          return PORTAL;
34      }
35  
36      @Test
37      public void testParameter() throws Exception {
38          assertEquals("Kuali Portal Index", selenium.getTitle());
39          selenium.click("link=Administration");
40          selenium.waitForPageToLoad("30000");
41          assertEquals("Kuali Portal Index", selenium.getTitle());
42          selenium.click("link=Parameter");
43          selenium.waitForPageToLoad("30000");
44          assertEquals("Kuali Portal Index", selenium.getTitle());
45          selenium.selectFrame("iframeportlet");
46          selenium.click("//img[@alt='create new']");
47          selenium.waitForPageToLoad("30000");
48          String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
49          assertEquals("", selenium.getText("methodToCall.cancel"));
50          selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test Parameter");          
51          selenium.select("//select[@id='document.newMaintainableObject.namespaceCode']", "label=KR-NS - Kuali Nervous System");
52          selenium.click("methodToCall.performLookup.(!!org.kuali.rice.coreservice.impl.component.ComponentBo!!).(((code:document.newMaintainableObject.componentCode,namespaceCode:document.newMaintainableObject.namespaceCode,))).((`document.newMaintainableObject.componentCode:code,document.newMaintainableObject.namespaceCode:namespaceCode,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" + System.getProperty("remote.public.url") + "/kr/lookup.do;::::).anchor4");
53          selenium.waitForPageToLoad("30000");
54          selenium.click("//input[@name='methodToCall.search' and @value='search']");
55          selenium.waitForPageToLoad("30000");
56          selenium.click("//table[@id='row']/tbody/tr[3]/td[1]/a");
57          selenium.waitForPageToLoad("30000");
58          selenium.type("//input[@id='document.newMaintainableObject.name']", "Validation Test Parameter1");
59          selenium.type("//textarea[@id='document.newMaintainableObject.description']", "Validation Test Parameter Description");
60          selenium.select("//select[@id='document.newMaintainableObject.parameterTypeCode']", "label=Document Validation");
61          selenium.click("//input[@id='document.newMaintainableObject.evaluationOperatorCodeAllowed']");
62          selenium.click("methodToCall.blanketApprove");
63          selenium.waitForPageToLoad("30000");
64          selenium.selectWindow("null");
65          selenium.click("//img[@alt='doc search']");
66          selenium.waitForPageToLoad("30000");
67          assertEquals("Kuali Portal Index", selenium.getTitle());
68          selenium.selectFrame("iframeportlet");
69          selenium.click("//input[@name='methodToCall.search' and @value='search']");
70          selenium.waitForPageToLoad("30000");
71          docId= "link=" + docId;
72          
73          assertTrue(selenium.isElementPresent(docId));       
74          if(selenium.isElementPresent(docId)){            
75              assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
76          }else{
77              assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));            
78              assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
79          }
80      }
81  }