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  
17  package edu.samplu.common;
18  
19  import org.junit.After;
20  import org.junit.AfterClass;
21  import org.junit.Before;
22  import org.junit.BeforeClass;
23  import org.openqa.selenium.By;
24  import org.openqa.selenium.WebDriver;
25  import org.openqa.selenium.chrome.ChromeDriver;
26  import org.openqa.selenium.chrome.ChromeDriverService;
27  import org.openqa.selenium.firefox.FirefoxDriver;
28  import org.openqa.selenium.firefox.FirefoxProfile;
29  
30  import java.io.File;
31  import java.util.concurrent.TimeUnit;
32  
33  import static org.junit.Assert.assertEquals;
34  
35  /**
36   * Base class for Selenium Webdriver integration tests
37   *
38   * @author Kuali Rice Team (rice.collab@kuali.org)
39   */
40  public abstract class WebDriverITBase {
41  
42      int DEFAULT_IMPLICIT_WAIT_TIME = 30;
43      int SHORT_IMPLICIT_WAIT_TIME = 1;
44  
45      public WebDriver driver;
46      static ChromeDriverService chromeDriverService;
47  
48      /**
49       * Returns the URL to be used with this test
50       *
51       * @return URL of the test
52       */
53      public abstract String getTestUrl();
54  
55      @BeforeClass
56      public static void createAndStartService() throws Exception {
57          String driverParam = System.getProperty("remote.public.driver");
58          if (driverParam != null && "chrome".equals(driverParam.toLowerCase())) {
59              if (System.getProperty("webdriver.chrome.driver") == null) {
60                  if (System.getProperty("remote.public.chrome") != null) {
61                      System.setProperty("webdriver.chrome.driver", System.getProperty("remote.public.chrome"));
62                  }
63              }
64              ChromeDriverService chromeDriverService = new ChromeDriverService.Builder()
65                      .usingChromeDriverExecutable(new File(System.getProperty("remote.public.chrome")))
66                      .usingAnyFreePort()
67                      .build();
68              chromeDriverService.start();
69          }
70      }
71  
72  
73      /**
74       * Setup the WebDriver test, login and load the tested web page
75       *
76       * @throws Exception
77       */
78      @Before
79      public void setUp() throws Exception {
80          driver = getWebDriver();
81          driver.manage().timeouts().implicitlyWait(30, TimeUnit.SECONDS);
82  
83          // Login
84          driver.get(getBaseUrlString() + getTestUrl());
85          driver.findElement(By.name("__login_user")).clear();
86          driver.findElement(By.name("__login_user")).sendKeys("admin");
87          driver.findElement(By.cssSelector("input[type=\"submit\"]")).click();
88      }
89  
90      /**
91       * Tear down the WebDriver test
92       *
93       * @throws Exception
94       */
95      @After
96      public void tearDown() throws Exception {
97          if (System.getProperty("remote.driver.dontTearDown") == null ||
98                  !"f".startsWith(System.getProperty("remote.driver.dontTearDown").toLowerCase()) ||
99                  !"n".startsWith(System.getProperty("remote.driver.dontTearDown").toLowerCase())) {
100             driver.quit(); // TODO not tested with chrome, the service stop might need this check too
101         }
102     }
103 
104     /**
105      * Tear down the WebDriver test
106      *
107      * @throws Exception
108      */
109     @AfterClass
110     public static void stopService() throws Exception {
111         if (chromeDriverService != null) {
112             chromeDriverService.stop();
113         }
114     }
115 
116     /**
117      * Check if an element is present
118      *
119      * <p>
120      * This test takes a while due to the 'implicit wait' time.
121      * </p>
122      *
123      * @param by The locating mechanism of the element
124      * @return true if the element is present, false otherwise
125      */
126     public boolean isElementPresent(By by) {
127         if (driver.findElements(by).isEmpty()) {
128             return false;
129         } else {
130             return true;
131         }
132     }
133 
134     /**
135      * Quickly check if an element is present
136      *
137      * <p>
138      * Just like {@link #isElementPresent(org.openqa.selenium.By)} but with a short 'implicit wait' time.  Use this only
139      * if it is guaranteed that all elements are rendered.
140      * </p>
141      *
142      * @param by The locating mechanism of the element
143      * @return true if the element is present, false otherwise
144      */
145     public boolean isElementPresentQuick(By by) {
146         driver.manage().timeouts().implicitlyWait(SHORT_IMPLICIT_WAIT_TIME, TimeUnit.SECONDS);
147         boolean result = isElementPresent(by);
148         driver.manage().timeouts().implicitlyWait(DEFAULT_IMPLICIT_WAIT_TIME, TimeUnit.SECONDS);
149         return result;
150     }
151 
152     /**
153      * Assert that clicking an element causes a popup window with a specific URL
154      *
155      * @param by The locating mechanism of the element to be clicked
156      * @param windowName The name of the popup window
157      * @param url The URL of the popup window
158      */
159     public void assertPopUpWindowUrl(By by, String windowName, String url) {
160         driver.findElement(by).click();
161         String parentWindowHandle = driver.getWindowHandle();
162         // wait page to be loaded
163         driver.switchTo().window(windowName).findElements(By.tagName("head"));
164         assertEquals(url, driver.getCurrentUrl());
165         driver.switchTo().window(parentWindowHandle);
166     }
167 
168     public static String getBaseUrlString() {
169         String baseUrl = System.getProperty("remote.public.url");
170         if (baseUrl == null) {
171             baseUrl = "http://localhost:8080";
172         } else if (baseUrl.endsWith("/")) {
173             baseUrl = baseUrl.substring(0, baseUrl.length() - 1);
174         } else if (!baseUrl.startsWith("http")) {
175             baseUrl = "http://" + baseUrl;
176         }
177         return baseUrl;
178     }
179 
180     public WebDriver getWebDriver() {
181         String driverParam = System.getProperty("remote.public.driver");
182         if (driverParam == null || "firefox".equalsIgnoreCase(driverParam)) {
183             FirefoxProfile profile = new FirefoxProfile();
184             profile.setEnableNativeEvents(false);
185             return new FirefoxDriver(profile);
186         } else if ("chrome".equalsIgnoreCase(driverParam)) {
187             return new ChromeDriver();
188         }
189         return null;
190     }
191 }
192