debian-mirror-gitlab/spec/factories/ci/builds.rb

415 lines
8.5 KiB
Ruby
Raw Normal View History

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
2015-09-25 12:07:36 +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' }
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
{
2017-08-17 22:00:37 +05:30
image: 'ruby:2.1',
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
pipeline factory: :ci_pipeline
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
trait :canceled do
2018-03-17 18:26:18 +05:30
finished
2019-12-21 20:55:43 +05:30
status { 'canceled' }
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
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
2015-12-23 02:04:40 +05:30
after(:build) do |build, evaluator|
2017-09-10 17:25:29 +05:30
build.project ||= build.pipeline.project
2015-12-23 02:04:40 +05:30
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.
build.deployment =
Gitlab::Ci::Pipeline::Seed::Deployment.new(build).to_resource
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
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')
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
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
{
2019-12-21 20:55:43 +05:30
image: { name: 'ruby:2.1', entrypoint: '/bin/sh' },
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
trait :no_options do
options { {} }
end
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
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
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