1
2
3
4
5
6
7
8
9
10
11
12
13
14
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
30
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
39
40
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 /");
49 }
50 selenium = new WebDriverBackedSelenium(driver, getBaseUrlString() + getTestUrl());
51
52
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
80
81
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();
90 }
91 }
92 }