rosa-build/spec/controllers/collaborators_controller_sp...

86 lines
2.7 KiB
Ruby
Raw Normal View History

2011-10-30 22:59:03 +00:00
require 'spec_helper'
#require 'shared_examples/collaborators_controller'
2011-10-30 22:59:03 +00:00
describe CollaboratorsController do
before(:each) do
@project = Factory(:project)
@another_user = Factory(:user)
@update_params = {:read => {@another_user.id => '1'}}
end
2011-10-30 22:59:03 +00:00
context 'for guest' do
it 'should not be able to perform index action' do
get :index, :project_id => @project.id
response.should redirect_to(new_user_session_path)
end
it 'should not be able to perform update action' do
post :update, {:project_id => @project.id}.merge(@update_params)
response.should redirect_to(new_user_session_path)
end
end
context 'for global admin' do
before(:each) do
@admin = Factory(:admin)
set_session_for(@admin)
end
it_should_behave_like 'be_able_to_perform_index#collaborators'
it_should_behave_like 'be_able_to_perform_update#collaborators'
it_should_behave_like 'update_collaborator_relation'
end
context 'for admin user' do
before(:each) do
@user = Factory(:user)
@user.relations
set_session_for(@user)
@project.relations.create!(:object_type => 'User', :object_id => @user.id, :role => 'reader')
end
it_should_behave_like 'be_able_to_perform_index#collaborators'
it_should_behave_like 'be_able_to_perform_update#collaborators'
it_should_behave_like 'update_collaborator_relation'
end
context 'for owner user' do
before(:each) do
@user = Factory(:user)
set_session_for(@user)
@project.update_attribute(:owner, @user)
@project.relations.create!(:object_type => 'User', :object_id => @user.id, :role => 'admin')
end
it_should_behave_like 'be_able_to_perform_index#collaborators'
it_should_behave_like 'be_able_to_perform_update#collaborators'
it_should_behave_like 'update_collaborator_relation'
end
context 'for reader user' do
before(:each) do
@user = Factory(:user)
set_session_for(@user)
@project.update_attribute(:owner, @user)
@project.relations.create!(:object_type => 'User', :object_id => @user.id, :role => 'reader')
end
it_should_behave_like 'not_be_able_to_perform_index#collaborators'
it_should_behave_like 'not_be_able_to_perform_update#collaborators'
it_should_behave_like 'not_update_collaborator_relation'
end
context 'for writer user' do
before(:each) do
@user = Factory(:user)
set_session_for(@user)
@project.update_attribute(:owner, @user)
@project.relations.create!(:object_type => 'User', :object_id => @user.id, :role => 'writer')
end
it_should_behave_like 'not_be_able_to_perform_index#collaborators'
it_should_behave_like 'not_be_able_to_perform_update#collaborators'
it_should_behave_like 'not_update_collaborator_relation'
end
2011-10-30 22:59:03 +00:00
end