2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-06-02 11:05:42 +05:30
|
|
|
include ActionDispatch::TestProcess
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
FactoryBot.define do
|
2020-03-13 15:44:24 +05:30
|
|
|
factory :ci_build, class: 'Ci::Build' do
|
2019-12-21 20:55:43 +05:30
|
|
|
name { 'test' }
|
|
|
|
stage { 'test' }
|
|
|
|
stage_idx { 0 }
|
|
|
|
ref { 'master' }
|
|
|
|
tag { false }
|
|
|
|
add_attribute(:protected) { false }
|
|
|
|
created_at { 'Di 29. Okt 09:50:00 CET 2013' }
|
2020-03-13 15:44:24 +05:30
|
|
|
scheduling_type { 'stage' }
|
2018-03-17 18:26:18 +05:30
|
|
|
pending
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2015-09-25 12:07:36 +05:30
|
|
|
options do
|
|
|
|
{
|
2020-04-22 19:07:51 +05:30
|
|
|
image: 'ruby:2.7',
|
2019-02-15 15:39:39 +05:30
|
|
|
services: ['postgres'],
|
|
|
|
script: ['ls -a']
|
2015-09-25 12:07:36 +05:30
|
|
|
}
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
yaml_variables do
|
|
|
|
[
|
2017-08-17 22:00:37 +05:30
|
|
|
{ key: 'DB_NAME', value: 'postgres', public: true }
|
2016-08-24 12:49:21 +05:30
|
|
|
]
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2016-06-16 23:09:34 +05:30
|
|
|
pipeline factory: :ci_pipeline
|
2020-04-22 19:07:51 +05:30
|
|
|
project { pipeline.project }
|
2015-09-25 12:07:36 +05:30
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
trait :degenerated do
|
2019-12-21 20:55:43 +05:30
|
|
|
options { nil }
|
|
|
|
yaml_variables { nil }
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
trait :started do
|
2019-12-21 20:55:43 +05:30
|
|
|
started_at { 'Di 29. Okt 09:51:28 CET 2013' }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :finished do
|
|
|
|
started
|
2019-12-21 20:55:43 +05:30
|
|
|
finished_at { 'Di 29. Okt 09:53:28 CET 2013' }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
trait :success do
|
2018-03-17 18:26:18 +05:30
|
|
|
finished
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'success' }
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :failed do
|
2018-03-17 18:26:18 +05:30
|
|
|
finished
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'failed' }
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
2016-01-19 16:12:03 +05:30
|
|
|
trait :canceled do
|
2018-03-17 18:26:18 +05:30
|
|
|
finished
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'canceled' }
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :skipped do
|
2018-03-17 18:26:18 +05:30
|
|
|
started
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'skipped' }
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
trait :running do
|
2018-03-17 18:26:18 +05:30
|
|
|
started
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'running' }
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :pending do
|
2019-12-21 20:55:43 +05:30
|
|
|
queued_at { 'Di 29. Okt 09:50:59 CET 2013' }
|
|
|
|
status { 'pending' }
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
trait :created do
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'created' }
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
trait :waiting_for_resource do
|
|
|
|
status { 'waiting_for_resource' }
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
trait :preparing do
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'preparing' }
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
trait :scheduled do
|
|
|
|
schedulable
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'scheduled' }
|
2019-03-02 22:35:43 +05:30
|
|
|
scheduled_at { 1.minute.since }
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :expired_scheduled do
|
|
|
|
schedulable
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'scheduled' }
|
2018-12-05 23:21:45 +05:30
|
|
|
scheduled_at { 1.minute.ago }
|
|
|
|
end
|
|
|
|
|
2016-08-24 12:49:21 +05:30
|
|
|
trait :manual do
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'manual' }
|
|
|
|
self.when { 'manual' }
|
2016-08-24 12:49:21 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :teardown_environment do
|
2019-12-21 20:55:43 +05:30
|
|
|
environment { 'staging' }
|
2019-02-15 15:39:39 +05:30
|
|
|
options do
|
|
|
|
{
|
|
|
|
script: %w(ls),
|
|
|
|
environment: { name: 'staging',
|
2019-12-21 20:55:43 +05:30
|
|
|
action: 'stop',
|
|
|
|
url: 'http://staging.example.com/$CI_JOB_NAME' }
|
2019-02-15 15:39:39 +05:30
|
|
|
}
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
|
|
|
|
trait :deploy_to_production do
|
2019-12-21 20:55:43 +05:30
|
|
|
environment { 'production' }
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
options do
|
|
|
|
{
|
|
|
|
script: %w(ls),
|
|
|
|
environment: { name: 'production',
|
2019-12-21 20:55:43 +05:30
|
|
|
url: 'http://prd.example.com/$CI_JOB_NAME' }
|
2019-02-15 15:39:39 +05:30
|
|
|
}
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :start_review_app do
|
2019-12-21 20:55:43 +05:30
|
|
|
environment { 'review/$CI_COMMIT_REF_NAME' }
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
options do
|
|
|
|
{
|
|
|
|
script: %w(ls),
|
|
|
|
environment: { name: 'review/$CI_COMMIT_REF_NAME',
|
2019-12-21 20:55:43 +05:30
|
|
|
url: 'http://staging.example.com/$CI_JOB_NAME',
|
|
|
|
on_stop: 'stop_review_app' }
|
2019-02-15 15:39:39 +05:30
|
|
|
}
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :stop_review_app do
|
2019-12-21 20:55:43 +05:30
|
|
|
name { 'stop_review_app' }
|
|
|
|
environment { 'review/$CI_COMMIT_REF_NAME' }
|
2018-12-13 13:39:08 +05:30
|
|
|
|
2019-02-15 15:39:39 +05:30
|
|
|
options do
|
|
|
|
{
|
|
|
|
script: %w(ls),
|
|
|
|
environment: { name: 'review/$CI_COMMIT_REF_NAME',
|
2019-12-21 20:55:43 +05:30
|
|
|
url: 'http://staging.example.com/$CI_JOB_NAME',
|
|
|
|
action: 'stop' }
|
2019-02-15 15:39:39 +05:30
|
|
|
}
|
|
|
|
end
|
2018-12-13 13:39:08 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
trait :allowed_to_fail do
|
2019-12-21 20:55:43 +05:30
|
|
|
allow_failure { true }
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :ignored do
|
|
|
|
allowed_to_fail
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :playable do
|
|
|
|
manual
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :retryable do
|
|
|
|
success
|
|
|
|
end
|
|
|
|
|
2018-12-05 23:21:45 +05:30
|
|
|
trait :schedulable do
|
2019-12-21 20:55:43 +05:30
|
|
|
self.when { 'delayed' }
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
script: ['ls -a'],
|
|
|
|
start_in: '1 minute'
|
|
|
|
}
|
|
|
|
end
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :actionable do
|
2019-12-21 20:55:43 +05:30
|
|
|
self.when { 'manual' }
|
2018-12-05 23:21:45 +05:30
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
trait :retried do
|
2019-12-21 20:55:43 +05:30
|
|
|
retried { true }
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :cancelable do
|
|
|
|
pending
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :erasable do
|
|
|
|
success
|
|
|
|
artifacts
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :tags do
|
2019-12-21 20:55:43 +05:30
|
|
|
tag_list do
|
|
|
|
[:docker, :ruby]
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :on_tag do
|
2019-12-21 20:55:43 +05:30
|
|
|
tag { true }
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
trait :triggered do
|
2018-03-17 18:26:18 +05:30
|
|
|
trigger_request factory: :ci_trigger_request
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
trait :resource_group do
|
|
|
|
waiting_for_resource_at { 5.minutes.ago }
|
|
|
|
|
|
|
|
after(:build) do |build, evaluator|
|
|
|
|
build.resource_group = create(:ci_resource_group, project: build.project)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
trait :with_deployment do
|
|
|
|
after(:build) do |build, evaluator|
|
|
|
|
##
|
|
|
|
# Build deployment/environment relations if environment name is set
|
|
|
|
# to the job. If `build.deployment` has already been set, it doesn't
|
|
|
|
# build a new instance.
|
2020-04-08 14:13:33 +05:30
|
|
|
environment = Gitlab::Ci::Pipeline::Seed::Environment.new(build).to_resource
|
2019-12-21 20:55:43 +05:30
|
|
|
build.deployment =
|
2020-04-08 14:13:33 +05:30
|
|
|
Gitlab::Ci::Pipeline::Seed::Deployment.new(build, environment).to_resource
|
2019-12-21 20:55:43 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
trait :tag do
|
2019-12-21 20:55:43 +05:30
|
|
|
tag { true }
|
2015-10-24 18:46:33 +05:30
|
|
|
end
|
2016-01-19 16:12:03 +05:30
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :coverage do
|
2019-12-21 20:55:43 +05:30
|
|
|
coverage { 99.9 }
|
|
|
|
coverage_regex { '/(d+)/' }
|
2016-06-02 11:05:42 +05:30
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
trait :trace_live do
|
2016-04-02 18:10:28 +05:30
|
|
|
after(:create) do |build, evaluator|
|
2017-08-17 22:00:37 +05:30
|
|
|
build.trace.set('BUILD TRACE')
|
2016-01-19 16:12:03 +05:30
|
|
|
end
|
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
trait :trace_artifact do
|
|
|
|
after(:create) do |build, evaluator|
|
|
|
|
create(:ci_job_artifact, :trace, job: build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-09-04 21:01:54 +05:30
|
|
|
trait :trace_with_duplicate_sections do
|
|
|
|
after(:create) do |build, evaluator|
|
|
|
|
trace = File.binread(
|
|
|
|
File.expand_path(
|
|
|
|
Rails.root.join('spec/fixtures/trace/trace_with_duplicate_sections')))
|
|
|
|
|
|
|
|
build.trace.set(trace)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :trace_with_sections do
|
|
|
|
after(:create) do |build, evaluator|
|
|
|
|
trace = File.binread(
|
|
|
|
File.expand_path(
|
|
|
|
Rails.root.join('spec/fixtures/trace/trace_with_sections')))
|
|
|
|
|
|
|
|
build.trace.set(trace)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
trait :unicode_trace_live do
|
2017-09-10 17:25:29 +05:30
|
|
|
after(:create) do |build, evaluator|
|
|
|
|
trace = File.binread(
|
|
|
|
File.expand_path(
|
|
|
|
Rails.root.join('spec/fixtures/trace/ansi-sequence-and-unicode')))
|
|
|
|
|
|
|
|
build.trace.set(trace)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :erased do
|
2018-12-05 23:21:45 +05:30
|
|
|
erased_at { Time.now }
|
2017-08-17 22:00:37 +05:30
|
|
|
erased_by factory: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :queued do
|
2018-12-05 23:21:45 +05:30
|
|
|
queued_at { Time.now }
|
2017-08-17 22:00:37 +05:30
|
|
|
runner factory: :ci_runner
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
trait :artifacts do
|
|
|
|
after(:create) do |build|
|
|
|
|
create(:ci_job_artifact, :archive, job: build, expire_at: build.artifacts_expire_at)
|
|
|
|
create(:ci_job_artifact, :metadata, job: build, expire_at: build.artifacts_expire_at)
|
|
|
|
build.reload
|
2016-09-13 17:45:13 +05:30
|
|
|
end
|
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
2018-11-18 11:00:15 +05:30
|
|
|
trait :test_reports do
|
|
|
|
after(:build) do |build|
|
|
|
|
build.job_artifacts << create(:ci_job_artifact, :junit, job: build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
trait :test_reports_with_attachment do
|
|
|
|
after(:build) do |build|
|
|
|
|
build.job_artifacts << create(:ci_job_artifact, :junit_with_attachment, job: build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
trait :broken_test_reports do
|
|
|
|
after(:build) do |build|
|
|
|
|
build.job_artifacts << create(:ci_job_artifact, :junit_with_corrupted_data, job: build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :accessibility_reports do
|
|
|
|
after(:build) do |build|
|
|
|
|
build.job_artifacts << create(:ci_job_artifact, :accessibility, job: build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
trait :coverage_reports do
|
|
|
|
after(:build) do |build|
|
|
|
|
build.job_artifacts << create(:ci_job_artifact, :cobertura, job: build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
trait :terraform_reports do
|
|
|
|
after(:build) do |build|
|
|
|
|
build.job_artifacts << create(:ci_job_artifact, :terraform, job: build)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
trait :expired do
|
2018-12-05 23:21:45 +05:30
|
|
|
artifacts_expire_at { 1.minute.ago }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :with_commit do
|
|
|
|
after(:build) do |build|
|
|
|
|
allow(build).to receive(:commit).and_return build(:commit, :without_author)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :with_commit_and_author do
|
|
|
|
after(:build) do |build|
|
|
|
|
allow(build).to receive(:commit).and_return build(:commit)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :extended_options do
|
|
|
|
options do
|
|
|
|
{
|
2020-04-22 19:07:51 +05:30
|
|
|
image: { name: 'ruby:2.7', entrypoint: '/bin/sh' },
|
2019-12-21 20:55:43 +05:30
|
|
|
services: ['postgres', { name: 'docker:stable-dind', entrypoint: '/bin/sh', command: 'sleep 30', alias: 'docker' }],
|
|
|
|
script: %w(echo),
|
|
|
|
after_script: %w(ls date),
|
|
|
|
artifacts: {
|
|
|
|
name: 'artifacts_file',
|
|
|
|
untracked: false,
|
|
|
|
paths: ['out/'],
|
|
|
|
when: 'always',
|
|
|
|
expire_in: '7d'
|
|
|
|
},
|
|
|
|
cache: {
|
|
|
|
key: 'cache_key',
|
|
|
|
untracked: false,
|
|
|
|
paths: ['vendor/*'],
|
|
|
|
policy: 'pull-push'
|
|
|
|
}
|
2017-08-17 22:00:37 +05:30
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
trait :release_options do
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
only: 'tags',
|
|
|
|
script: ['make changelog | tee release_changelog.txt'],
|
|
|
|
release: {
|
|
|
|
name: 'Release $CI_COMMIT_SHA',
|
|
|
|
description: 'Created using the release-cli $EXTRA_DESCRIPTION',
|
|
|
|
tag_name: 'release-$CI_COMMIT_SHA',
|
|
|
|
ref: '$CI_COMMIT_SHA'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :no_options do
|
|
|
|
options { {} }
|
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
# TODO: move Security traits to ee_ci_build
|
|
|
|
# https://gitlab.com/gitlab-org/gitlab/-/issues/210486
|
2019-12-21 20:55:43 +05:30
|
|
|
trait :dast do
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
artifacts: { reports: { dast: 'gl-dast-report.json' } }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :sast do
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
artifacts: { reports: { sast: 'gl-sast-report.json' } }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
trait :secret_detection do
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
artifacts: { reports: { secret_detection: 'gl-secret-detection-report.json' } }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
trait :dependency_scanning do
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
artifacts: { reports: { dependency_scanning: 'gl-dependency-scanning-report.json' } }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :container_scanning do
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
artifacts: { reports: { container_scanning: 'gl-container-scanning-report.json' } }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-01 13:55:28 +05:30
|
|
|
trait :license_management do
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
artifacts: { reports: { license_management: 'gl-license-management-report.json' } }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
trait :license_scanning do
|
|
|
|
options do
|
|
|
|
{
|
|
|
|
artifacts: { reports: { license_management: 'gl-license-scanning-report.json' } }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
trait :non_playable do
|
2019-12-21 20:55:43 +05:30
|
|
|
status { 'created' }
|
|
|
|
self.when { 'manual' }
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
trait :protected do
|
2019-12-21 20:55:43 +05:30
|
|
|
add_attribute(:protected) { true }
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
|
|
|
|
trait :script_failure do
|
|
|
|
failed
|
2019-12-21 20:55:43 +05:30
|
|
|
failure_reason { 1 }
|
2018-05-09 12:01:36 +05:30
|
|
|
end
|
2018-10-15 14:42:47 +05:30
|
|
|
|
|
|
|
trait :api_failure do
|
|
|
|
failed
|
2019-12-21 20:55:43 +05:30
|
|
|
failure_reason { 2 }
|
2018-10-15 14:42:47 +05:30
|
|
|
end
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
trait :prerequisite_failure do
|
|
|
|
failed
|
2019-12-21 20:55:43 +05:30
|
|
|
failure_reason { 10 }
|
2019-07-07 11:18:12 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
trait :with_runner_session do
|
|
|
|
after(:build) do |build|
|
2018-11-29 20:51:05 +05:30
|
|
|
build.build_runner_session(url: 'https://localhost')
|
2018-11-08 19:23:39 +05:30
|
|
|
end
|
|
|
|
end
|
2015-09-25 12:07:36 +05:30
|
|
|
end
|
|
|
|
end
|