blob: 4c8872c71defa5851bb987e8e765b1d1a1d31c41 [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
18import common
19from autotest_lib.client.bin import utils
20from autotest_lib.client.common_lib.cros import chrome
21
22CHROMEDRIVER_EXE_PATH = '/usr/local/chromedriver/chromedriver'
beeps47a51292013-11-20 08:55:23 -080023X_SERVER_DISPLAY = ':0'
24X_AUTHORITY = '/home/chronos/.Xauthority'
25
Dan Shic1d263b2013-10-04 17:31:38 -070026
27class chromedriver(object):
28 """Wrapper class, a context manager type, for tests to use Chrome Driver."""
29
30 def __init__(self, extra_chrome_flags=[], subtract_extra_chrome_flags=[],
beeps47a51292013-11-20 08:55:23 -080031 extension_paths=[], is_component=True, *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.
Dan Shic1d263b2013-10-04 17:31:38 -070040 """
41 assert os.geteuid() == 0, 'Need superuser privileges'
42
43 # Log in with telemetry
beepsbff9f9d2013-12-06 11:14:08 -080044 self._chrome = chrome.Chrome(extension_paths=extension_paths,
45 is_component=is_component,
46 extra_browser_args=extra_chrome_flags)
47 self._browser = self._chrome.browser
Dan Shi2bff39b2014-03-28 11:36:13 -070048 # Close all tabs owned and opened by Telemetry, as these cannot be
49 # transferred to ChromeDriver.
50 self._browser.tabs[0].Close()
Dan Shic1d263b2013-10-04 17:31:38 -070051
52 # Start ChromeDriver server
53 self._server = chromedriver_server(CHROMEDRIVER_EXE_PATH)
54
Dan Shi2bff39b2014-03-28 11:36:13 -070055 # Open a new tab using Chrome remote debugging. ChromeDriver expects
56 # a tab opened for remote to work. Tabs opened using Telemetry will be
57 # owned by Telemetry, and will be inaccessible to ChromeDriver.
58 urllib2.urlopen('http://localhost:%i/json/new' %
59 utils.get_chrome_remote_debugging_port())
60
Dan Shic1d263b2013-10-04 17:31:38 -070061 chromeOptions = {'debuggerAddress':
62 ('localhost:%d' %
63 utils.get_chrome_remote_debugging_port())}
64 capabilities = {'chromeOptions':chromeOptions}
65 # Handle to chromedriver, for chrome automation.
Dan Shi96c77cb2013-11-19 10:30:37 -080066 try:
67 self.driver = webdriver.Remote(command_executor=self._server.url,
68 desired_capabilities=capabilities)
69 except NameError:
70 logging.error('selenium module failed to be imported.')
71 raise
Dan Shic1d263b2013-10-04 17:31:38 -070072
73
74 def __enter__(self):
75 return self
76
77
78 def __exit__(self, *args):
79 """Clean up after running the test.
80
81 """
82 if hasattr(self, 'driver') and self.driver:
83 self.driver.close()
84 del self.driver
85
86 if hasattr(self, '_server') and self._server:
87 self._server.close()
88 del self._server
89
90 if hasattr(self, '_browser') and self._browser:
91 self._browser.Close()
92 del self._browser
93
94
beepsbff9f9d2013-12-06 11:14:08 -080095 def get_extension(self, extension_path):
96 """Gets an extension by proxying to the browser.
97
98 @param extension_path: Path to the extension loaded in the browser.
99
100 @return: A telemetry extension object representing the extension.
101 """
102 return self._chrome.get_extension(extension_path)
103
104
Dan Shic1d263b2013-10-04 17:31:38 -0700105class chromedriver_server(object):
106 """A running ChromeDriver server.
107
108 This code is migrated from chrome:
109 src/chrome/test/chromedriver/server/server.py
110 """
111
112 def __init__(self, exe_path):
113 """Starts the ChromeDriver server and waits for it to be ready.
114
115 Args:
116 exe_path: path to the ChromeDriver executable
117 Raises:
118 RuntimeError if ChromeDriver fails to start
119 """
120 if not os.path.exists(exe_path):
121 raise RuntimeError('ChromeDriver exe not found at: ' + exe_path)
122
123 port = utils.get_unused_port()
124 chromedriver_args = [exe_path, '--port=%d' % port]
beeps47a51292013-11-20 08:55:23 -0800125
126 # Chromedriver will look for an X server running on the display
127 # specified through the DISPLAY environment variable.
128 os.environ['DISPLAY'] = X_SERVER_DISPLAY
129 os.environ['XAUTHORITY'] = X_AUTHORITY
130
Dan Shic1d263b2013-10-04 17:31:38 -0700131 self.bg_job = utils.BgJob(chromedriver_args, stderr_level=logging.DEBUG)
132 self.url = 'http://localhost:%d' % port
133 if self.bg_job is None:
134 raise RuntimeError('ChromeDriver server cannot be started')
135
136 try:
137 timeout_msg = 'Timeout on waiting for ChromeDriver to start.'
138 utils.poll_for_condition(self.is_running,
139 exception=utils.TimeoutError(timeout_msg),
140 timeout=10,
141 sleep_interval=.1)
142 except utils.TimeoutError:
143 self.close_bgjob()
144 raise RuntimeError('ChromeDriver server did not start')
145
146 logging.debug('Chrome Driver server is up and listening at port %d.',
147 port)
148 atexit.register(self.close)
149
150
151 def is_running(self):
152 """Returns whether the server is up and running."""
153 try:
154 urllib2.urlopen(self.url + '/status')
155 return True
156 except urllib2.URLError as e:
157 return False
158
159
160 def close_bgjob(self):
161 """Close background job and log stdout and stderr."""
162 utils.nuke_subprocess(self.bg_job.sp)
163 utils.join_bg_jobs([self.bg_job], timeout=1)
164 result = self.bg_job.result
165 if result.stdout or result.stderr:
166 logging.info('stdout of Chrome Driver:\n%s', result.stdout)
167 logging.error('stderr of Chrome Driver:\n%s', result.stderr)
168
169
170 def close(self):
171 """Kills the ChromeDriver server, if it is running."""
172 if self.bg_job is None:
173 return
174
175 try:
176 urllib2.urlopen(self.url + '/shutdown', timeout=10).close()
177 except:
178 pass
179
180 self.close_bgjob()