gitlab-org--gitlab-foss/spec/factories/lfs_objects.rb

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

24 lines
661 B
Ruby
Raw Normal View History

# frozen_string_literal: true
FactoryBot.define do
2015-10-12 14:42:14 +00:00
factory :lfs_object do
sequence(:oid) { |n| "b68143e6463773b1b6c6fd009a76c32aeec041faff32ba2ed42fd7f708a%05x" % n }
size { 499013 }
2015-10-12 14:42:14 +00:00
end
trait :with_file do
file { fixture_file_upload("spec/fixtures/dk.png", "`/png") }
2015-10-12 14:42:14 +00:00
end
# 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' }
size { 1062 }
end
trait :object_storage do
file_store { LfsObjectUploader::Store::REMOTE }
end
2015-10-12 14:42:14 +00:00
end