Class: Gitlab::QA::Scenario::Test::Instance::Image
- Inherits:
-
Gitlab::QA::Scenario::Template
- Object
- Gitlab::QA::Scenario::Template
- Gitlab::QA::Scenario::Test::Instance::Image
- Defined in:
- lib/gitlab/qa/scenario/test/instance/image.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#seed_admin_token ⇒ Object
writeonly
Sets the attribute seed_admin_token.
-
#volumes ⇒ Object
writeonly
Sets the attribute volumes.
Instance Method Summary collapse
-
#initialize ⇒ Image
constructor
A new instance of Image.
- #perform(release, *rspec_args) ⇒ Object
Methods inherited from Gitlab::QA::Scenario::Template
Constructor Details
#initialize ⇒ Image
Returns a new instance of Image.
11 12 13 14 |
# File 'lib/gitlab/qa/scenario/test/instance/image.rb', line 11 def initialize @volumes = {} @seed_admin_token = true end |
Instance Attribute Details
#seed_admin_token=(value) ⇒ Object (writeonly)
Sets the attribute seed_admin_token
9 10 11 |
# File 'lib/gitlab/qa/scenario/test/instance/image.rb', line 9 def seed_admin_token=(value) @seed_admin_token = value end |
#volumes=(value) ⇒ Object (writeonly)
Sets the attribute volumes
9 10 11 |
# File 'lib/gitlab/qa/scenario/test/instance/image.rb', line 9 def volumes=(value) @volumes = value end |
Instance Method Details
#perform(release, *rspec_args) ⇒ Object
16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
# File 'lib/gitlab/qa/scenario/test/instance/image.rb', line 16 def perform(release, *rspec_args) Component::Gitlab.perform do |gitlab| gitlab.release = release gitlab.volumes = @volumes gitlab.network = 'test' gitlab.seed_admin_token = @seed_admin_token gitlab.instance do Component::Specs.perform do |specs| specs.suite = 'Test::Instance::All' specs.hostname = "qa-e2e-specs.#{gitlab.network}" specs.release = gitlab.release specs.network = gitlab.network specs.args = [gitlab.address, *rspec_args] end end end end |