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.apache.commons.lang.RandomStringUtils;
23 import org.junit.Test;
24
25
26
27
28
29
30 public class LocationCountyBlanketAppIT extends UpgradedSeleniumITBase {
31 @Override
32 public String getTestUrl() {
33 return PORTAL;
34 }
35
36 @Test
37 public void testCounty() throws Exception {
38 String remotePublicUrl = getBaseUrlString();
39 assertEquals("Kuali Portal Index", selenium.getTitle());
40 selenium.click("link=Administration");
41 selenium.waitForPageToLoad("30000");
42 assertEquals("Kuali Portal Index", selenium.getTitle());
43 selenium.click("link=County");
44 selenium.waitForPageToLoad("30000");
45 assertEquals("Kuali Portal Index", selenium.getTitle());
46 selenium.selectFrame("iframeportlet");
47 selenium.click("//img[@alt='create new']");
48 selenium.waitForPageToLoad("30000");
49
50 String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]");
51 assertTrue(selenium.isElementPresent("methodToCall.cancel"));
52 selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test County");
53 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.location.impl.country.CountryBo!!).(((code:document.newMaintainableObject.countryCode,))).((`document.newMaintainableObject.countryCode:code,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" + remotePublicUrl
54 + "/kr/lookup.do;::::).anchor4");
55 selenium.waitForPageToLoad("30000");
56 selenium.type("code", "US");
57 selenium.click("//input[@name='methodToCall.search' and @value='search']");
58 selenium.waitForPageToLoad("30000");
59 selenium.click("link=return value");
60 selenium.waitForPageToLoad("30000");
61 selenium.type("//input[@id='document.newMaintainableObject.code']", RandomStringUtils.randomAlphabetic(2).toUpperCase());
62 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.location.impl.state.StateBo!!).(((countryCode:document.newMaintainableObject.countryCode,code:document.newMaintainableObject.stateCode,))).((`document.newMaintainableObject.countryCode:countryCode,document.newMaintainableObject.stateCode:code,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" + remotePublicUrl
63 + "/kr/lookup.do;::::).anchor4");
64 selenium.waitForPageToLoad("30000");
65 selenium.type("code", "IN");
66 selenium.click("//input[@name='methodToCall.search' and @value='search']");
67 selenium.waitForPageToLoad("30000");
68 selenium.click("link=return value");
69 selenium.waitForPageToLoad("30000");
70 selenium.type("//input[@id='document.newMaintainableObject.name']", "Validation Test County");
71 selenium.click("//input[@id='document.newMaintainableObject.active']");
72 selenium.click("methodToCall.blanketApprove");
73 selenium.waitForPageToLoad("30000");
74 selenium.selectWindow("null");
75 selenium.click("//img[@alt='doc search']");
76 selenium.waitForPageToLoad("30000");
77 assertEquals("Kuali Portal Index", selenium.getTitle());
78 selenium.selectFrame("iframeportlet");
79 selenium.click("//input[@name='methodToCall.search' and @value='search']");
80 selenium.waitForPageToLoad("30000");
81 docId= "link=" + docId;
82 assertTrue(selenium.isElementPresent(docId));
83 if(selenium.isElementPresent(docId)){
84 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
85 }else{
86 assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]"));
87 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]"));
88 }
89 }
90 }