debian-mirror-gitlab/spec/factories/lfs_objects.rb

23 lines
641 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
include ActionDispatch::TestProcess
2015-11-26 14:37:03 +05:30
2018-03-17 18:26:18 +05:30
FactoryBot.define do
2015-11-26 14:37:03 +05:30
factory :lfs_object do
2017-08-17 22:00:37 +05:30
sequence(:oid) { |n| "b68143e6463773b1b6c6fd009a76c32aeec041faff32ba2ed42fd7f708a%05x" % n }
2015-11-26 14:37:03 +05:30
size 499013
end
trait :with_file do
2018-11-08 19:23:39 +05:30
file { fixture_file_upload("spec/fixtures/dk.png", "`/png") }
2015-11-26 14:37:03 +05:30
end
2018-03-27 19:54:05 +05:30
# The uniqueness constraint means we can't use the correct OID for all LFS
# objects, so the test needs to decide which (if any) object gets it
trait :correct_oid do
oid 'b804383982bb89b00e828e3f44c038cc991d3d1768009fc39ba8e2c081b9fb75'
end
2018-05-09 12:01:36 +05:30
trait :object_storage do
file_store { LfsObjectUploader::Store::REMOTE }
end
2015-11-26 14:37:03 +05:30
end