-
-
Notifications
You must be signed in to change notification settings - Fork 8.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[py] add unit tests for Chrome Options
- Loading branch information
Showing
1 changed file
with
142 additions
and
0 deletions.
There are no files selected for viewing
142 changes: 142 additions & 0 deletions
142
py/test/unit/selenium/webdriver/chrome/chrome_options_tests.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,142 @@ | ||
# Licensed to the Software Freedom Conservancy (SFC) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The SFC licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
from os import path | ||
|
||
import pytest | ||
|
||
from selenium.webdriver.chrome.options import Options | ||
|
||
|
||
@pytest.fixture | ||
def options(): | ||
yield Options() | ||
|
||
|
||
def test_set_binary_location(options): | ||
options.binary_location = '/foo/bar' | ||
assert options._binary_location == '/foo/bar' | ||
|
||
|
||
def test_get_binary_location(options): | ||
options._binary_location = '/foo/bar' | ||
assert options.binary_location == '/foo/bar' | ||
|
||
|
||
def test_set_debugger_address(options): | ||
options.debugger_address = '/foo/bar' | ||
assert options._debugger_address == '/foo/bar' | ||
|
||
|
||
def test_get_debugger_address(options): | ||
options._debugger_address = '/foo/bar' | ||
assert options.debugger_address == '/foo/bar' | ||
|
||
|
||
def test_add_arguments(options): | ||
options.add_argument('foo') | ||
assert 'foo' in options._arguments | ||
|
||
|
||
def test_get_arguments(options): | ||
options._arguments = ['foo'] | ||
assert 'foo' in options.arguments | ||
|
||
|
||
def test_raises_exception_if_argument_is_falsy(options): | ||
with pytest.raises(ValueError): | ||
options.add_argument(None) | ||
|
||
|
||
def test_raises_exception_if_extension_is_falsy(options): | ||
with pytest.raises(ValueError): | ||
options.add_extension(None) | ||
|
||
|
||
def test_raises_exception_if_extension_does_not_exist(options): | ||
with pytest.raises(IOError): | ||
options.add_extension(path.join(path.abspath(path.curdir), 'fakepath')) | ||
|
||
|
||
def test_add_extension(options, mocker): | ||
mocker.patch('os.path.exists').return_value = True | ||
options.add_extension('/foo/bar') | ||
assert '/foo/bar' in options._extension_files | ||
|
||
|
||
def test_raises_exception_if_encoded_extension_is_falsy(options): | ||
with pytest.raises(ValueError): | ||
options.add_encoded_extension(None) | ||
|
||
|
||
def test_add_encoded_extension(options): | ||
options.add_encoded_extension('/foo/bar') | ||
assert '/foo/bar' in options._extensions | ||
|
||
|
||
def test_get_extensions_from_extension_files(options, mocker): | ||
mocker.patch( | ||
'selenium.webdriver.chrome.options.open'.format(__name__)).return_value = open('/dev/null') | ||
mocker.patch('base64.b64encode').return_value = 'foo'.encode() | ||
options._extension_files = ['foo'] | ||
assert 'foo' in options.extensions | ||
|
||
|
||
def test_get_extensions_from_encoded_extensions(options, mocker): | ||
options._extensions = ['foo'] | ||
assert 'foo' in options.extensions | ||
|
||
|
||
def test_add_experimental_options(options): | ||
options.add_experimental_option('foo', 'bar') | ||
assert options._experimental_options['foo'] == 'bar' | ||
|
||
|
||
def test_get_experimental_options(options): | ||
options._experimental_options = {'foo': 'bar'} | ||
assert options.experimental_options['foo'] == 'bar' | ||
|
||
|
||
def test_set_headless(options): | ||
options.set_headless() | ||
assert '--headless' in options._arguments | ||
assert '--disable-gpu' in options._arguments | ||
|
||
|
||
def test_unset_headless(options): | ||
options._arguments = ['--headless', '--disable-gpu'] | ||
options.set_headless(False) | ||
assert '--headless' not in options._arguments | ||
assert '--disable-gpu' not in options._arguments | ||
|
||
|
||
def test_get_headless(options): | ||
options._arguments = ['--headless'] | ||
assert options.headless | ||
|
||
|
||
def test_creates_capabilities(options): | ||
options._arguments = ['foo'] | ||
options._binary_location = '/bar' | ||
options._extensions = ['baz'] | ||
options._debugger_address = '/foo/bar' | ||
caps = options.to_capabilities() | ||
assert Options.KEY in caps | ||
assert 'foo' in caps[Options.KEY]['args'] | ||
assert caps[Options.KEY]['binary'] == '/bar' | ||
assert 'baz' in caps[Options.KEY]['extensions'] | ||
assert caps[Options.KEY]['debuggerAddress'] == '/foo/bar' |