2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-04-02 19:17:17 -04:00
|
|
|
|
|
|
|
describe UploadsController do
|
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
context '.create' do
|
2013-04-02 19:17:17 -04:00
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
it 'requires you to be logged in' do
|
2018-01-11 22:15:10 -05:00
|
|
|
post :create, format: :json
|
|
|
|
expect(response.status).to eq(403)
|
2013-04-02 19:17:17 -04:00
|
|
|
end
|
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
context 'logged in' do
|
|
|
|
|
|
|
|
before { @user = log_in :user }
|
2013-04-02 19:17:17 -04:00
|
|
|
|
2013-06-15 03:54:49 -04:00
|
|
|
let(:logo) do
|
2017-08-31 00:06:56 -04:00
|
|
|
Rack::Test::UploadedFile.new(file_from_fixtures("logo.png"))
|
2013-04-02 19:17:17 -04:00
|
|
|
end
|
|
|
|
|
2015-12-21 10:08:14 -05:00
|
|
|
let(:fake_jpg) do
|
2017-08-31 00:06:56 -04:00
|
|
|
Rack::Test::UploadedFile.new(file_from_fixtures("fake.jpg"))
|
2015-12-21 10:08:14 -05:00
|
|
|
end
|
|
|
|
|
2013-06-15 03:54:49 -04:00
|
|
|
let(:text_file) do
|
2017-08-31 00:06:56 -04:00
|
|
|
Rack::Test::UploadedFile.new(File.new("#{Rails.root}/LICENSE.txt"))
|
2013-06-15 03:54:49 -04:00
|
|
|
end
|
2013-04-02 19:17:17 -04:00
|
|
|
|
2017-05-18 06:13:13 -04:00
|
|
|
it 'expects a type' do
|
2017-08-31 00:06:56 -04:00
|
|
|
expect do
|
|
|
|
post :create, params: { format: :json, file: logo }
|
|
|
|
end.to raise_error(ActionController::ParameterMissing)
|
2017-05-18 06:13:13 -04:00
|
|
|
end
|
2016-12-18 18:16:18 -05:00
|
|
|
|
2017-08-22 16:40:01 -04:00
|
|
|
it 'can look up long urls' do
|
|
|
|
upload = Fabricate(:upload)
|
2017-08-31 00:06:56 -04:00
|
|
|
post :lookup_urls, params: { short_urls: [upload.short_url], format: :json }
|
2017-08-22 16:40:01 -04:00
|
|
|
result = JSON.parse(response.body)
|
|
|
|
expect(result[0]["url"]).to eq(upload.url)
|
|
|
|
end
|
|
|
|
|
2015-05-19 19:39:58 -04:00
|
|
|
it 'is successful with an image' do
|
2017-05-10 18:16:57 -04:00
|
|
|
Jobs.expects(:enqueue).with(:create_avatar_thumbnails, anything)
|
2015-05-25 11:59:00 -04:00
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
post :create, params: { file: logo, type: "avatar", format: :json }
|
2013-07-23 18:54:18 -04:00
|
|
|
|
2015-05-19 19:39:58 -04:00
|
|
|
expect(response.status).to eq 200
|
2017-11-26 20:43:18 -05:00
|
|
|
expect(JSON.parse(response.body)["id"]).to be
|
2015-05-19 19:39:58 -04:00
|
|
|
end
|
2014-04-29 13:12:35 -04:00
|
|
|
|
2015-05-19 19:39:58 -04:00
|
|
|
it 'is successful with an attachment' do
|
2017-06-12 16:41:29 -04:00
|
|
|
SiteSetting.authorized_extensions = "*"
|
2015-05-25 11:59:00 -04:00
|
|
|
|
|
|
|
Jobs.expects(:enqueue).never
|
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
post :create, params: { file: text_file, type: "composer", format: :json }
|
2014-04-29 13:12:35 -04:00
|
|
|
|
2015-05-19 19:39:58 -04:00
|
|
|
expect(response.status).to eq 200
|
2017-11-26 20:43:18 -05:00
|
|
|
id = JSON.parse(response.body)["id"]
|
|
|
|
expect(id).to be
|
2015-06-21 07:52:52 -04:00
|
|
|
end
|
|
|
|
|
2018-02-24 06:35:57 -05:00
|
|
|
it 'is successful with api' do
|
2017-04-15 00:11:02 -04:00
|
|
|
SiteSetting.authorized_extensions = "*"
|
2015-06-21 07:52:52 -04:00
|
|
|
controller.stubs(:is_api?).returns(true)
|
|
|
|
|
2018-02-24 06:35:57 -05:00
|
|
|
FinalDestination.stubs(:lookup_ip).returns("1.2.3.4")
|
|
|
|
|
2017-05-10 18:16:57 -04:00
|
|
|
Jobs.expects(:enqueue).with(:create_avatar_thumbnails, anything)
|
2017-05-26 03:19:09 -04:00
|
|
|
|
2018-02-24 06:35:57 -05:00
|
|
|
url = "http://example.com/image.png"
|
|
|
|
png = File.read(Rails.root + "spec/fixtures/images/logo.png")
|
|
|
|
|
|
|
|
stub_request(:get, url).to_return(status: 200, body: png)
|
2015-06-21 07:52:52 -04:00
|
|
|
|
2018-02-24 06:35:57 -05:00
|
|
|
post :create, params: { url: url, type: "avatar", format: :json }
|
2015-06-21 07:52:52 -04:00
|
|
|
|
|
|
|
json = ::JSON.parse(response.body)
|
|
|
|
|
|
|
|
expect(response.status).to eq 200
|
|
|
|
expect(json["id"]).to be
|
2017-08-22 16:40:01 -04:00
|
|
|
expect(json["short_url"]).to eq("upload://qUm0DGR49PAZshIi7HxMd3cAlzn.png")
|
2015-05-19 19:39:58 -04:00
|
|
|
end
|
2014-04-29 13:12:35 -04:00
|
|
|
|
2015-05-19 19:39:58 -04:00
|
|
|
it 'correctly sets retain_hours for admins' do
|
|
|
|
log_in :admin
|
2017-05-10 18:16:57 -04:00
|
|
|
Jobs.expects(:enqueue).with(:create_avatar_thumbnails, anything).never
|
2014-04-29 13:12:35 -04:00
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
post :create, params: {
|
|
|
|
file: logo,
|
|
|
|
retain_hours: 100,
|
|
|
|
type: "profile_background",
|
|
|
|
format: :json
|
|
|
|
}
|
2014-04-29 13:12:35 -04:00
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
id = JSON.parse(response.body)["id"]
|
2015-05-19 19:39:58 -04:00
|
|
|
expect(Upload.find(id).retain_hours).to eq(100)
|
2013-06-15 03:54:49 -04:00
|
|
|
end
|
2013-04-02 19:17:17 -04:00
|
|
|
|
2015-08-18 05:39:51 -04:00
|
|
|
it 'requires a file' do
|
|
|
|
Jobs.expects(:enqueue).never
|
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
post :create, params: { type: "composer", format: :json }
|
2015-08-18 05:39:51 -04:00
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
message = JSON.parse(response.body)
|
|
|
|
expect(response.status).to eq 422
|
|
|
|
expect(message["errors"]).to contain_exactly(I18n.t("upload.file_missing"))
|
2015-08-18 05:39:51 -04:00
|
|
|
end
|
|
|
|
|
2015-05-19 19:39:58 -04:00
|
|
|
it 'properly returns errors' do
|
2017-06-12 16:41:29 -04:00
|
|
|
SiteSetting.max_attachment_size_kb = 1
|
2013-04-02 19:17:17 -04:00
|
|
|
|
2015-05-25 11:59:00 -04:00
|
|
|
Jobs.expects(:enqueue).never
|
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
post :create, params: { file: text_file, type: "avatar", format: :json }
|
2013-04-02 19:17:17 -04:00
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
expect(response.status).to eq 422
|
|
|
|
errors = JSON.parse(response.body)["errors"]
|
|
|
|
expect(errors).to be
|
2013-04-02 19:17:17 -04:00
|
|
|
end
|
|
|
|
|
2015-11-12 04:26:45 -05:00
|
|
|
it 'ensures allow_uploaded_avatars is enabled when uploading an avatar' do
|
2017-06-12 16:41:29 -04:00
|
|
|
SiteSetting.allow_uploaded_avatars = false
|
2017-08-31 00:06:56 -04:00
|
|
|
post :create, params: { file: logo, type: "avatar", format: :json }
|
2015-11-12 04:26:45 -05:00
|
|
|
expect(response).to_not be_success
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'ensures sso_overrides_avatar is not enabled when uploading an avatar' do
|
2017-06-12 16:41:29 -04:00
|
|
|
SiteSetting.sso_overrides_avatar = true
|
2017-08-31 00:06:56 -04:00
|
|
|
post :create, params: { file: logo, type: "avatar", format: :json }
|
2015-11-12 04:26:45 -05:00
|
|
|
expect(response).to_not be_success
|
|
|
|
end
|
|
|
|
|
2017-06-12 16:41:29 -04:00
|
|
|
it 'allows staff to upload any file in PM' do
|
|
|
|
SiteSetting.authorized_extensions = "jpg"
|
|
|
|
SiteSetting.allow_staff_to_upload_any_file_in_pm = true
|
|
|
|
@user.update_columns(moderator: true)
|
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
post :create, params: {
|
|
|
|
file: text_file,
|
|
|
|
type: "composer",
|
|
|
|
for_private_message: "true",
|
|
|
|
format: :json
|
|
|
|
}
|
2017-06-12 16:41:29 -04:00
|
|
|
|
|
|
|
expect(response).to be_success
|
2017-11-26 20:43:18 -05:00
|
|
|
id = JSON.parse(response.body)["id"]
|
|
|
|
expect(id).to be
|
2017-06-12 16:41:29 -04:00
|
|
|
end
|
|
|
|
|
2018-02-19 04:44:24 -05:00
|
|
|
it 'respects `authorized_extensions_for_staff` setting when staff upload file' do
|
|
|
|
SiteSetting.authorized_extensions = ""
|
|
|
|
SiteSetting.authorized_extensions_for_staff = "*"
|
|
|
|
@user.update_columns(moderator: true)
|
|
|
|
|
|
|
|
post :create, params: {
|
|
|
|
file: text_file,
|
|
|
|
type: "composer",
|
|
|
|
format: :json
|
|
|
|
}
|
|
|
|
|
|
|
|
expect(response).to be_success
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["id"]).to be
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'ignores `authorized_extensions_for_staff` setting when non-staff upload file' do
|
|
|
|
SiteSetting.authorized_extensions = ""
|
|
|
|
SiteSetting.authorized_extensions_for_staff = "*"
|
|
|
|
|
|
|
|
post :create, params: {
|
|
|
|
file: text_file,
|
|
|
|
type: "composer",
|
|
|
|
format: :json
|
|
|
|
}
|
|
|
|
|
|
|
|
data = JSON.parse(response.body)
|
|
|
|
expect(data["errors"].first).to eq(I18n.t("upload.unauthorized", authorized_extensions: ''))
|
|
|
|
end
|
|
|
|
|
2015-12-21 10:08:14 -05:00
|
|
|
it 'returns an error when it could not determine the dimensions of an image' do
|
2017-05-10 18:16:57 -04:00
|
|
|
Jobs.expects(:enqueue).with(:create_avatar_thumbnails, anything).never
|
2015-12-21 10:08:14 -05:00
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
post :create, params: { file: fake_jpg, type: "composer", format: :json }
|
2015-12-21 10:08:14 -05:00
|
|
|
|
2017-11-26 20:43:18 -05:00
|
|
|
expect(response.status).to eq 422
|
|
|
|
message = JSON.parse(response.body)["errors"]
|
|
|
|
expect(message).to contain_exactly(I18n.t("upload.images.size_not_found"))
|
2015-12-21 10:08:14 -05:00
|
|
|
end
|
|
|
|
|
2013-04-02 19:17:17 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
context '.show' do
|
|
|
|
|
2015-05-19 06:31:12 -04:00
|
|
|
let(:site) { "default" }
|
|
|
|
let(:sha) { Digest::SHA1.hexdigest("discourse") }
|
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
it "returns 404 when using external storage" do
|
|
|
|
store = stub(internal?: false)
|
|
|
|
Discourse.stubs(:store).returns(store)
|
2014-05-06 09:41:59 -04:00
|
|
|
Upload.expects(:find_by).never
|
2015-05-19 06:31:12 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { site: site, sha: sha, extension: "pdf" }
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response.response_code).to eq(404)
|
2013-09-06 13:18:42 -04:00
|
|
|
end
|
|
|
|
|
2016-12-19 13:39:04 -05:00
|
|
|
it "returns 404 when the upload doesn't exist" do
|
2015-05-20 09:32:31 -04:00
|
|
|
Upload.stubs(:find_by).returns(nil)
|
2014-09-23 01:50:26 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { site: site, sha: sha, extension: "pdf" }
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response.response_code).to eq(404)
|
2013-09-06 13:18:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'uses send_file' do
|
2014-04-14 16:55:57 -04:00
|
|
|
upload = build(:upload)
|
2015-05-19 06:31:12 -04:00
|
|
|
Upload.expects(:find_by).with(sha1: sha).returns(upload)
|
2014-04-14 16:55:57 -04:00
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
controller.stubs(:render)
|
|
|
|
controller.expects(:send_file)
|
2014-04-14 16:55:57 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { site: site, sha: sha, extension: "zip" }
|
2013-09-06 13:18:42 -04:00
|
|
|
end
|
|
|
|
|
2016-12-19 13:39:04 -05:00
|
|
|
it "handles file without extension" do
|
|
|
|
SiteSetting.authorized_extensions = "*"
|
2017-05-23 13:31:20 -04:00
|
|
|
Fabricate(:upload, original_filename: "image_file", sha1: sha)
|
2016-12-19 13:39:04 -05:00
|
|
|
controller.stubs(:render)
|
|
|
|
controller.expects(:send_file)
|
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { site: site, sha: sha, format: :json }
|
2016-12-19 13:39:04 -05:00
|
|
|
expect(response).to be_success
|
|
|
|
end
|
|
|
|
|
2014-09-09 12:40:11 -04:00
|
|
|
context "prevent anons from downloading files" do
|
|
|
|
|
2017-06-12 16:41:29 -04:00
|
|
|
before { SiteSetting.prevent_anons_from_downloading_files = true }
|
2014-09-09 12:40:11 -04:00
|
|
|
|
|
|
|
it "returns 404 when an anonymous user tries to download a file" do
|
|
|
|
Upload.expects(:find_by).never
|
2015-05-19 06:31:12 -04:00
|
|
|
|
2017-08-31 00:06:56 -04:00
|
|
|
get :show, params: { site: site, sha: sha, extension: "pdf", format: :json }
|
2015-01-09 12:04:02 -05:00
|
|
|
expect(response.response_code).to eq(404)
|
2014-09-09 12:40:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
2013-09-06 13:18:42 -04:00
|
|
|
end
|
|
|
|
|
2013-04-02 19:17:17 -04:00
|
|
|
end
|