View Javadoc

1   /*
2    * Copyright 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/ecl1.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 org.junit.After;
22  import org.junit.Before;
23  import org.junit.Test;
24  
25  import com.thoughtworks.selenium.DefaultSelenium;
26  import com.thoughtworks.selenium.Selenium;
27  
28  /**
29   * TODO Administrator don't forget to fill this in. 
30   * 
31   * @author Kuali Rice Team (rice.collab@kuali.org)
32   */
33  public class IdentityRoleBlanketAppIT {
34      
35      private Selenium selenium;
36      @Before
37      public void setUp() throws Exception {
38          selenium = new DefaultSelenium("localhost", 4444, "*firefox", System.getProperty("remote.public.url"));
39          selenium.start();
40      }
41  
42      @Test
43      public void testRole() throws Exception {
44          selenium.open(System.getProperty("remote.public.url"));
45          assertEquals("Login", selenium.getTitle());
46          selenium.type("__login_user", "admin");
47          selenium.click("//input[@value='Login']");
48          selenium.waitForPageToLoad("30000");
49          assertEquals("Kuali Portal Index", selenium.getTitle());
50          selenium.click("link=Administration");
51          selenium.waitForPageToLoad("30000");
52          assertEquals("Kuali Portal Index", selenium.getTitle());
53          selenium.click("link=Role");
54          selenium.waitForPageToLoad("30000");
55          assertEquals("Kuali Portal Index", selenium.getTitle());
56          selenium.selectFrame("iframeportlet");
57          selenium.click("//img[@alt='create new']");
58          selenium.waitForPageToLoad("30000");
59          selenium.click("//input[@name='methodToCall.search' and @value='search']");
60          selenium.waitForPageToLoad("30000");
61          selenium.click("link=return value");
62          selenium.waitForPageToLoad("30000");
63          String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
64          selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test Role");
65          selenium.select("//select[@id='document.roleNamespace']", "label=Kuali Systems");
66          selenium.waitForPageToLoad("30000");
67          selenium.type("//input[@id='document.roleName']", "Validation Test Role4");
68          selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kim.bo.impl.PersonImpl!!).(((principalId:member.memberId,principalName:member.memberName))).((``)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;;::::).anchorAssignees");
69          selenium.waitForPageToLoad("30000");
70          selenium.click("//input[@name='methodToCall.search' and @value='search']");
71          selenium.waitForPageToLoad("30000");
72          selenium.click("link=return value");
73          selenium.waitForPageToLoad("30000");
74          selenium.click("methodToCall.addMember.anchorAssignees");
75          selenium.waitForPageToLoad("30000");
76          selenium.click("methodToCall.blanketApprove");
77          selenium.waitForPageToLoad("30000");
78          selenium.selectWindow("null");
79          selenium.click("//img[@alt='doc search']");
80          selenium.waitForPageToLoad("30000");
81          assertEquals("Kuali Portal Index", selenium.getTitle());
82          selenium.selectFrame("iframeportlet");
83          selenium.click("//input[@name='methodToCall.search' and @value='search']");
84          selenium.waitForPageToLoad("30000");
85          docId= "link=" + docId;
86          assertTrue(selenium.isElementPresent(docId));       
87          if(selenium.isElementPresent(docId)){            
88              assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
89          }else{
90              assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));            
91              assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
92          }
93      }
94  
95      @After
96      public void tearDown() throws Exception {
97          selenium.stop();
98      }
99  }