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

59 lines
1.4 KiB
Ruby
Raw Normal View History

2018-03-17 18:26:18 +05:30
FactoryBot.define do
2017-08-17 22:00:37 +05:30
factory :upload do
model { build(:project) }
size 100.kilobytes
uploader "AvatarUploader"
2018-03-17 18:26:18 +05:30
mount_point :avatar
secret nil
2018-05-09 12:01:36 +05:30
store ObjectStorage::Store::LOCAL
2018-03-17 18:26:18 +05:30
# we should build a mount agnostic upload by default
transient do
filename 'myfile.jpg'
end
# this needs to comply with RecordsUpload::Concern#upload_path
path { File.join("uploads/-/system", model.class.to_s.underscore, mount_point.to_s, 'avatar.jpg') }
trait :personal_snippet_upload do
uploader "PersonalFileUploader"
path { File.join(secret, filename) }
model { build(:personal_snippet) }
secret SecureRandom.hex
end
trait :issuable_upload do
uploader "FileUploader"
path { File.join(secret, filename) }
secret SecureRandom.hex
end
2018-11-08 19:23:39 +05:30
trait :with_file do
after(:create) do |upload|
FileUtils.mkdir_p(File.dirname(upload.absolute_path))
FileUtils.touch(upload.absolute_path)
end
end
2018-05-09 12:01:36 +05:30
trait :object_storage do
store ObjectStorage::Store::REMOTE
end
2018-03-17 18:26:18 +05:30
trait :namespace_upload do
model { build(:group) }
path { File.join(secret, filename) }
uploader "NamespaceFileUploader"
secret SecureRandom.hex
end
trait :attachment_upload do
transient do
mount_point :attachment
end
model { build(:note) }
uploader "AttachmentUploader"
end
2017-08-17 22:00:37 +05:30
end
end