001 /** 002 * Copyright 2005-2011 The Kuali Foundation 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016 package edu.samplu.admin.test; 017 018 import static org.junit.Assert.assertEquals; 019 import static org.junit.Assert.assertTrue; 020 021 import edu.samplu.common.UpgradedSeleniumITBase; 022 import org.apache.commons.lang.RandomStringUtils; 023 import org.apache.commons.lang.StringUtils; 024 import org.junit.After; 025 import org.junit.Before; 026 import org.junit.Test; 027 028 import com.thoughtworks.selenium.DefaultSelenium; 029 import com.thoughtworks.selenium.Selenium; 030 031 /** 032 * tests that user 'admin', on blanket approving a new Postal Code maintenance document, results in a final document 033 * 034 * @author Kuali Rice Team (rice.collab@kuali.org) 035 */ 036 public class LocationPostCodeBlanketAppIT extends UpgradedSeleniumITBase { 037 @Override 038 public String getTestUrl() { 039 return PORTAL; 040 } 041 042 @Test 043 public void testPostalCode() throws Exception { 044 String remotePublicUrl = getBaseUrlString(); 045 assertEquals("Kuali Portal Index", selenium.getTitle()); 046 selenium.click("link=Administration"); 047 selenium.waitForPageToLoad("30000"); 048 assertEquals("Kuali Portal Index", selenium.getTitle()); 049 selenium.click("link=Postal Code"); 050 selenium.waitForPageToLoad("30000"); 051 assertEquals("Kuali Portal Index", selenium.getTitle()); 052 selenium.selectFrame("iframeportlet"); 053 selenium.click("//img[@alt='create new']"); 054 selenium.waitForPageToLoad("30000"); 055 String docId = selenium.getText("//div[@id='headerarea']/div/table/tbody/tr[1]/td[1]"); 056 assertTrue(selenium.isElementPresent("methodToCall.cancel")); 057 //selenium.setSpeed("2000"); 058 selenium.type("//input[@id='document.documentHeader.documentDescription']", "Validation Test Postal Code"); 059 selenium.click("methodToCall.performLookup.(!!org.kuali.rice.location.impl.country.CountryBo!!).(((code:document.newMaintainableObject.countryCode,))).((`document.newMaintainableObject.countryCode:code,`)).((<>)).(([])).((**)).((^^)).((&&)).((//)).((~~)).(::::;" + remotePublicUrl + "/kr/lookup.do;::::).anchor4"); 060 selenium.waitForPageToLoad("30000"); 061 selenium.type("code", "US"); 062 selenium.click("//input[@name='methodToCall.search' and @value='search']"); 063 selenium.waitForPageToLoad("30000"); 064 selenium.click("link=return value"); 065 selenium.waitForPageToLoad("30000"); 066 selenium.type("//input[@id='document.newMaintainableObject.code']", RandomStringUtils.randomNumeric(5)); 067 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"); 068 selenium.waitForPageToLoad("30000"); 069 selenium.click("//input[@name='methodToCall.search' and @value='search']"); 070 selenium.waitForPageToLoad("30000"); 071 selenium.click("//table[@id='row']/tbody/tr[4]/td[1]/a"); 072 selenium.waitForPageToLoad("30000"); 073 selenium.type("//input[@id='document.newMaintainableObject.cityName']", "Validation Test Postal Code1"); 074 selenium.click("methodToCall.blanketApprove"); 075 selenium.waitForPageToLoad("30000"); 076 selenium.selectWindow("null"); 077 selenium.click("//img[@alt='doc search']"); 078 selenium.waitForPageToLoad("30000"); 079 assertEquals("Kuali Portal Index", selenium.getTitle()); 080 selenium.selectFrame("iframeportlet"); 081 selenium.click("//input[@name='methodToCall.search' and @value='search']"); 082 selenium.waitForPageToLoad("30000"); 083 docId= "link=" + docId; 084 085 assertTrue(selenium.isElementPresent(docId)); 086 if(selenium.isElementPresent(docId)){ 087 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]")); 088 }else{ 089 assertEquals(docId, selenium.getText("//table[@id='row']/tbody/tr[1]/td[1]")); 090 assertEquals("FINAL", selenium.getText("//table[@id='row']/tbody/tr[1]/td[4]")); 091 } 092 } 093 }