View Javadoc

1   /*
2    * Copyright 2006-2012 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.common;
17  
18  import com.thoughtworks.selenium.Selenium;
19  import junit.framework.Assert;
20  import org.junit.After;
21  import org.junit.Before;
22  import org.openqa.selenium.WebDriver;
23  import org.openqa.selenium.WebDriverBackedSelenium;
24  import org.openqa.selenium.firefox.FirefoxDriver;
25  
26  import static junit.framework.Assert.fail;
27  
28  /**
29   * @deprecated Use WebDriverITBase for new tests.
30   * @author Kuali Rice Team (rice.collab@kuali.org)
31   */
32  public abstract class UpgradedSeleniumITBase {
33      public final static String PORTAL = "/portal.do";
34      protected Selenium selenium;
35      protected WebDriver driver;
36  
37      /**
38       * Returns the URL to be used with this test
39       *
40       * @return URL of the test
41       */
42      public abstract String getTestUrl();
43  
44      @Before
45      public void setUp() throws Exception {
46          driver = new FirefoxDriver();
47          if (!getTestUrl().startsWith("/")) {
48              fail("getTestUrl does not start with /"); // TODO add it?
49          }
50          selenium = new WebDriverBackedSelenium(driver, getBaseUrlString() + getTestUrl());
51  
52          // Login
53          selenium.open(getBaseUrlString() + getTestUrl());
54          login(selenium);
55      }
56  
57      public static String getBaseUrlString() {
58          String baseUrl = System.getProperty("remote.public.url");
59          if (baseUrl == null) {
60              baseUrl = "http://localhost:8080";
61          } else if (baseUrl.endsWith("/")) {
62              baseUrl = baseUrl.substring(0, baseUrl.length() - 1);
63          } else if (!baseUrl.startsWith("http")) {
64              baseUrl = "http://" + baseUrl;
65          }
66          return baseUrl;
67      }
68  
69      public static void login(Selenium selenium) {
70          if (System.getProperty("remote.autologin") == null) {
71              Assert.assertEquals("Login", selenium.getTitle());
72              selenium.type("__login_user", "admin");
73              selenium.click("//input[@value='Login']");
74              selenium.waitForPageToLoad("30000");
75          }
76      }
77  
78      /**
79       * Useful to set -Dremote.driver.dontTearDown=f  -Dremote.driver.dontTearDown=n to not shutdown the browser when
80       * working on tests.
81       * @throws Exception
82       */
83      @After
84      public void tearDown() throws Exception {
85          if (System.getProperty("remote.driver.dontTearDown") == null ||
86                  "f".startsWith(System.getProperty("remote.driver.dontTearDown").toLowerCase()) ||
87                  "n".startsWith(System.getProperty("remote.driver.dontTearDown").toLowerCase())) {
88              selenium.stop();
89              driver.quit(); // TODO not tested with chrome, the service stop might need this check too
90          }
91      }
92  }