View Javadoc

1   /*
2    * Copyright 2006-2011 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package edu.samplu.travel.krad.test;
17  
18  import com.thoughtworks.selenium.DefaultSelenium;
19  import com.thoughtworks.selenium.Selenium;
20  import edu.samplu.common.UpgradedSeleniumITBase;
21  import org.junit.After;
22  import org.junit.Before;
23  import org.junit.Test;
24  
25  import static org.junit.Assert.assertEquals;
26  import static org.junit.Assert.assertTrue;
27  
28  /**
29   * tests whether the watermarks is work as expected even when they contain an apostrophe
30   * 
31   * @author Kuali Rice Team (rice.collab@kuali.org)
32   */
33  public class WatermarkValidationIT extends UpgradedSeleniumITBase {
34      @Override
35      public String getTestUrl() {
36          return PORTAL;
37      }
38  
39      @Test
40      /**
41       * if watermarking is ok, the cancel link will bring up a confirmation if something was typed into a textbox i.e
42       * the scripts will be working ok
43       */
44      public void testWatermarking() throws Exception {
45  //        selenium.open(System.getProperty("remote.public.url"));
46  //		selenium.type("name=__login_user", "quickstart");
47  //		selenium.click("css=input[type=\"submit\"]");
48  //		selenium.waitForPageToLoad("100000");
49  		selenium.click("link=KRAD");
50  		selenium.waitForPageToLoad("50000");
51  		selenium.click("link=Uif Components (Kitchen Sink)");
52  		selenium.waitForPageToLoad("100000");
53  //        selenium.selectFrame("iframeportlet");
54          selenium.focus("id=u73_control");
55  		selenium.type("id=u73_control", "something");
56          selenium.focus("id=u103_control");
57          selenium.type("id=u103_control", "something else");
58          assertEquals("something", selenium.getValue("xpath=//*[@id=\"u73_control\"]"));
59  		selenium.chooseCancelOnNextConfirmation();
60          // 'cancel' link
61  		selenium.click("id=u29");
62  		assertTrue(selenium.getConfirmation().matches("^Form has unsaved data\\. Do you want to leave anyway[\\s\\S]$"));
63      }
64  
65      public void clearText(String field) throws Exception {
66          selenium.focus(field);
67          selenium.type(field, "");  
68          Thread.sleep(100); 
69      }
70  }