Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
bf7129a3
Commit
bf7129a3
authored
Jan 09, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
2bfa401d
7108952d
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
133 additions
and
26 deletions
+133
-26
qa/qa/runtime/browser.rb
qa/qa/runtime/browser.rb
+36
-26
qa/qa/runtime/env.rb
qa/qa/runtime/env.rb
+38
-0
qa/spec/runtime/env_spec.rb
qa/spec/runtime/env_spec.rb
+59
-0
No files found.
qa/qa/runtime/browser.rb
View file @
bf7129a3
...
@@ -41,22 +41,25 @@ module QA
...
@@ -41,22 +41,25 @@ module QA
return
if
Capybara
.
drivers
.
include?
(
:chrome
)
return
if
Capybara
.
drivers
.
include?
(
:chrome
)
Capybara
.
register_driver
:chrome
do
|
app
|
Capybara
.
register_driver
QA
::
Runtime
::
Env
.
browser
do
|
app
|
capabilities
=
Selenium
::
WebDriver
::
Remote
::
Capabilities
.
chrome
(
capabilities
=
Selenium
::
WebDriver
::
Remote
::
Capabilities
.
send
(
QA
::
Runtime
::
Env
.
browser
,
# This enables access to logs with `page.driver.manage.get_log(:browser)`
# This enables access to logs with `page.driver.manage.get_log(:browser)`
loggingPrefs:
{
loggingPrefs:
{
browser:
"ALL"
,
browser:
"ALL"
,
client:
"ALL"
,
client:
"ALL"
,
driver:
"ALL"
,
driver:
"ALL"
,
server:
"ALL"
server:
"ALL"
}
})
)
if
QA
::
Runtime
::
Env
.
accept_insecure_certs?
if
QA
::
Runtime
::
Env
.
accept_insecure_certs?
capabilities
[
'acceptInsecureCerts'
]
=
true
capabilities
[
'acceptInsecureCerts'
]
=
true
end
end
options
=
Selenium
::
WebDriver
::
Chrome
::
Options
.
new
# QA::Runtime::Env.browser.capitalize will work for every driver type except PhantomJS.
# We will have no use to use PhantomJS so this shouldn't be a problem.
options
=
Selenium
::
WebDriver
.
const_get
(
QA
::
Runtime
::
Env
.
browser
.
capitalize
)
::
Options
.
new
if
QA
::
Runtime
::
Env
.
browser
==
:chrome
options
.
add_argument
(
"window-size=1240,1680"
)
options
.
add_argument
(
"window-size=1240,1680"
)
# Chrome won't work properly in a Docker container in sandbox mode
# Chrome won't work properly in a Docker container in sandbox mode
...
@@ -70,6 +73,7 @@ module QA
...
@@ -70,6 +73,7 @@ module QA
# https://developers.google.com/web/updates/2017/04/headless-chrome#cli
# https://developers.google.com/web/updates/2017/04/headless-chrome#cli
options
.
add_argument
(
"disable-gpu"
)
options
.
add_argument
(
"disable-gpu"
)
end
end
end
# Use the same profile on QA runs if CHROME_REUSE_PROFILE is true.
# Use the same profile on QA runs if CHROME_REUSE_PROFILE is true.
# Useful to speed up local QA.
# Useful to speed up local QA.
...
@@ -81,12 +85,18 @@ module QA
...
@@ -81,12 +85,18 @@ module QA
# Disable /dev/shm use in CI. See https://gitlab.com/gitlab-org/gitlab-ee/issues/4252
# Disable /dev/shm use in CI. See https://gitlab.com/gitlab-org/gitlab-ee/issues/4252
options
.
add_argument
(
"disable-dev-shm-usage"
)
if
QA
::
Runtime
::
Env
.
running_in_ci?
options
.
add_argument
(
"disable-dev-shm-usage"
)
if
QA
::
Runtime
::
Env
.
running_in_ci?
Capybara
::
Selenium
::
Driver
.
new
(
selenium_options
=
{
app
,
browser:
QA
::
Runtime
::
Env
.
browser
,
browser: :chrome
,
clear_local_storage:
true
,
clear_local_storage:
true
,
desired_capabilities:
capabilities
,
desired_capabilities:
capabilities
,
options:
options
options:
options
}
selenium_options
[
:url
]
=
QA
::
Runtime
::
Env
.
remote_grid
if
QA
::
Runtime
::
Env
.
remote_grid
Capybara
::
Selenium
::
Driver
.
new
(
app
,
selenium_options
)
)
end
end
...
@@ -94,7 +104,7 @@ module QA
...
@@ -94,7 +104,7 @@ module QA
Capybara
::
Screenshot
.
prune_strategy
=
:keep_last_run
Capybara
::
Screenshot
.
prune_strategy
=
:keep_last_run
# From https://github.com/mattheworiordan/capybara-screenshot/issues/84#issuecomment-41219326
# From https://github.com/mattheworiordan/capybara-screenshot/issues/84#issuecomment-41219326
Capybara
::
Screenshot
.
register_driver
(
:chrome
)
do
|
driver
,
path
|
Capybara
::
Screenshot
.
register_driver
(
QA
::
Runtime
::
Env
.
browser
)
do
|
driver
,
path
|
driver
.
browser
.
save_screenshot
(
path
)
driver
.
browser
.
save_screenshot
(
path
)
end
end
...
@@ -103,8 +113,8 @@ module QA
...
@@ -103,8 +113,8 @@ module QA
end
end
Capybara
.
configure
do
|
config
|
Capybara
.
configure
do
|
config
|
config
.
default_driver
=
:chrome
config
.
default_driver
=
QA
::
Runtime
::
Env
.
browser
config
.
javascript_driver
=
:chrome
config
.
javascript_driver
=
QA
::
Runtime
::
Env
.
browser
config
.
default_max_wait_time
=
10
config
.
default_max_wait_time
=
10
# https://github.com/mattheworiordan/capybara-screenshot/issues/164
# https://github.com/mattheworiordan/capybara-screenshot/issues/164
config
.
save_path
=
::
File
.
expand_path
(
'../../tmp'
,
__dir__
)
config
.
save_path
=
::
File
.
expand_path
(
'../../tmp'
,
__dir__
)
...
...
qa/qa/runtime/env.rb
View file @
bf7129a3
...
@@ -58,6 +58,34 @@ module QA
...
@@ -58,6 +58,34 @@ module QA
@personal_access_token
||=
ENV
[
'PERSONAL_ACCESS_TOKEN'
]
@personal_access_token
||=
ENV
[
'PERSONAL_ACCESS_TOKEN'
]
end
end
def
remote_grid
# if username specified, password/auth token is required
# can be
# - "http://user:pass@somehost.com/wd/hub"
# - "https://user:pass@somehost.com:443/wd/hub"
# - "http://localhost:4444/wd/hub"
return
unless
ENV
[
'QA_REMOTE_GRID'
]
"
#{
remote_grid_protocol
}
://
#{
remote_grid_credentials
}#{
ENV
[
'QA_REMOTE_GRID'
]
}
/wd/hub"
end
def
remote_grid_username
ENV
[
'QA_REMOTE_GRID_USERNAME'
]
end
def
remote_grid_access_key
ENV
[
'QA_REMOTE_GRID_ACCESS_KEY'
]
end
def
remote_grid_protocol
ENV
[
'QA_REMOTE_GRID_PROTOCOL'
]
||
'http'
end
def
browser
ENV
[
'QA_BROWSER'
].
nil?
?
:chrome
:
ENV
[
'QA_BROWSER'
].
to_sym
end
def
user_username
def
user_username
ENV
[
'GITLAB_USERNAME'
]
ENV
[
'GITLAB_USERNAME'
]
end
end
...
@@ -160,6 +188,16 @@ module QA
...
@@ -160,6 +188,16 @@ module QA
private
private
def
remote_grid_credentials
if
remote_grid_username
raise
ArgumentError
,
%Q(Please provide an access key for user "
#{
remote_grid_username
}
")
unless
remote_grid_access_key
return
"
#{
remote_grid_username
}
:
#{
remote_grid_access_key
}
@"
end
''
end
def
enabled?
(
value
,
default:
true
)
def
enabled?
(
value
,
default:
true
)
return
default
if
value
.
nil?
return
default
if
value
.
nil?
...
...
qa/spec/runtime/env_spec.rb
View file @
bf7129a3
...
@@ -207,4 +207,63 @@ describe QA::Runtime::Env do
...
@@ -207,4 +207,63 @@ describe QA::Runtime::Env do
expect
{
described_class
.
can_test?
:foo
}.
to
raise_error
(
ArgumentError
,
'Unknown feature "foo"'
)
expect
{
described_class
.
can_test?
:foo
}.
to
raise_error
(
ArgumentError
,
'Unknown feature "foo"'
)
end
end
end
end
describe
'remote grid credentials'
do
it
'is blank if username is empty'
do
stub_env
(
'QA_REMOTE_GRID_USERNAME'
,
nil
)
expect
(
described_class
.
send
(
:remote_grid_credentials
)).
to
eq
(
''
)
end
it
'throws ArgumentError if GRID_ACCESS_KEY is not specified with USERNAME'
do
stub_env
(
'QA_REMOTE_GRID_USERNAME'
,
'foo'
)
expect
{
described_class
.
send
(
:remote_grid_credentials
)
}.
to
raise_error
(
ArgumentError
,
'Please provide an access key for user "foo"'
)
end
it
'returns a user:key@ combination when all args are satiated'
do
stub_env
(
'QA_REMOTE_GRID_USERNAME'
,
'foo'
)
stub_env
(
'QA_REMOTE_GRID_ACCESS_KEY'
,
'bar'
)
expect
(
described_class
.
send
(
:remote_grid_credentials
)).
to
eq
(
'foo:bar@'
)
end
end
describe
'.remote_grid_protocol'
do
it
'defaults protocol to http'
do
stub_env
(
'QA_REMOTE_GRID_PROTOCOL'
,
nil
)
expect
(
described_class
.
remote_grid_protocol
).
to
eq
(
'http'
)
end
end
describe
'.remote_grid'
do
it
'is falsey if QA_REMOTE_GRID is not set'
do
expect
(
described_class
.
remote_grid
).
to
be_falsey
end
it
'accepts https protocol'
do
stub_env
(
'QA_REMOTE_GRID'
,
'localhost:4444'
)
stub_env
(
'QA_REMOTE_GRID_PROTOCOL'
,
'https'
)
expect
(
described_class
.
remote_grid
).
to
eq
(
'https://localhost:4444/wd/hub'
)
end
context
'with credentials'
do
it
'has a grid of http://user:key@grid/wd/hub'
do
stub_env
(
'QA_REMOTE_GRID_USERNAME'
,
'foo'
)
stub_env
(
'QA_REMOTE_GRID_ACCESS_KEY'
,
'bar'
)
stub_env
(
'QA_REMOTE_GRID'
,
'localhost:4444'
)
expect
(
described_class
.
remote_grid
).
to
eq
(
'http://foo:bar@localhost:4444/wd/hub'
)
end
end
context
'without credentials'
do
it
'has a grid of http://grid/wd/hub'
do
stub_env
(
'QA_REMOTE_GRID'
,
'localhost:4444'
)
expect
(
described_class
.
remote_grid
).
to
eq
(
'http://localhost:4444/wd/hub'
)
end
end
end
end
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment