mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:51:50 +08:00
0388653a4d
* Add uploads:sync_s3_acls rake task to ensure the ACLs in S3 are the correct (public-read or private) setting based on upload security * Improved uploads:disable_secure_media to be more efficient and provide better messages to the user. * Rename uploads:ensure_correct_acl task to uploads:secure_upload_analyse_and_update as it does more than check the ACL * Many improvements to uploads:secure_upload_analyse_and_update * Make sure that upload.access_control_post is unscoped so deleted posts are still fetched, because they still affect the security of the upload. * Add escape hatch for capture_stdout in the form of RAILS_ENABLE_TEST_STDOUT. If provided the capture_stdout code will be ignored, so you can see the output if you need.
55 lines
1.6 KiB
Ruby
55 lines
1.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
describe Jobs::UpdatePrivateUploadsAcl do
|
|
let(:args) { [] }
|
|
|
|
before do
|
|
SiteSetting.authorized_extensions = "pdf"
|
|
end
|
|
|
|
describe '#execute' do
|
|
context "if not SiteSetting.Upload.enable_s3_uploads" do
|
|
before do
|
|
SiteSetting.Upload.stubs(:enable_s3_uploads).returns(false)
|
|
end
|
|
it "returns early and changes no uploads" do
|
|
Upload.expects(:find_each).never
|
|
subject.execute(args)
|
|
end
|
|
end
|
|
context "if SiteSetting.Upload.enable_s3_uploads" do
|
|
let!(:upload) { Fabricate(:upload_s3, extension: 'pdf', original_filename: "watchmen.pdf", secure: false) }
|
|
before do
|
|
SiteSetting.login_required = true
|
|
SiteSetting.prevent_anons_from_downloading_files = true
|
|
Discourse.stubs(:store).returns(stub(external?: false))
|
|
enable_s3_uploads([upload])
|
|
SiteSetting.secure_media = true
|
|
end
|
|
|
|
it "changes the upload to secure" do
|
|
subject.execute(args)
|
|
expect(upload.reload.secure).to eq(true)
|
|
end
|
|
end
|
|
end
|
|
|
|
def enable_s3_uploads(uploads)
|
|
SiteSetting.enable_s3_uploads = true
|
|
SiteSetting.s3_upload_bucket = "s3-upload-bucket"
|
|
SiteSetting.s3_access_key_id = "some key"
|
|
SiteSetting.s3_secret_access_key = "some secrets3_region key"
|
|
|
|
stub_request(:head, "https://#{SiteSetting.s3_upload_bucket}.s3.amazonaws.com/")
|
|
|
|
uploads.each do |upload|
|
|
stub_request(
|
|
:put,
|
|
"https://#{SiteSetting.s3_upload_bucket}.s3.amazonaws.com/original/1X/#{upload.sha1}.#{upload.extension}?acl"
|
|
)
|
|
end
|
|
end
|
|
end
|