#388: added specs

This commit is contained in:
Vokhmin Alexey V 2014-05-21 01:43:22 +04:00
parent 870867c326
commit 6694634d9b
2 changed files with 36 additions and 1 deletions

View File

@ -21,6 +21,7 @@ class Platforms::ContentsController < Platforms::BaseController
end
def remove_file
authorize!(:remove_file, @platform)
PlatformContent.remove_file(@platform, params[:path])
render nothing: true
end

View File

@ -28,6 +28,34 @@ shared_examples_for 'content platform user with show rights' do
end
end
shared_examples_for 'content platform user without owner rights' do
it 'should not be able to perform remove_file action for main platform' do
get :remove_file, platform_id: @platform, path: '/test'
response.should_not be_success
end
it 'should not be able to perform index remove_file for personal platform' do
get :remove_file, platform_id: @personal_platform, path: '/test'
response.should_not be_success
end
end
shared_examples_for 'content platform user with owner rights' do
before do
allow(PlatformContent).to receive(:remove_file)
end
it 'should be able to perform remove_file action for main platform' do
get :remove_file, platform_id: @platform, path: '/test'
response.should be_success
end
it 'should be able to perform remove_file action for personal platform' do
get :remove_file, platform_id: @personal_platform, path: '/test'
response.should be_success
end
end
describe Platforms::ContentsController do
before do
stub_symlink_methods
@ -52,6 +80,7 @@ describe Platforms::ContentsController do
it_should_behave_like 'content platform user with show rights' if APP_CONFIG['anonymous_access']
it_should_behave_like 'content platform user without show rights for hidden platform'
it_should_behave_like 'content platform user without owner rights'
end
context 'for global admin' do
@ -61,17 +90,20 @@ describe Platforms::ContentsController do
it_should_behave_like 'content platform user with show rights'
it_should_behave_like 'content platform user with show rights for hidden platform'
it_should_behave_like 'content platform user with owner rights'
end
context 'for owner user' do
before do
http_login(@user)
@platform.owner = @user; @platform.save
allow(Platform).to receive(:find).and_return(@platform)
allow(@platform).to receive(:owner).and_return(@user)
create_relation(@platform, @user, 'admin')
end
it_should_behave_like 'content platform user with show rights'
it_should_behave_like 'content platform user with show rights for hidden platform'
it_should_behave_like 'content platform user with owner rights'
end
context 'for member of platform' do
@ -83,6 +115,7 @@ describe Platforms::ContentsController do
it_should_behave_like 'content platform user with show rights'
it_should_behave_like 'content platform user with show rights for hidden platform'
it_should_behave_like 'content platform user without owner rights'
end
context 'for simple user' do
@ -92,6 +125,7 @@ describe Platforms::ContentsController do
it_should_behave_like 'content platform user with show rights'
it_should_behave_like 'content platform user without show rights for hidden platform'
it_should_behave_like 'content platform user without owner rights'
end
end