2019-04-29 20:27:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-08-16 23:41:30 -04:00
|
|
|
require 'rails_helper'
|
2019-01-04 01:16:22 -05:00
|
|
|
require 'file_store/s3_store'
|
2018-08-16 23:41:30 -04:00
|
|
|
|
|
|
|
RSpec.describe UploadCreator do
|
|
|
|
let(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
describe '#create_for' do
|
|
|
|
describe 'when upload is not an image' do
|
|
|
|
before do
|
|
|
|
SiteSetting.authorized_extensions = 'txt'
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:filename) { "utf-8.txt" }
|
|
|
|
let(:file) { file_from_fixtures(filename, "encodings") }
|
|
|
|
|
|
|
|
it 'should store the upload with the right extension' do
|
|
|
|
expect do
|
2018-08-21 12:11:01 -04:00
|
|
|
UploadCreator.new(file, "utf-8\n.txt").create_for(user.id)
|
2018-08-16 23:41:30 -04:00
|
|
|
end.to change { Upload.count }.by(1)
|
|
|
|
|
|
|
|
upload = Upload.last
|
|
|
|
|
|
|
|
expect(upload.extension).to eq('txt')
|
|
|
|
expect(File.extname(upload.url)).to eq('.txt')
|
|
|
|
expect(upload.original_filename).to eq('utf-8.txt')
|
2018-09-20 01:33:10 -04:00
|
|
|
expect(user.user_uploads.count).to eq(1)
|
|
|
|
expect(upload.user_uploads.count).to eq(1)
|
|
|
|
|
|
|
|
user2 = Fabricate(:user)
|
|
|
|
|
|
|
|
expect do
|
|
|
|
UploadCreator.new(file, "utf-8\n.txt").create_for(user2.id)
|
|
|
|
end.to change { Upload.count }.by(0)
|
|
|
|
|
|
|
|
expect(user.user_uploads.count).to eq(1)
|
|
|
|
expect(user2.user_uploads.count).to eq(1)
|
|
|
|
expect(upload.user_uploads.count).to eq(2)
|
2018-08-16 23:41:30 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-11-14 02:03:02 -05:00
|
|
|
describe 'when image is not authorized' do
|
|
|
|
describe 'when image is for site setting' do
|
|
|
|
let(:filename) { 'logo.png' }
|
|
|
|
let(:file) { file_from_fixtures(filename) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.authorized_extensions = 'jpg'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should create the right upload' do
|
|
|
|
upload = UploadCreator.new(file, filename,
|
|
|
|
for_site_setting: true
|
|
|
|
).create_for(Discourse.system_user.id)
|
|
|
|
|
|
|
|
expect(upload.persisted?).to eq(true)
|
|
|
|
expect(upload.original_filename).to eq(filename)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-08-16 23:41:30 -04:00
|
|
|
describe 'when image has the wrong extension' do
|
2018-08-19 22:18:49 -04:00
|
|
|
let(:filename) { "png_as.bin" }
|
2018-08-16 23:41:30 -04:00
|
|
|
let(:file) { file_from_fixtures(filename) }
|
|
|
|
|
|
|
|
it 'should store the upload with the right extension' do
|
|
|
|
expect do
|
2018-08-17 03:22:12 -04:00
|
|
|
UploadCreator.new(file, filename,
|
|
|
|
force_optimize: true,
|
|
|
|
type: UploadCreator::TYPES_TO_CROP.first
|
|
|
|
).create_for(user.id)
|
2018-08-16 23:41:30 -04:00
|
|
|
end.to change { Upload.count }.by(1)
|
|
|
|
|
|
|
|
upload = Upload.last
|
|
|
|
|
|
|
|
expect(upload.extension).to eq('png')
|
|
|
|
expect(File.extname(upload.url)).to eq('.png')
|
2018-08-20 02:08:05 -04:00
|
|
|
expect(upload.original_filename).to eq('png_as.png')
|
2018-08-16 23:41:30 -04:00
|
|
|
end
|
2018-09-09 22:49:01 -04:00
|
|
|
|
|
|
|
describe 'for webp format' do
|
|
|
|
before do
|
|
|
|
SiteSetting.authorized_extensions = '.webp|.bin'
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:filename) { "webp_as.bin" }
|
|
|
|
let(:file) { file_from_fixtures(filename) }
|
|
|
|
|
|
|
|
it 'should not correct the coerce filename' do
|
|
|
|
expect do
|
|
|
|
UploadCreator.new(file, filename).create_for(user.id)
|
|
|
|
end.to change { Upload.count }.by(1)
|
|
|
|
|
|
|
|
upload = Upload.last
|
|
|
|
|
|
|
|
expect(upload.extension).to eq('bin')
|
|
|
|
expect(File.extname(upload.url)).to eq('.bin')
|
|
|
|
expect(upload.original_filename).to eq('webp_as.bin')
|
|
|
|
end
|
|
|
|
end
|
2018-08-16 23:41:30 -04:00
|
|
|
end
|
|
|
|
|
2019-01-02 01:19:52 -05:00
|
|
|
describe 'pngquant' do
|
|
|
|
let(:filename) { "pngquant.png" }
|
|
|
|
let(:file) { file_from_fixtures(filename) }
|
|
|
|
|
|
|
|
it 'should apply pngquant to optimized images' do
|
|
|
|
upload = UploadCreator.new(file, filename,
|
|
|
|
pasted: true,
|
|
|
|
force_optimize: true
|
|
|
|
).create_for(user.id)
|
|
|
|
|
|
|
|
# no optimisation possible without losing details
|
|
|
|
expect(upload.filesize).to eq(9558)
|
|
|
|
|
|
|
|
thumbnail_size = upload.get_optimized_image(upload.width, upload.height, {}).filesize
|
|
|
|
|
|
|
|
# pngquant will lose some colors causing some extra size reduction
|
|
|
|
expect(thumbnail_size).to be < 7500
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-08-16 23:41:30 -04:00
|
|
|
describe 'converting to jpeg' do
|
2018-11-20 19:00:52 -05:00
|
|
|
let(:filename) { "should_be_jpeg.png" }
|
2018-08-16 23:41:30 -04:00
|
|
|
let(:file) { file_from_fixtures(filename) }
|
|
|
|
|
2018-11-20 19:00:52 -05:00
|
|
|
let(:small_filename) { "logo.png" }
|
|
|
|
let(:small_file) { file_from_fixtures(small_filename) }
|
|
|
|
|
2018-08-16 23:41:30 -04:00
|
|
|
before do
|
|
|
|
SiteSetting.png_to_jpg_quality = 1
|
|
|
|
end
|
|
|
|
|
2018-11-20 19:00:52 -05:00
|
|
|
it 'should not store file as jpeg if it does not meet absolute byte saving requirements' do
|
|
|
|
|
|
|
|
# logo.png is 2297 bytes, converting to jpeg saves 30% but does not meet
|
|
|
|
# the absolute savings required of 25_000 bytes, if you save less than that
|
|
|
|
# skip this
|
|
|
|
|
|
|
|
expect do
|
|
|
|
UploadCreator.new(small_file, small_filename,
|
|
|
|
pasted: true,
|
|
|
|
force_optimize: true
|
|
|
|
).create_for(user.id)
|
|
|
|
end.to change { Upload.count }.by(1)
|
|
|
|
|
|
|
|
upload = Upload.last
|
|
|
|
|
|
|
|
expect(upload.extension).to eq('png')
|
|
|
|
expect(File.extname(upload.url)).to eq('.png')
|
|
|
|
expect(upload.original_filename).to eq('logo.png')
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2018-08-16 23:41:30 -04:00
|
|
|
it 'should store the upload with the right extension' do
|
|
|
|
expect do
|
|
|
|
UploadCreator.new(file, filename,
|
|
|
|
pasted: true,
|
|
|
|
force_optimize: true
|
|
|
|
).create_for(user.id)
|
|
|
|
end.to change { Upload.count }.by(1)
|
|
|
|
|
|
|
|
upload = Upload.last
|
|
|
|
|
|
|
|
expect(upload.extension).to eq('jpeg')
|
|
|
|
expect(File.extname(upload.url)).to eq('.jpeg')
|
2018-11-20 19:00:52 -05:00
|
|
|
expect(upload.original_filename).to eq('should_be_jpeg.jpg')
|
2018-08-16 23:41:30 -04:00
|
|
|
end
|
|
|
|
end
|
2019-01-04 01:16:22 -05:00
|
|
|
|
|
|
|
describe 'uploading to s3' do
|
|
|
|
let(:filename) { "should_be_jpeg.png" }
|
|
|
|
let(:file) { file_from_fixtures(filename) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
SiteSetting.s3_upload_bucket = "s3-upload-bucket"
|
|
|
|
SiteSetting.s3_access_key_id = "s3-access-key-id"
|
|
|
|
SiteSetting.s3_secret_access_key = "s3-secret-access-key"
|
|
|
|
SiteSetting.s3_region = 'us-west-1'
|
|
|
|
SiteSetting.enable_s3_uploads = true
|
|
|
|
|
|
|
|
store = FileStore::S3Store.new
|
|
|
|
s3_helper = store.instance_variable_get(:@s3_helper)
|
|
|
|
client = Aws::S3::Client.new(stub_responses: true)
|
|
|
|
s3_helper.stubs(:s3_client).returns(client)
|
|
|
|
Discourse.stubs(:store).returns(store)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should store the file and return etag' do
|
|
|
|
expect {
|
|
|
|
UploadCreator.new(file, filename).create_for(user.id)
|
|
|
|
}.to change { Upload.count }.by(1)
|
|
|
|
|
|
|
|
upload = Upload.last
|
|
|
|
|
|
|
|
expect(upload.etag).to eq('ETag')
|
|
|
|
end
|
|
|
|
end
|
2018-08-16 23:41:30 -04:00
|
|
|
end
|
|
|
|
end
|