View Javadoc

1   /*
2    * Copyright 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/ecl1.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.admin.test;
17  import static org.junit.Assert.assertEquals;
18  import static org.junit.Assert.assertTrue;
19  
20  import org.junit.After;
21  import org.junit.Before;
22  import org.junit.Test;
23  
24  import com.thoughtworks.selenium.DefaultSelenium;
25  import com.thoughtworks.selenium.Selenium;
26  
27  
28  /**
29   * TODO Administrator don't forget to fill this in. 
30   * 
31   * @author Kuali Rice Team (rice.collab@kuali.org)
32   */
33  public class ReferenceCampusTypeIT {
34      private Selenium selenium;    
35      
36      @Before
37      public void setUp() throws Exception {
38          selenium = new DefaultSelenium("localhost", 4444, "*firefox", System.getProperty("remote.public.url"));
39          selenium.start();
40      }
41  
42      @Test
43      public void testEditCampusType() throws Exception {
44          selenium.open(System.getProperty("remote.public.url"));
45          assertEquals("Login", selenium.getTitle());
46          selenium.type("__login_user", "admin");
47          selenium.click("//input[@value='Login']");
48          selenium.waitForPageToLoad("30000");
49          assertEquals("Kuali Portal Index", selenium.getTitle());
50          selenium.click("link=Administration");
51          selenium.waitForPageToLoad("30000");
52          assertEquals("Kuali Portal Index", selenium.getTitle());
53          selenium.click("link=Campus Type");
54          selenium.waitForPageToLoad("30000");
55          assertEquals("Kuali Portal Index", selenium.getTitle());
56          selenium.selectFrame("iframeportlet");
57          selenium.click("//input[@name='methodToCall.search' and @value='search']");
58          selenium.waitForPageToLoad("30000");
59          selenium.click("link=edit");
60          selenium.waitForPageToLoad("30000");
61          assertTrue(selenium.isElementPresent("methodToCall.cancel"));
62          selenium.click("methodToCall.cancel");
63          selenium.waitForPageToLoad("30000");
64          selenium.click("methodToCall.processAnswer.button0");
65          selenium.waitForPageToLoad("30000");
66      }
67  
68      @After
69      public void tearDown() throws Exception {
70          selenium.stop();
71      }
72  }