1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package edu.samplu.mainmenu.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 WorkFlowRouteRulesBlanketAppIT extends UpgradedSeleniumITBase {
30 @Override
31 public String getTestUrl() {
32 return PORTAL;
33 }
34
35 @Test
36 public void testUntitled() throws Exception {
37 String remotePublicUrl = getBaseUrlString();
38 assertEquals("Kuali Portal Index", selenium.getTitle());
39 selenium.click("link=Routing Rules");
40 selenium.waitForPageToLoad("30000");
41 assertEquals("Kuali Portal Index", selenium.getTitle());
42 selenium.selectFrame("iframeportlet");
43 selenium.click("//img[@alt='create new']");
44 selenium.waitForPageToLoad("30000");
45 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kew.doctype.bo.DocumentType!!).(((name:documentTypeName))).((``)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;;::::).anchor");
46 selenium.waitForPageToLoad("30000");
47 selenium.type("name", "RoutingRuleDocument");
48 selenium.click("//input[@name='methodToCall.search' and @value='search']");
49 selenium.waitForPageToLoad("30000");
50 selenium.click("link=return value");
51 selenium.waitForPageToLoad("30000");
52 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kew.rule.bo.RuleTemplateBo!!).(((name:ruleTemplateName))).((``)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;;::::).anchor");
53 selenium.waitForPageToLoad("30000");
54 selenium.type("name", "RuleRoutingTemplate");
55 selenium.click("//input[@name='methodToCall.search' and @value='search']");
56 selenium.waitForPageToLoad("30000");
57 selenium.click("link=return value");
58 selenium.waitForPageToLoad("30000");
59 selenium.click("methodToCall.createRule");
60 selenium.waitForPageToLoad("30000");
61 String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
62 assertTrue(selenium.isElementPresent("methodToCall.cancel"));
63 selenium.type("//input[@id='document.documentHeader.documentDescription']", "Test Routing Rule");
64 selenium.click("//input[@id='document.newMaintainableObject.forceAction']");
65 selenium.type("//textarea[@id='document.newMaintainableObject.description']", "Test Routing Rule1");
66 selenium.type("//input[@id='document.newMaintainableObject.fieldValues(1321:docTypeFullName)']", "DocumentTypeDocument");
67 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kim.impl.identity.PersonImpl!!).(((principalName:document.newMaintainableObject.add.personResponsibilities.principalName,))).((`document.newMaintainableObject.add.personResponsibilities.principalName:principalName,`)).((<>)).(([])).((**)).((^^)).((&&)).((/personImpl/)).((~~)).(::::;" + remotePublicUrl + "/kr/lookup.do;::::).anchor15");
68 selenium.waitForPageToLoad("30000");
69 selenium.click("//input[@name='methodToCall.search' and @value='search']");
70 selenium.waitForPageToLoad("30000");
71 selenium.click("link=return value");
72 selenium.waitForPageToLoad("30000");
73 selenium.select("//select[@id='document.newMaintainableObject.add.personResponsibilities.actionRequestedCd']", "label=ACKNOWLEDGE");
74 selenium.type("//input[@id='document.newMaintainableObject.add.personResponsibilities.priority']", "1");
75 selenium.click("methodToCall.addLine.personResponsibilities.(!!org.kuali.rice.kew.rule.PersonRuleResponsibility!!)");
76 selenium.waitForPageToLoad("30000");
77 selenium.click("methodToCall.blanketApprove");
78 selenium.waitForPageToLoad("30000");
79 selenium.selectWindow("null");
80 selenium.click("//img[@alt='doc search']");
81 selenium.waitForPageToLoad("30000");
82 assertEquals("Kuali Portal Index", selenium.getTitle());
83 selenium.selectFrame("iframeportlet");
84 selenium.click("//input[@name='methodToCall.search' and @value='search']");
85 selenium.waitForPageToLoad("30000");
86
87 docId= "link=" + docId;
88 assertTrue(selenium.isElementPresent(docId));
89 if(selenium.isElementPresent(docId)){
90 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
91 }else{
92 assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));
93 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
94 }
95 }
96 }