2016-02-16 22:55:24 -05:00
|
|
|
include ActionDispatch::TestProcess
|
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
FactoryGirl.define do
|
2015-09-09 07:37:50 -04:00
|
|
|
factory :ci_build, class: Ci::Build do
|
2015-10-06 06:01:16 -04:00
|
|
|
name 'test'
|
2016-07-19 07:23:14 -04:00
|
|
|
stage 'test'
|
|
|
|
stage_idx 0
|
2015-10-05 04:14:33 -04:00
|
|
|
ref 'master'
|
|
|
|
tag false
|
2016-08-11 09:22:35 -04:00
|
|
|
status 'pending'
|
2015-12-30 09:12:07 -05:00
|
|
|
created_at 'Di 29. Okt 09:50:00 CET 2013'
|
2015-08-25 21:42:46 -04:00
|
|
|
started_at 'Di 29. Okt 09:51:28 CET 2013'
|
|
|
|
finished_at 'Di 29. Okt 09:53:28 CET 2013'
|
2015-10-05 08:31:51 -04:00
|
|
|
commands 'ls -a'
|
2017-08-31 08:13:40 -04:00
|
|
|
protected false
|
2016-12-12 08:53:05 -05:00
|
|
|
|
2015-08-25 21:42:46 -04:00
|
|
|
options do
|
|
|
|
{
|
2017-02-15 19:05:44 -05:00
|
|
|
image: 'ruby:2.1',
|
|
|
|
services: ['postgres']
|
2015-08-25 21:42:46 -04:00
|
|
|
}
|
|
|
|
end
|
2016-12-12 08:53:05 -05:00
|
|
|
|
2016-07-16 14:10:22 -04:00
|
|
|
yaml_variables do
|
|
|
|
[
|
2016-12-14 09:38:40 -05:00
|
|
|
{ key: 'DB_NAME', value: 'postgres', public: true }
|
2016-07-16 14:10:22 -04:00
|
|
|
]
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
|
2016-06-03 10:22:26 -04:00
|
|
|
pipeline factory: :ci_pipeline
|
2015-09-15 14:51:03 -04:00
|
|
|
|
2016-02-18 04:52:57 -05:00
|
|
|
trait :success do
|
|
|
|
status 'success'
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :failed do
|
|
|
|
status 'failed'
|
|
|
|
end
|
|
|
|
|
2016-01-13 10:05:49 -05:00
|
|
|
trait :canceled do
|
|
|
|
status 'canceled'
|
|
|
|
end
|
|
|
|
|
2016-11-18 12:02:49 -05:00
|
|
|
trait :skipped do
|
|
|
|
status 'skipped'
|
|
|
|
end
|
|
|
|
|
2016-02-18 05:47:35 -05:00
|
|
|
trait :running do
|
|
|
|
status 'running'
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :pending do
|
|
|
|
status 'pending'
|
|
|
|
end
|
|
|
|
|
2016-08-11 09:22:35 -04:00
|
|
|
trait :created do
|
|
|
|
status 'created'
|
|
|
|
end
|
|
|
|
|
2016-07-16 19:48:51 -04:00
|
|
|
trait :manual do
|
2017-03-04 04:06:09 -05:00
|
|
|
status 'manual'
|
2016-07-16 19:48:51 -04:00
|
|
|
self.when 'manual'
|
|
|
|
end
|
|
|
|
|
2016-11-21 11:26:35 -05:00
|
|
|
trait :teardown_environment do
|
2016-12-12 08:53:05 -05:00
|
|
|
environment 'staging'
|
|
|
|
options environment: { name: 'staging',
|
2017-05-25 03:34:03 -04:00
|
|
|
action: 'stop',
|
|
|
|
url: 'http://staging.example.com/$CI_JOB_NAME' }
|
2016-11-21 11:26:35 -05:00
|
|
|
end
|
|
|
|
|
2016-02-18 05:47:35 -05:00
|
|
|
trait :allowed_to_fail do
|
|
|
|
allow_failure true
|
|
|
|
end
|
|
|
|
|
2017-03-02 07:45:01 -05:00
|
|
|
trait :ignored do
|
|
|
|
allowed_to_fail
|
|
|
|
end
|
|
|
|
|
2016-12-12 08:53:05 -05:00
|
|
|
trait :playable do
|
|
|
|
manual
|
|
|
|
end
|
|
|
|
|
2017-04-28 05:38:32 -04:00
|
|
|
trait :retryable do
|
|
|
|
success
|
|
|
|
end
|
|
|
|
|
2017-07-17 06:38:21 -04:00
|
|
|
trait :retried do
|
|
|
|
retried true
|
|
|
|
end
|
|
|
|
|
2017-04-28 05:38:32 -04:00
|
|
|
trait :cancelable do
|
|
|
|
pending
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :erasable do
|
|
|
|
success
|
|
|
|
artifacts
|
|
|
|
end
|
|
|
|
|
2017-03-01 05:39:36 -05:00
|
|
|
trait :tags do
|
|
|
|
tag_list [:docker, :ruby]
|
|
|
|
end
|
|
|
|
|
2017-03-01 05:57:06 -05:00
|
|
|
trait :on_tag do
|
|
|
|
tag true
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :triggered do
|
2017-09-01 13:37:11 -04:00
|
|
|
trigger_request factory: :ci_trigger_request
|
2017-03-01 05:57:06 -05:00
|
|
|
end
|
|
|
|
|
2015-12-04 06:55:23 -05:00
|
|
|
after(:build) do |build, evaluator|
|
2017-07-20 11:12:06 -04:00
|
|
|
build.project ||= build.pipeline.project
|
2015-12-04 06:55:23 -05:00
|
|
|
end
|
|
|
|
|
2015-09-10 09:52:52 -04:00
|
|
|
factory :ci_not_started_build do
|
2015-08-25 21:42:46 -04:00
|
|
|
started_at nil
|
|
|
|
finished_at nil
|
|
|
|
end
|
2015-10-05 04:14:33 -04:00
|
|
|
|
|
|
|
factory :ci_build_tag do
|
|
|
|
tag true
|
|
|
|
end
|
2015-12-30 09:12:07 -05:00
|
|
|
|
2017-02-16 07:13:10 -05:00
|
|
|
trait :coverage do
|
2016-02-04 05:08:58 -05:00
|
|
|
coverage 99.9
|
2017-02-16 07:13:10 -05:00
|
|
|
coverage_regex '/(d+)/'
|
2016-02-04 05:08:58 -05:00
|
|
|
end
|
|
|
|
|
2016-02-19 12:06:53 -05:00
|
|
|
trait :trace do
|
2016-02-01 05:29:41 -05:00
|
|
|
after(:create) do |build, evaluator|
|
2017-04-06 12:20:27 -04:00
|
|
|
build.trace.set('BUILD TRACE')
|
2016-01-11 10:30:01 -05:00
|
|
|
end
|
2015-12-30 09:12:07 -05:00
|
|
|
end
|
2016-02-02 09:51:48 -05:00
|
|
|
|
2017-04-17 07:59:55 -04:00
|
|
|
trait :unicode_trace do
|
|
|
|
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-02-16 07:13:10 -05:00
|
|
|
trait :erased do
|
|
|
|
erased_at Time.now
|
|
|
|
erased_by factory: :user
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :queued do
|
|
|
|
queued_at Time.now
|
|
|
|
runner factory: :ci_runner
|
|
|
|
end
|
|
|
|
|
2016-02-02 09:51:48 -05:00
|
|
|
trait :artifacts do
|
|
|
|
after(:create) do |build, _|
|
|
|
|
build.artifacts_file =
|
2016-02-03 05:24:44 -05:00
|
|
|
fixture_file_upload(Rails.root.join('spec/fixtures/ci_build_artifacts.zip'),
|
|
|
|
'application/zip')
|
2016-02-02 09:51:48 -05:00
|
|
|
|
|
|
|
build.artifacts_metadata =
|
2016-02-03 05:24:44 -05:00
|
|
|
fixture_file_upload(Rails.root.join('spec/fixtures/ci_build_artifacts_metadata.gz'),
|
2016-02-10 08:09:11 -05:00
|
|
|
'application/x-gzip')
|
2016-02-04 05:08:58 -05:00
|
|
|
|
2016-02-02 09:51:48 -05:00
|
|
|
build.save!
|
|
|
|
end
|
|
|
|
end
|
2016-07-28 01:09:40 -04:00
|
|
|
|
|
|
|
trait :artifacts_expired do
|
|
|
|
after(:create) do |build, _|
|
|
|
|
build.artifacts_file =
|
|
|
|
fixture_file_upload(Rails.root.join('spec/fixtures/ci_build_artifacts.zip'),
|
|
|
|
'application/zip')
|
|
|
|
|
|
|
|
build.artifacts_metadata =
|
|
|
|
fixture_file_upload(Rails.root.join('spec/fixtures/ci_build_artifacts_metadata.gz'),
|
|
|
|
'application/x-gzip')
|
|
|
|
|
|
|
|
build.artifacts_expire_at = 1.minute.ago
|
|
|
|
|
|
|
|
build.save!
|
|
|
|
end
|
|
|
|
end
|
2017-01-18 05:38:59 -05:00
|
|
|
|
|
|
|
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
|
2017-02-15 19:05:44 -05:00
|
|
|
|
|
|
|
trait :extended_options do
|
|
|
|
options do
|
|
|
|
{
|
2017-06-05 10:15:09 -04:00
|
|
|
image: { name: 'ruby:2.1', entrypoint: '/bin/sh' },
|
|
|
|
services: ['postgres', { name: 'docker:dind', entrypoint: '/bin/sh', command: 'sleep 30', alias: 'docker' }],
|
2017-03-23 09:37:49 -04:00
|
|
|
after_script: %w(ls date),
|
2017-02-15 19:05:44 -05:00
|
|
|
artifacts: {
|
|
|
|
name: 'artifacts_file',
|
|
|
|
untracked: false,
|
|
|
|
paths: ['out/'],
|
|
|
|
when: 'always',
|
|
|
|
expire_in: '7d'
|
|
|
|
},
|
|
|
|
cache: {
|
|
|
|
key: 'cache_key',
|
|
|
|
untracked: false,
|
2017-06-27 10:38:12 -04:00
|
|
|
paths: ['vendor/*'],
|
|
|
|
policy: 'pull-push'
|
2017-02-15 19:05:44 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2017-03-02 11:44:15 -05:00
|
|
|
|
|
|
|
trait :no_options do
|
|
|
|
options { {} }
|
|
|
|
end
|
2017-04-04 04:14:46 -04:00
|
|
|
|
|
|
|
trait :non_playable do
|
|
|
|
status 'created'
|
|
|
|
self.when 'manual'
|
|
|
|
end
|
2017-08-22 04:01:11 -04:00
|
|
|
|
2017-08-31 08:13:40 -04:00
|
|
|
trait :protected do
|
2017-08-22 04:01:11 -04:00
|
|
|
protected true
|
|
|
|
end
|
2015-08-25 21:42:46 -04:00
|
|
|
end
|
|
|
|
end
|