discourse/spec/controllers/uploads_controller_spec.rb

165 lines
4.3 KiB
Ruby
Raw Normal View History

2013-04-02 19:17:17 -04:00
require 'spec_helper'
describe UploadsController do
context '.create' do
2013-04-02 19:17:17 -04:00
it 'requires you to be logged in' do
-> { xhr :post, :create }.should raise_error(Discourse::NotLoggedIn)
2013-04-02 19:17:17 -04:00
end
context 'logged in' do
before { @user = log_in :user }
2013-04-02 19:17:17 -04:00
let(:logo) do
ActionDispatch::Http::UploadedFile.new({
filename: 'logo.png',
tempfile: file_from_fixtures("logo.png")
})
2013-04-02 19:17:17 -04:00
end
let(:logo_dev) do
ActionDispatch::Http::UploadedFile.new({
filename: 'logo-dev.png',
tempfile: file_from_fixtures("logo-dev.png")
})
end
2013-04-02 19:17:17 -04:00
let(:text_file) do
ActionDispatch::Http::UploadedFile.new({
filename: 'LICENSE.TXT',
tempfile: File.new("#{Rails.root}/LICENSE.txt")
})
end
2013-04-02 19:17:17 -04:00
let(:files) { [ logo_dev, logo ] }
2013-04-02 19:17:17 -04:00
context 'with a file' do
2013-07-10 16:59:07 -04:00
context 'when authorized' do
before { SiteSetting.stubs(:authorized_extensions).returns(".PNG|.txt") }
2013-07-10 16:59:07 -04:00
it 'is successful with an image' do
xhr :post, :create, file: logo
response.status.should eq 200
end
it 'is successful with an attachment' do
2013-07-10 16:59:07 -04:00
xhr :post, :create, file: text_file
response.status.should eq 200
end
it 'correctly sets retain_hours for admins' do
log_in :admin
xhr :post, :create, file: logo, retain_hours: 100
url = JSON.parse(response.body)["url"]
id = url.split("/")[3].to_i
Upload.find(id).retain_hours.should == 100
end
context 'with a big file' do
before { SiteSetting.stubs(:max_attachment_size_kb).returns(1) }
it 'rejects the upload' do
xhr :post, :create, file: text_file
2014-04-14 16:55:57 -04:00
response.status.should eq 422
end
end
2013-07-10 16:59:07 -04:00
end
context 'when not authorized' do
before { SiteSetting.stubs(:authorized_extensions).returns(".png") }
it 'rejects the upload' do
xhr :post, :create, file: text_file
2014-04-14 16:55:57 -04:00
response.status.should eq 422
2013-07-10 16:59:07 -04:00
end
2013-04-02 19:17:17 -04:00
end
2013-07-10 16:59:07 -04:00
context 'when everything is authorized' do
before { SiteSetting.stubs(:authorized_extensions).returns("*") }
it 'is successful with an image' do
xhr :post, :create, file: logo
response.status.should eq 200
end
it 'is successful with an attachment' do
xhr :post, :create, file: text_file
response.status.should eq 200
end
end
end
2013-04-02 19:17:17 -04:00
context 'with some files' do
2013-04-02 19:17:17 -04:00
2013-07-10 16:59:07 -04:00
it 'is successful' do
xhr :post, :create, files: files
response.should be_success
end
2013-04-02 19:17:17 -04:00
it 'takes the first file' do
xhr :post, :create, files: files
response.body.should match /logo-dev.png/
2013-04-02 19:17:17 -04:00
end
end
end
end
context '.show' do
it "returns 404 when using external storage" do
store = stub(internal?: false)
Discourse.stubs(:store).returns(store)
Upload.expects(:find_by).never
get :show, site: "default", id: 1, sha: "1234567890abcdef", extension: "pdf"
response.response_code.should == 404
end
it "returns 404 when the upload doens't exist" do
Upload.expects(:find_by).with(id: 2, url: "/uploads/default/2/1234567890abcdef.pdf").returns(nil)
Upload.expects(:find_by).with(sha1: "1234567890abcdef").returns(nil)
get :show, site: "default", id: 2, sha: "1234567890abcdef", extension: "pdf"
response.response_code.should == 404
end
it 'uses send_file' do
2014-04-14 16:55:57 -04:00
upload = build(:upload)
Upload.expects(:find_by).with(id: 42, url: "/uploads/default/42/66b3ed1503efc936.zip").returns(upload)
2014-04-14 16:55:57 -04:00
controller.stubs(:render)
controller.expects(:send_file)
2014-04-14 16:55:57 -04:00
get :show, site: "default", id: 42, sha: "66b3ed1503efc936", extension: "zip"
end
context "prevent anons from downloading files" do
before { SiteSetting.stubs(:prevent_anons_from_downloading_files).returns(true) }
it "returns 404 when an anonymous user tries to download a file" do
Upload.expects(:find_by).never
get :show, site: "default", id: 2, sha: "1234567890abcdef", extension: "pdf"
response.response_code.should == 404
end
end
end
2013-04-02 19:17:17 -04:00
end