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