gitlab-qa 2.7.0 → 2.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/docs/what_tests_can_be_run.md +4 -2
- data/lib/gitlab/qa/component/gitlab.rb +1 -1
- data/lib/gitlab/qa/component/internet_tunnel.rb +1 -1
- data/lib/gitlab/qa/component/ldap.rb +1 -1
- data/lib/gitlab/qa/component/minio.rb +1 -1
- data/lib/gitlab/qa/component/saml.rb +1 -1
- data/lib/gitlab/qa/runtime/env.rb +3 -1
- data/lib/gitlab/qa/scenario/test/integration/saml.rb +1 -1
- data/lib/gitlab/qa/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4904d31a513567678eb38f85db9f8cad2724e833f8ced5205b0686604f51ac1d
|
|
4
|
+
data.tar.gz: b702f0f1894ff3ada2d662ac10de61cc6848f22e2cdc5c1ab97bde4568cc2f00
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c950dfc7c05c7d788d36f074bf4c1e1cbc1d751a8204c298096864fa2b350ef7552df56ae82f10df88a412a2d325abbbf73faadcd8f59375dadb400618e1c94a
|
|
7
|
+
data.tar.gz: a4182a1d875736230a2113aed7f51a322341c7ab99b849971ab31a014b230ec9c93b1856563380ed54c1e37ee9ddac372053341078de35971370d36d286e5922
|
|
@@ -42,6 +42,8 @@ For more details on the internals, please read the
|
|
|
42
42
|
for failing tests will be saved (default: `/tmp/gitlab-qa`)
|
|
43
43
|
* `DOCKER_HOST` - Docker host to run tests against (default: `http://localhost`)
|
|
44
44
|
* `CHROME_HEADLESS` - when running locally, set to `false` to allow Chrome tests to be visible - watch your tests being run
|
|
45
|
+
* `QA_DEBUG` - set to `true` to verbosely log page object actions. Note: if enabled be aware that sensitive data might be logged. If an input element has a QA selector with `password` in the name, data entered into the input element will be masked. If the element doesn't have `password` in its name it won't be masked.
|
|
46
|
+
* `QA_LOG_PATH` - path to output debug logging to. If not set logging will be output to STDOUT
|
|
45
47
|
|
|
46
48
|
### `Test::Instance::Image CE|EE|<full image address>`
|
|
47
49
|
|
|
@@ -186,7 +188,7 @@ $ gitlab-qa Test::Integration::LDAP EE
|
|
|
186
188
|
|
|
187
189
|
This tests that Group SAML login works as expected with an external SAML identity provider (idp).
|
|
188
190
|
|
|
189
|
-
This scenario spins up a SAML idp provider and verifies that a user is able to login to a group
|
|
191
|
+
This scenario spins up a SAML idp provider and verifies that a user is able to login to a group
|
|
190
192
|
in GitLab that has SAML SSO enabled.
|
|
191
193
|
|
|
192
194
|
To run tests against the GitLab containers, a GitLab QA (`gitlab/gitlab-qa`)
|
|
@@ -212,7 +214,7 @@ $ gitlab-qa Test::Integration::GroupSAML EE
|
|
|
212
214
|
This tests that a GitLab instance works as expected with an external
|
|
213
215
|
SAML identity provider (idp).
|
|
214
216
|
|
|
215
|
-
This scenario spins up a SAML idp provider and verifies that a user is able to login to GitLab instance
|
|
217
|
+
This scenario spins up a SAML idp provider and verifies that a user is able to login to GitLab instance
|
|
216
218
|
using SAML.
|
|
217
219
|
|
|
218
220
|
To run tests against the GitLab containers, a GitLab QA (`gitlab/gitlab-qa`)
|
|
@@ -27,7 +27,9 @@ module Gitlab
|
|
|
27
27
|
'GCLOUD_ACCOUNT_KEY' => :gcloud_account_key,
|
|
28
28
|
'CLOUDSDK_CORE_PROJECT' => :cloudsdk_core_project,
|
|
29
29
|
'GCLOUD_ZONE' => :gcloud_zone,
|
|
30
|
-
'SIGNUP_DISABLED' => :signup_disabled
|
|
30
|
+
'SIGNUP_DISABLED' => :signup_disabled,
|
|
31
|
+
'QA_DEBUG' => :qa_debug,
|
|
32
|
+
'QA_LOG_PATH' => :qa_log_path
|
|
31
33
|
}.freeze
|
|
32
34
|
|
|
33
35
|
ENV_VARIABLES.each_value do |accessor|
|
data/lib/gitlab/qa/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: gitlab-qa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 2.7.
|
|
4
|
+
version: 2.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Grzegorz Bizon
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2018-10-
|
|
11
|
+
date: 2018-10-23 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: climate_control
|