debian-mirror-gitlab/spec/factories/packages/debian/distribution.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
997 B
Ruby
Raw Normal View History

2021-03-08 18:12:59 +05:30
# frozen_string_literal: true
FactoryBot.define do
factory :debian_project_distribution, class: 'Packages::Debian::ProjectDistribution' do
container { association(:project) }
sequence(:codename) { |n| "project-dist-#{n}" }
factory :debian_group_distribution, class: 'Packages::Debian::GroupDistribution' do
container { association(:group) }
sequence(:codename) { |n| "group-dist-#{n}" }
end
trait(:with_file) do
2021-10-27 15:23:28 +05:30
file_signature do
<<~EOF
-----BEGIN PGP SIGNATURE-----
ABC
-----BEGIN PGP SIGNATURE-----
EOF
end
2021-03-08 18:12:59 +05:30
after(:build) do |distribution, evaluator|
2021-03-11 19:13:27 +05:30
distribution.file = fixture_file_upload('spec/fixtures/packages/debian/distribution/Release')
2021-10-27 15:23:28 +05:30
distribution.signed_file = fixture_file_upload('spec/fixtures/packages/debian/distribution/InRelease')
2021-03-08 18:12:59 +05:30
end
end
trait(:object_storage) do
file_store { Packages::PackageFileUploader::Store::REMOTE }
end
end
end