2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-06-17 08:46:42 +08:00
|
|
|
Fabricator(:upload) do
|
|
|
|
user
|
2020-06-03 12:23:46 +08:00
|
|
|
sha1 { sequence(:sha1) { |n| Digest::SHA1.hexdigest("#{n}#{Process.pid}") } }
|
2014-04-15 04:55:57 +08:00
|
|
|
original_filename "logo.png"
|
2013-06-17 08:46:42 +08:00
|
|
|
filesize 1234
|
|
|
|
width 100
|
|
|
|
height 200
|
2018-10-04 22:00:07 +08:00
|
|
|
thumbnail_width 30
|
|
|
|
thumbnail_height 60
|
2018-09-14 13:42:59 +08:00
|
|
|
|
|
|
|
url do |attrs|
|
|
|
|
sequence(:url) do |n|
|
|
|
|
Discourse.store.get_path_for(
|
|
|
|
"original", n + 1, attrs[:sha1], ".#{attrs[:extension]}"
|
|
|
|
)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-04 01:08:59 +08:00
|
|
|
extension "png"
|
2013-06-17 08:46:42 +08:00
|
|
|
end
|
2013-07-11 04:59:07 +08:00
|
|
|
|
2020-03-26 22:40:00 +08:00
|
|
|
Fabricator(:image_upload, from: :upload) do
|
|
|
|
after_create do |upload|
|
|
|
|
file = Tempfile.new(['fabricated', '.png'])
|
|
|
|
`convert -size #{upload.width}x#{upload.height} xc:white "#{file.path}"`
|
|
|
|
|
|
|
|
upload.url = Discourse.store.store_upload(file, upload)
|
|
|
|
upload.sha1 = Upload.generate_digest(file.path)
|
|
|
|
|
|
|
|
WebMock
|
|
|
|
.stub_request(:get, "http://#{Discourse.current_hostname}#{upload.url}")
|
|
|
|
.to_return(status: 200, body: File.new(file.path))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-08-14 06:54:28 +08:00
|
|
|
Fabricator(:upload_no_dimensions, from: :upload) do
|
|
|
|
width nil
|
|
|
|
height nil
|
|
|
|
thumbnail_width nil
|
|
|
|
thumbnail_height nil
|
|
|
|
end
|
|
|
|
|
2019-07-16 20:35:17 +08:00
|
|
|
Fabricator(:video_upload, from: :upload) do
|
|
|
|
original_filename "video.mp4"
|
|
|
|
width nil
|
|
|
|
height nil
|
|
|
|
thumbnail_width nil
|
|
|
|
thumbnail_height nil
|
|
|
|
extension "mp4"
|
|
|
|
end
|
|
|
|
|
2020-01-16 11:50:27 +08:00
|
|
|
Fabricator(:secure_upload, from: :upload) do
|
2020-04-23 02:49:53 +08:00
|
|
|
secure true
|
2020-01-16 11:50:27 +08:00
|
|
|
sha1 { SecureRandom.hex(20) }
|
|
|
|
original_sha1 { sequence(:sha1) { |n| Digest::SHA1.hexdigest(n.to_s) } }
|
|
|
|
end
|
|
|
|
|
2017-05-23 00:37:01 +08:00
|
|
|
Fabricator(:upload_s3, from: :upload) do
|
2018-09-14 13:42:59 +08:00
|
|
|
url do |attrs|
|
|
|
|
sequence(:url) do |n|
|
2019-05-30 14:38:46 +08:00
|
|
|
path = +Discourse.store.get_path_for(
|
|
|
|
"original", n + 1, attrs[:sha1], ".#{attrs[:extension]}"
|
2018-09-14 13:42:59 +08:00
|
|
|
)
|
2019-05-30 14:38:46 +08:00
|
|
|
|
|
|
|
if Rails.configuration.multisite
|
|
|
|
path.prepend(File.join(Discourse.store.upload_path, "/"))
|
|
|
|
end
|
|
|
|
|
|
|
|
File.join(Discourse.store.absolute_base_url, path)
|
2018-09-14 13:42:59 +08:00
|
|
|
end
|
|
|
|
end
|
2013-07-11 04:59:07 +08:00
|
|
|
end
|
2020-01-29 08:11:38 +08:00
|
|
|
|
2020-06-11 20:47:59 +08:00
|
|
|
Fabricator(:s3_image_upload, from: :upload_s3) do
|
|
|
|
after_create do |upload|
|
|
|
|
file = Tempfile.new(['fabricated', '.png'])
|
|
|
|
`convert -size #{upload.width}x#{upload.height} xc:white "#{file.path}"`
|
|
|
|
|
2021-05-27 23:42:25 +08:00
|
|
|
upload.url = Discourse.store.store_upload(file, upload)
|
2020-06-11 20:47:59 +08:00
|
|
|
upload.sha1 = Upload.generate_digest(file.path)
|
|
|
|
|
|
|
|
WebMock
|
|
|
|
.stub_request(:get, upload.url)
|
|
|
|
.to_return(status: 200, body: File.new(file.path))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-01-29 08:11:38 +08:00
|
|
|
Fabricator(:secure_upload_s3, from: :upload_s3) do
|
2020-04-23 02:49:53 +08:00
|
|
|
secure true
|
2020-01-29 08:11:38 +08:00
|
|
|
sha1 { SecureRandom.hex(20) }
|
|
|
|
original_sha1 { sequence(:sha1) { |n| Digest::SHA1.hexdigest(n.to_s) } }
|
|
|
|
end
|