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

149 lines
3.7 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
include ActionDispatch::TestProcess
FactoryBot.define do
factory :ci_job_artifact, class: Ci::JobArtifact do
job factory: :ci_build
2019-12-21 20:55:43 +05:30
file_type { :archive }
file_format { :zip }
2018-03-17 18:26:18 +05:30
2019-12-04 20:38:33 +05:30
trait :expired do
expire_at { Date.yesterday }
end
2018-05-09 12:01:36 +05:30
trait :remote_store do
2019-12-21 20:55:43 +05:30
file_store { JobArtifactUploader::Store::REMOTE}
2018-05-09 12:01:36 +05:30
end
2018-03-17 18:26:18 +05:30
after :build do |artifact|
artifact.project ||= artifact.job.project
end
2018-12-05 23:21:45 +05:30
trait :raw do
2019-12-21 20:55:43 +05:30
file_format { :raw }
2018-12-05 23:21:45 +05:30
after(:build) do |artifact, _|
artifact.file = fixture_file_upload(
Rails.root.join('spec/fixtures/trace/sample_trace'), 'text/plain')
end
end
trait :zip do
2019-12-21 20:55:43 +05:30
file_format { :zip }
2018-12-05 23:21:45 +05:30
after(:build) do |artifact, _|
artifact.file = fixture_file_upload(
Rails.root.join('spec/fixtures/ci_build_artifacts.zip'), 'application/zip')
end
end
trait :gzip do
2019-12-21 20:55:43 +05:30
file_format { :gzip }
2018-12-05 23:21:45 +05:30
after(:build) do |artifact, _|
artifact.file = fixture_file_upload(
Rails.root.join('spec/fixtures/ci_build_artifacts_metadata.gz'), 'application/x-gzip')
end
end
2018-03-17 18:26:18 +05:30
trait :archive do
2019-12-21 20:55:43 +05:30
file_type { :archive }
file_format { :zip }
2018-03-17 18:26:18 +05:30
2019-09-04 21:01:54 +05:30
transient do
file { fixture_file_upload(Rails.root.join('spec/fixtures/ci_build_artifacts.zip'), 'application/zip') }
end
after(:build) do |artifact, evaluator|
artifact.file = evaluator.file
2018-03-17 18:26:18 +05:30
end
end
2018-11-20 20:47:30 +05:30
trait :legacy_archive do
archive
2019-12-21 20:55:43 +05:30
file_location { :legacy_path }
2018-11-20 20:47:30 +05:30
end
2018-03-17 18:26:18 +05:30
trait :metadata do
2019-12-21 20:55:43 +05:30
file_type { :metadata }
file_format { :gzip }
2018-03-17 18:26:18 +05:30
2019-09-04 21:01:54 +05:30
transient do
file { fixture_file_upload(Rails.root.join('spec/fixtures/ci_build_artifacts_metadata.gz'), 'application/x-gzip') }
end
after(:build) do |artifact, evaluator|
artifact.file = evaluator.file
2018-03-17 18:26:18 +05:30
end
end
trait :trace do
2019-12-21 20:55:43 +05:30
file_type { :trace }
file_format { :raw }
2018-03-17 18:26:18 +05:30
after(:build) do |artifact, evaluator|
artifact.file = fixture_file_upload(
Rails.root.join('spec/fixtures/trace/sample_trace'), 'text/plain')
end
end
2018-05-09 12:01:36 +05:30
2018-11-18 11:00:15 +05:30
trait :junit do
2019-12-21 20:55:43 +05:30
file_type { :junit }
file_format { :gzip }
2018-11-18 11:00:15 +05:30
after(:build) do |artifact, evaluator|
artifact.file = fixture_file_upload(
Rails.root.join('spec/fixtures/junit/junit.xml.gz'), 'application/x-gzip')
end
end
trait :junit_with_ant do
2019-12-21 20:55:43 +05:30
file_type { :junit }
file_format { :gzip }
2018-11-18 11:00:15 +05:30
after(:build) do |artifact, evaluator|
artifact.file = fixture_file_upload(
Rails.root.join('spec/fixtures/junit/junit_ant.xml.gz'), 'application/x-gzip')
end
end
trait :junit_with_three_testsuites do
2019-12-21 20:55:43 +05:30
file_type { :junit }
file_format { :gzip }
2018-11-18 11:00:15 +05:30
after(:build) do |artifact, evaluator|
artifact.file = fixture_file_upload(
Rails.root.join('spec/fixtures/junit/junit_with_three_testsuites.xml.gz'), 'application/x-gzip')
end
end
trait :junit_with_corrupted_data do
2019-12-21 20:55:43 +05:30
file_type { :junit }
file_format { :gzip }
2018-11-18 11:00:15 +05:30
after(:build) do |artifact, evaluator|
artifact.file = fixture_file_upload(
Rails.root.join('spec/fixtures/junit/junit_with_corrupted_data.xml.gz'), 'application/x-gzip')
end
end
2018-12-05 23:21:45 +05:30
trait :codequality do
2019-12-21 20:55:43 +05:30
file_type { :codequality }
file_format { :raw }
2018-12-05 23:21:45 +05:30
after(:build) do |artifact, evaluator|
artifact.file = fixture_file_upload(
2018-12-13 13:39:08 +05:30
Rails.root.join('spec/fixtures/codequality/codequality.json'), 'application/json')
2018-12-05 23:21:45 +05:30
end
end
2018-05-09 12:01:36 +05:30
trait :correct_checksum do
after(:build) do |artifact, evaluator|
artifact.file_sha256 = Digest::SHA256.file(artifact.file.path).hexdigest
end
end
2018-03-17 18:26:18 +05:30
end
end