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
30 public class ConfigParameterBlanketAppIT extends UpgradedSeleniumITBase {
31 @Override
32 public String getTestUrl() {
33 return PORTAL;
34 }
35
36 @Test
37 public void testParameter() throws Exception {
38 assertEquals("Kuali Portal Index", selenium.getTitle());
39 selenium.click("link=Administration");
40 selenium.waitForPageToLoad("30000");
41 assertEquals("Kuali Portal Index", selenium.getTitle());
42 selenium.click("link=Parameter");
43 selenium.waitForPageToLoad("30000");
44 assertEquals("Kuali Portal Index", selenium.getTitle());
45 selenium.selectFrame("iframeportlet");
46 selenium.click("//img[@alt='create new']");
47 selenium.waitForPageToLoad("30000");
48 String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
49 assertEquals("", selenium.getText("methodToCall.cancel"));
50 selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test Parameter");
51 selenium.select("//select[@id='document.newMaintainableObject.namespaceCode']", "label=KR-NS - Kuali Nervous System");
52 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.coreservice.impl.component.ComponentBo!!).(((code:document.newMaintainableObject.componentCode,namespaceCode:document.newMaintainableObject.namespaceCode,))).((`document.newMaintainableObject.componentCode:code,document.newMaintainableObject.namespaceCode:namespaceCode,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" + System.getProperty("remote.public.url") + "/kr/lookup.do;::::).anchor4");
53 selenium.waitForPageToLoad("30000");
54 selenium.click("//input[@name='methodToCall.search' and @value='search']");
55 selenium.waitForPageToLoad("30000");
56 selenium.click("//table[@id='row']/tbody/tr[3]/td[1]/a");
57 selenium.waitForPageToLoad("30000");
58 selenium.type("//input[@id='document.newMaintainableObject.name']", "Validation Test Parameter1");
59 selenium.type("//textarea[@id='document.newMaintainableObject.description']", "Validation Test Parameter Description");
60 selenium.select("//select[@id='document.newMaintainableObject.parameterTypeCode']", "label=Document Validation");
61 selenium.click("//input[@id='document.newMaintainableObject.evaluationOperatorCodeAllowed']");
62 selenium.click("methodToCall.blanketApprove");
63 selenium.waitForPageToLoad("30000");
64 selenium.selectWindow("null");
65 selenium.click("//img[@alt='doc search']");
66 selenium.waitForPageToLoad("30000");
67 assertEquals("Kuali Portal Index", selenium.getTitle());
68 selenium.selectFrame("iframeportlet");
69 selenium.click("//input[@name='methodToCall.search' and @value='search']");
70 selenium.waitForPageToLoad("30000");
71 docId= "link=" + docId;
72
73 assertTrue(selenium.isElementPresent(docId));
74 if(selenium.isElementPresent(docId)){
75 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
76 }else{
77 assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));
78 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
79 }
80 }
81 }