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 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
30
31
32
33 public class WorkFlowRouteRulesBlanketAppIT {
34 private Selenium selenium;
35 @Before
36 public void setUp() throws Exception {
37 selenium = new DefaultSelenium("localhost", 4444, "*firefox", System.getProperty("remote.public.url"));
38 selenium.start();
39 }
40
41 @Test
42 public void testUntitled() throws Exception {
43 selenium.open(System.getProperty("remote.public.url"));
44 assertEquals("Login", selenium.getTitle());
45 selenium.type("__login_user", "admin");
46 selenium.click("//input[@value='Login']");
47 selenium.waitForPageToLoad("30000");
48 assertEquals("Kuali Portal Index", selenium.getTitle());
49 selenium.click("link=Routing Rules");
50 selenium.waitForPageToLoad("30000");
51 assertEquals("Kuali Portal Index", selenium.getTitle());
52 selenium.selectFrame("iframeportlet");
53 selenium.click("//img[@alt='create new']");
54 selenium.waitForPageToLoad("30000");
55 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kew.doctype.bo.DocumentType!!).(((name:documentTypeName))).((``)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;;::::).anchor");
56 selenium.waitForPageToLoad("30000");
57 selenium.type("name", "RoutingRuleDocument");
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.performLookup.(!!org.kuali.rice.kew.rule.bo.RuleTemplateBo!!).(((name:ruleTemplateName))).((``)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;;::::).anchor");
63 selenium.waitForPageToLoad("30000");
64 selenium.type("name", "RuleRoutingTemplate");
65 selenium.click("//input[@name='methodToCall.search' and @value='search']");
66 selenium.waitForPageToLoad("30000");
67 selenium.click("link=return value");
68 selenium.waitForPageToLoad("30000");
69 selenium.click("methodToCall.createRule");
70 selenium.waitForPageToLoad("30000");
71 String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
72 assertTrue(selenium.isElementPresent("methodToCall.cancel"));
73 selenium.type("//input[@id='document.documentHeader.documentDescription']", "Test Routing Rule");
74 selenium.click("//input[@id='document.newMaintainableObject.forceAction']");
75 selenium.type("//textarea[@id='document.newMaintainableObject.description']", "Test Routing Rule1");
76 selenium.type("//input[@id='document.newMaintainableObject.fieldValues(1321:docTypeFullName)']", "DocumentTypeDocument");
77 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.kim.impl.identity.PersonImpl!!).(((principalName:document.newMaintainableObject.add.personResponsibilities.principalName,))).((`document.newMaintainableObject.add.personResponsibilities.principalName:principalName,`)).((<>)).(([])).((**)).((^^)).((&&)).((/personImpl/)).((~~)).(::::;" + System.getProperty("remote.public.url") + "kr/lookup.do;::::).anchor15");
78 selenium.waitForPageToLoad("30000");
79 selenium.click("//input[@name='methodToCall.search' and @value='search']");
80 selenium.waitForPageToLoad("30000");
81 selenium.click("link=return value");
82 selenium.waitForPageToLoad("30000");
83 selenium.select("//select[@id='document.newMaintainableObject.add.personResponsibilities.actionRequestedCd']", "label=ACKNOWLEDGE");
84 selenium.type("//input[@id='document.newMaintainableObject.add.personResponsibilities.priority']", "1");
85 selenium.click("methodToCall.addLine.personResponsibilities.(!!org.kuali.rice.kew.rule.PersonRuleResponsibility!!)");
86 selenium.waitForPageToLoad("30000");
87 selenium.click("methodToCall.blanketApprove");
88 selenium.waitForPageToLoad("30000");
89 selenium.selectWindow("null");
90 selenium.click("//img[@alt='doc search']");
91 selenium.waitForPageToLoad("30000");
92 assertEquals("Kuali Portal Index", selenium.getTitle());
93 selenium.selectFrame("iframeportlet");
94 selenium.click("//input[@name='methodToCall.search' and @value='search']");
95 selenium.waitForPageToLoad("30000");
96
97 docId= "link=" + docId;
98 assertTrue(selenium.isElementPresent(docId));
99 if(selenium.isElementPresent(docId)){
100 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
101 }else{
102 assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));
103 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
104 }
105 }
106
107 @After
108 public void tearDown() throws Exception {
109 selenium.stop();
110 }
111 }