2020-03-26 05:16:02 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe UploadsController do
|
|
|
|
let!(:user) { Fabricate(:user) }
|
|
|
|
|
|
|
|
describe "#show_short" do
|
|
|
|
describe "s3 store" do
|
|
|
|
let(:upload) { Fabricate(:upload_s3) }
|
|
|
|
|
|
|
|
before do
|
2020-09-14 19:32:25 +08:00
|
|
|
setup_s3
|
2020-03-26 05:16:02 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
context "when upload is secure and secure media enabled" do
|
|
|
|
before do
|
|
|
|
SiteSetting.secure_media = true
|
|
|
|
upload.update(secure: true)
|
|
|
|
end
|
2020-09-14 19:32:25 +08:00
|
|
|
|
2020-03-26 05:16:02 +08:00
|
|
|
context "when running on a multisite connection", type: :multisite do
|
|
|
|
it "redirects to the signed_url_for_path with the multisite DB name in the url" do
|
|
|
|
sign_in(user)
|
|
|
|
freeze_time
|
|
|
|
get upload.short_path
|
|
|
|
expect(response.body).to include(RailsMultisite::ConnectionManagement.current_db)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|