Stub the calls to disk and check what send_file returns.
This commit is contained in:
parent
9bf51ae47d
commit
ea5b462a14
1 changed files with 3 additions and 1 deletions
|
@ -41,16 +41,18 @@ describe Projects::RawController do
|
||||||
context 'when project has access' do
|
context 'when project has access' do
|
||||||
before do
|
before do
|
||||||
public_project.lfs_objects << lfs_object
|
public_project.lfs_objects << lfs_object
|
||||||
|
allow_any_instance_of(LfsObjectUploader).to receive(:exists?).and_return(true)
|
||||||
|
allow(controller).to receive(:send_file) { controller.render :nothing => true }
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'serves the file' do
|
it 'serves the file' do
|
||||||
|
expect(controller).to receive(:send_file).with("#{Gitlab.config.shared.path}/lfs-objects/91/ef/f75a492a3ed0dfcb544d7f31326bc4014c8551849c192fd1e48d4dd2c897", :filename => "lfs_object.iso", :disposition => 'attachment')
|
||||||
get(:show,
|
get(:show,
|
||||||
namespace_id: public_project.namespace.to_param,
|
namespace_id: public_project.namespace.to_param,
|
||||||
project_id: public_project.to_param,
|
project_id: public_project.to_param,
|
||||||
id: id)
|
id: id)
|
||||||
|
|
||||||
expect(response.status).to eq(200)
|
expect(response.status).to eq(200)
|
||||||
expect(response.header['Content-Type']).to eq('application/octet-stream')
|
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue