blob: 23ca0d225b619d82a8f6e9c1946076b7186db24f [file] [log] [blame]
Dan Shic1d263b2013-10-04 17:31:38 -07001# Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5import atexit
6import logging
7import os
8import urllib2
9
Dan Shi96c77cb2013-11-19 10:30:37 -080010try:
11 from selenium import webdriver
12except ImportError:
13 # Ignore import error, as this can happen when builder tries to call the
14 # setup method of test that imports chromedriver.
15 logging.error('selenium module failed to be imported.')
16 pass
Dan Shic1d263b2013-10-04 17:31:38 -070017
Dan Shic1d263b2013-10-04 17:31:38 -070018from autotest_lib.client.bin import utils
19from autotest_lib.client.common_lib.cros import chrome
20
21CHROMEDRIVER_EXE_PATH = '/usr/local/chromedriver/chromedriver'
beeps47a51292013-11-20 08:55:23 -080022X_SERVER_DISPLAY = ':0'
23X_AUTHORITY = '/home/chronos/.Xauthority'
24
Dan Shic1d263b2013-10-04 17:31:38 -070025
26class chromedriver(object):
27 """Wrapper class, a context manager type, for tests to use Chrome Driver."""
28
29 def __init__(self, extra_chrome_flags=[], subtract_extra_chrome_flags=[],
Nathan Stoddardab583042014-08-11 10:41:47 -070030 extension_paths=[], is_component=True, username=None,
31 password=None, *args, **kwargs):
Dan Shic1d263b2013-10-04 17:31:38 -070032 """Initialize.
33
34 @param extra_chrome_flags: Extra chrome flags to pass to chrome, if any.
35 @param subtract_extra_chrome_flags: Remove default flags passed to
36 chrome by chromedriver, if any.
beeps47a51292013-11-20 08:55:23 -080037 @param extension_paths: A list of paths to unzipped extensions. Note
38 that paths to crx files won't work.
39 @param is_component: True if the manifest.json has a key.
Nathan Stoddardab583042014-08-11 10:41:47 -070040 @param username: Log in using this username instead of the default.
41 @param username: Log in using this password instead of the default.
Dan Shic1d263b2013-10-04 17:31:38 -070042 """
43 assert os.geteuid() == 0, 'Need superuser privileges'
44
45 # Log in with telemetry
beepsbff9f9d2013-12-06 11:14:08 -080046 self._chrome = chrome.Chrome(extension_paths=extension_paths,
47 is_component=is_component,
Nathan Stoddardab583042014-08-11 10:41:47 -070048 username=username,
49 password=password,
beepsbff9f9d2013-12-06 11:14:08 -080050 extra_browser_args=extra_chrome_flags)
51 self._browser = self._chrome.browser
Dan Shi2bff39b2014-03-28 11:36:13 -070052 # Close all tabs owned and opened by Telemetry, as these cannot be
53 # transferred to ChromeDriver.
54 self._browser.tabs[0].Close()
Dan Shic1d263b2013-10-04 17:31:38 -070055
56 # Start ChromeDriver server
57 self._server = chromedriver_server(CHROMEDRIVER_EXE_PATH)
58
Dan Shi2bff39b2014-03-28 11:36:13 -070059 # Open a new tab using Chrome remote debugging. ChromeDriver expects
60 # a tab opened for remote to work. Tabs opened using Telemetry will be
61 # owned by Telemetry, and will be inaccessible to ChromeDriver.
62 urllib2.urlopen('http://localhost:%i/json/new' %
63 utils.get_chrome_remote_debugging_port())
64
Dan Shic1d263b2013-10-04 17:31:38 -070065 chromeOptions = {'debuggerAddress':
66 ('localhost:%d' %
67 utils.get_chrome_remote_debugging_port())}
68 capabilities = {'chromeOptions':chromeOptions}
69 # Handle to chromedriver, for chrome automation.
Dan Shi96c77cb2013-11-19 10:30:37 -080070 try:
71 self.driver = webdriver.Remote(command_executor=self._server.url,
72 desired_capabilities=capabilities)
73 except NameError:
74 logging.error('selenium module failed to be imported.')
75 raise
Dan Shic1d263b2013-10-04 17:31:38 -070076
77
78 def __enter__(self):
79 return self
80
81
82 def __exit__(self, *args):
83 """Clean up after running the test.
84
85 """
86 if hasattr(self, 'driver') and self.driver:
87 self.driver.close()
88 del self.driver
89
90 if hasattr(self, '_server') and self._server:
91 self._server.close()
92 del self._server
93
94 if hasattr(self, '_browser') and self._browser:
95 self._browser.Close()
96 del self._browser
97
98
beepsbff9f9d2013-12-06 11:14:08 -080099 def get_extension(self, extension_path):
100 """Gets an extension by proxying to the browser.
101
102 @param extension_path: Path to the extension loaded in the browser.
103
104 @return: A telemetry extension object representing the extension.
105 """
106 return self._chrome.get_extension(extension_path)
107
108
Dan Shic1d263b2013-10-04 17:31:38 -0700109class chromedriver_server(object):
110 """A running ChromeDriver server.
111
112 This code is migrated from chrome:
113 src/chrome/test/chromedriver/server/server.py
114 """
115
116 def __init__(self, exe_path):
117 """Starts the ChromeDriver server and waits for it to be ready.
118
119 Args:
120 exe_path: path to the ChromeDriver executable
121 Raises:
122 RuntimeError if ChromeDriver fails to start
123 """
124 if not os.path.exists(exe_path):
125 raise RuntimeError('ChromeDriver exe not found at: ' + exe_path)
126
127 port = utils.get_unused_port()
128 chromedriver_args = [exe_path, '--port=%d' % port]
beeps47a51292013-11-20 08:55:23 -0800129
130 # Chromedriver will look for an X server running on the display
131 # specified through the DISPLAY environment variable.
Ilja H. Friedela5ab1662014-10-15 19:26:40 -0700132 utils.assert_has_X_server()
beeps47a51292013-11-20 08:55:23 -0800133 os.environ['DISPLAY'] = X_SERVER_DISPLAY
134 os.environ['XAUTHORITY'] = X_AUTHORITY
135
Dan Shic1d263b2013-10-04 17:31:38 -0700136 self.bg_job = utils.BgJob(chromedriver_args, stderr_level=logging.DEBUG)
137 self.url = 'http://localhost:%d' % port
138 if self.bg_job is None:
139 raise RuntimeError('ChromeDriver server cannot be started')
140
141 try:
142 timeout_msg = 'Timeout on waiting for ChromeDriver to start.'
143 utils.poll_for_condition(self.is_running,
144 exception=utils.TimeoutError(timeout_msg),
145 timeout=10,
146 sleep_interval=.1)
147 except utils.TimeoutError:
148 self.close_bgjob()
149 raise RuntimeError('ChromeDriver server did not start')
150
151 logging.debug('Chrome Driver server is up and listening at port %d.',
152 port)
153 atexit.register(self.close)
154
155
156 def is_running(self):
157 """Returns whether the server is up and running."""
158 try:
159 urllib2.urlopen(self.url + '/status')
160 return True
161 except urllib2.URLError as e:
162 return False
163
164
165 def close_bgjob(self):
166 """Close background job and log stdout and stderr."""
167 utils.nuke_subprocess(self.bg_job.sp)
168 utils.join_bg_jobs([self.bg_job], timeout=1)
169 result = self.bg_job.result
170 if result.stdout or result.stderr:
171 logging.info('stdout of Chrome Driver:\n%s', result.stdout)
172 logging.error('stderr of Chrome Driver:\n%s', result.stderr)
173
174
175 def close(self):
176 """Kills the ChromeDriver server, if it is running."""
177 if self.bg_job is None:
178 return
179
180 try:
181 urllib2.urlopen(self.url + '/shutdown', timeout=10).close()
182 except:
183 pass
184
185 self.close_bgjob()