2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-10-04 22:00:07 +08:00
|
|
|
RSpec.describe UploadSerializer do
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:upload) { Fabricate(:upload) }
|
2018-10-04 22:00:07 +08:00
|
|
|
let(:subject) { UploadSerializer.new(upload, root: false) }
|
|
|
|
|
|
|
|
it "should render without errors" do
|
2021-10-27 16:39:28 +08:00
|
|
|
json_data = JSON.parse(subject.to_json)
|
2018-10-04 22:00:07 +08:00
|
|
|
|
|
|
|
expect(json_data["id"]).to eql upload.id
|
|
|
|
expect(json_data["width"]).to eql upload.width
|
|
|
|
expect(json_data["height"]).to eql upload.height
|
|
|
|
expect(json_data["thumbnail_width"]).to eql upload.thumbnail_width
|
|
|
|
expect(json_data["thumbnail_height"]).to eql upload.thumbnail_height
|
2020-04-15 07:19:59 +08:00
|
|
|
expect(json_data["short_path"]).to eql upload.short_path
|
2018-10-04 22:00:07 +08:00
|
|
|
end
|
2020-01-16 11:50:27 +08:00
|
|
|
|
|
|
|
context "when the upload is secure" do
|
|
|
|
fab!(:upload) { Fabricate(:secure_upload) }
|
|
|
|
|
2022-09-29 07:24:33 +08:00
|
|
|
context "when secure uploads is disabled" do
|
2020-01-16 11:50:27 +08:00
|
|
|
it "just returns the normal URL, otherwise S3 errors are encountered" do
|
2020-07-03 19:23:10 +08:00
|
|
|
UrlHelper.expects(:cook_url).with(upload.url, secure: false)
|
|
|
|
subject.to_json
|
2020-01-16 11:50:27 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-09-29 07:24:33 +08:00
|
|
|
context "when secure uploads is enabled" do
|
2020-01-16 11:50:27 +08:00
|
|
|
before do
|
2020-09-14 19:32:25 +08:00
|
|
|
setup_s3
|
2022-09-29 07:24:33 +08:00
|
|
|
SiteSetting.secure_uploads = true
|
2020-01-16 11:50:27 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it "returns the cooked URL based on the upload URL" do
|
|
|
|
UrlHelper.expects(:cook_url).with(upload.url, secure: true)
|
|
|
|
subject.to_json
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2018-10-04 22:00:07 +08:00
|
|
|
end
|