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', on blanket approving a new group maintenance document, results in a final document
26   * 
27   * @author Kuali Rice Team (rice.collab@kuali.org)
28   */
29  public class IdentityGroupBlanketAppIT extends UpgradedSeleniumITBase {
30      @Override
31      public String getTestUrl() {
32          return PORTAL;
33      }
34  
35      @Test
36      public void createIdentityGroupDoc() throws Exception {
37          assertEquals("Kuali Portal Index", selenium.getTitle());
38          selenium.click("link=Administration");
39          selenium.waitForPageToLoad("30000");
40          assertEquals("Kuali Portal Index", selenium.getTitle());
41          selenium.click("link=Group");
42          selenium.waitForPageToLoad("30000");
43          assertEquals("Kuali Portal Index", selenium.getTitle());
44          selenium.selectFrame("iframeportlet");
45          selenium.click("//img[@alt='create new']");
46          selenium.waitForPageToLoad("30000");
47          String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
48          selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test Group");
49          selenium.select("//select[@id='document.groupNamespace']", IdentityResponsibilityBlanketAppIT.LABEL_KUALI_KUALI_SYSTEMS);
50          selenium.waitForPageToLoad("30000");
51          selenium.type("//input[@id='document.groupName']", "Validation Test Group1");
52          selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kim.impl.identity.PersonImpl!!).(((principalId:member.memberId,principalName:member.memberName))).((``)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;;::::).anchorAssignees");
53          selenium.waitForPageToLoad("30000");
54          selenium.click("//input[@name='methodToCall.search' and @value='search']");
55          selenium.waitForPageToLoad("30000");
56          selenium.click("link=return value");
57          selenium.waitForPageToLoad("30000");
58          selenium.click("methodToCall.addMember.anchorAssignees");
59          selenium.waitForPageToLoad("30000");
60          selenium.click("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      }
80  }