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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7231b698980bf0b656855e460090d63516d8c0ee1e602bf1be80034eabaa948f
4
- data.tar.gz: 112641e434d83121666328a13951dea5f4b8c7e36bf0f35328256227e5e77b7a
3
+ metadata.gz: 4904d31a513567678eb38f85db9f8cad2724e833f8ced5205b0686604f51ac1d
4
+ data.tar.gz: b702f0f1894ff3ada2d662ac10de61cc6848f22e2cdc5c1ab97bde4568cc2f00
5
5
  SHA512:
6
- metadata.gz: dcdb2c0f75ac6944038d714bb3c3de967d7ad75185ab503e26fec5eb3674943afd4f8045087d69b583fb9b16e1adb5a48e5ff1f3812c82dd31f22b77c77e9d6a
7
- data.tar.gz: fb19a43f654b1e9082df331fb459df1eb2fd4c6d176d9fde381fda15f34ee8cb07448a72b3edb31138d3664524653e481bec1c5dd6903130edd9bcedfaef2731
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`)
@@ -64,7 +64,7 @@ module Gitlab
64
64
  process_exec_commands
65
65
 
66
66
  yield self
67
-
67
+ ensure
68
68
  teardown
69
69
  end
70
70
 
@@ -33,7 +33,7 @@ module Gitlab
33
33
  start
34
34
 
35
35
  yield self
36
-
36
+ ensure
37
37
  teardown
38
38
  end
39
39
 
@@ -77,7 +77,7 @@ module Gitlab
77
77
  start
78
78
 
79
79
  yield self
80
-
80
+ ensure
81
81
  teardown
82
82
  end
83
83
 
@@ -34,7 +34,7 @@ module Gitlab
34
34
  start
35
35
 
36
36
  yield self
37
-
37
+ ensure
38
38
  teardown
39
39
  end
40
40
 
@@ -54,7 +54,7 @@ module Gitlab
54
54
  start
55
55
 
56
56
  yield self
57
-
57
+ ensure
58
58
  teardown
59
59
  end
60
60
 
@@ -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|
@@ -21,7 +21,7 @@ module Gitlab
21
21
  before_perform(release)
22
22
 
23
23
  Component::Gitlab.perform do |gitlab|
24
- gitlab.release = release.edition
24
+ gitlab.release = release
25
25
  gitlab.network = 'test'
26
26
  gitlab.name = gitlab_name
27
27
 
@@ -1,5 +1,5 @@
1
1
  module Gitlab
2
2
  module QA
3
- VERSION = '2.7.0'.freeze
3
+ VERSION = '2.7.1'.freeze
4
4
  end
5
5
  end
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.0
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-16 00:00:00.000000000 Z
11
+ date: 2018-10-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: climate_control