1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
26
27
28
29 public class IdentityRoleBlanketAppIT extends UpgradedSeleniumITBase {
30 @Override
31 public String getTestUrl() {
32 return PORTAL;
33 }
34
35 @Test
36 public void testRole() 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=Role");
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 selenium.click("//input[@name='methodToCall.search' and @value='search']");
48 selenium.waitForPageToLoad("30000");
49 selenium.click("link=return value");
50 selenium.waitForPageToLoad("30000");
51 String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
52 selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test Role");
53 selenium.select("//select[@id='document.roleNamespace']", IdentityResponsibilityBlanketAppIT.LABEL_KUALI_KUALI_SYSTEMS);
54 selenium.waitForPageToLoad("30000");
55 selenium.type("//input[@id='document.roleName']", "Validation Test Role4");
56 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kim.impl.identity.PersonImpl!!).(((principalId:member.memberId,principalName:member.memberName))).((``)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;;::::).anchorAssignees");
57 selenium.waitForPageToLoad("30000");
58 selenium.click("//input[@name='methodToCall.search' and @value='search']");
59 selenium.waitForPageToLoad("30000");
60 selenium.click("link=return value");
61 selenium.waitForPageToLoad("30000");
62 selenium.click("methodToCall.addMember.anchorAssignees");
63 selenium.waitForPageToLoad("30000");
64 selenium.click("methodToCall.blanketApprove");
65 selenium.waitForPageToLoad("30000");
66 selenium.selectWindow("null");
67 selenium.click("//img[@alt='doc search']");
68 selenium.waitForPageToLoad("30000");
69 assertEquals("Kuali Portal Index", selenium.getTitle());
70 selenium.selectFrame("iframeportlet");
71 selenium.click("//input[@name='methodToCall.search' and @value='search']");
72 selenium.waitForPageToLoad("30000");
73 docId= "link=" + docId;
74 assertTrue(selenium.isElementPresent(docId));
75 if(selenium.isElementPresent(docId)){
76 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
77 }else{
78 assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));
79 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
80 }
81 }
82 }