2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-12-07 19:51:08 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2012-03-20 15:40:49 +00:00
|
|
|
shared_examples_for 'group user without update rights' do
|
|
|
|
it 'should be not able to perform update action' do
|
2012-05-02 10:18:07 +01:00
|
|
|
put :update, {:id => @group}.merge(@update_params)
|
2012-03-20 15:40:49 +00:00
|
|
|
response.should redirect_to(forbidden_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not be able to update group data' do
|
2012-05-02 10:18:07 +01:00
|
|
|
put :update, :id => @group, :group => {:description => 'new description'}
|
2012-03-20 15:40:49 +00:00
|
|
|
@group.reload.description.should_not == 'new description'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'group user without destroy rights' do
|
|
|
|
it 'should not be able to destroy group' do
|
2012-05-02 10:18:07 +01:00
|
|
|
delete :destroy, :id => @group
|
2012-03-20 15:40:49 +00:00
|
|
|
response.should redirect_to(forbidden_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not change groups count after destroy action' do
|
2012-05-02 10:18:07 +01:00
|
|
|
lambda { delete :destroy, :id => @group }.should change{ Group.count }.by(0)
|
2012-03-20 15:40:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'group admin' do
|
|
|
|
it_should_behave_like 'no group user'
|
|
|
|
|
|
|
|
it 'should be able to update group data' do
|
2012-05-02 10:18:07 +01:00
|
|
|
put :update, :id => @group, :group => {:description => 'new description'}
|
2012-03-20 15:40:49 +00:00
|
|
|
@group.reload.description.should == 'new description'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform update action' do
|
2012-05-02 10:18:07 +01:00
|
|
|
put :update, {:id => @group}.merge(@update_params)
|
2012-03-20 15:40:49 +00:00
|
|
|
response.should redirect_to(group_path(@group))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'no group user' do
|
|
|
|
it 'should be able to perform create action' do
|
|
|
|
post :create, @create_params
|
2012-04-19 20:45:50 +01:00
|
|
|
response.should redirect_to(group_path(Group.last))
|
2012-03-20 15:40:49 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should change objects count on create' do
|
|
|
|
lambda { post :create, @create_params }.should change{ Group.count }.by(1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform autocomplete_group_uname action' do
|
|
|
|
get :autocomplete_group_uname
|
|
|
|
response.should be_success
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
shared_examples_for 'group owner' do
|
|
|
|
it_should_behave_like 'group admin'
|
|
|
|
|
|
|
|
it 'should be able to destroy group' do
|
2012-05-02 10:18:07 +01:00
|
|
|
delete :destroy, :id => @group
|
2012-03-20 15:40:49 +00:00
|
|
|
response.should redirect_to(groups_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should change groups count after destroy action' do
|
2012-05-02 10:18:07 +01:00
|
|
|
lambda { delete :destroy, :id => @group }.should change{ Group.count }.by(-1)
|
2012-03-20 15:40:49 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-02 10:18:07 +01:00
|
|
|
describe Groups::ProfileController do
|
2011-12-07 19:51:08 +00:00
|
|
|
before(:each) do
|
2012-05-16 16:29:28 +01:00
|
|
|
stub_symlink_methods
|
2012-03-29 21:34:22 +01:00
|
|
|
@group = FactoryGirl.create(:group)
|
|
|
|
@another_user = FactoryGirl.create(:user)
|
2012-03-03 00:19:31 +00:00
|
|
|
@create_params = {:group => {:description => 'grp1', :uname => 'un_grp1'}}
|
|
|
|
@update_params = {:group => {:description => 'grp2'}}
|
2011-12-07 19:51:08 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'for guest' do
|
|
|
|
it 'should not be able to perform index action' do
|
|
|
|
get :index
|
|
|
|
response.should redirect_to(new_user_session_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should not be able to perform update action' do
|
2012-05-02 10:18:07 +01:00
|
|
|
put :update, {:id => @group}.merge(@update_params)
|
2011-12-07 19:51:08 +00:00
|
|
|
response.should redirect_to(new_user_session_path)
|
|
|
|
end
|
2012-03-21 13:52:35 +00:00
|
|
|
|
|
|
|
it 'should not be able to perform create action' do
|
|
|
|
post :create, @create_params
|
|
|
|
response.should redirect_to(new_user_session_path)
|
|
|
|
end
|
2011-12-07 19:51:08 +00:00
|
|
|
end
|
|
|
|
|
2012-03-20 15:40:49 +00:00
|
|
|
context 'for global admin' do
|
2011-12-07 19:51:08 +00:00
|
|
|
before(:each) do
|
2012-03-29 21:34:22 +01:00
|
|
|
@admin = FactoryGirl.create(:admin)
|
2011-12-07 19:51:08 +00:00
|
|
|
set_session_for(@admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_should_behave_like 'update_member_relation'
|
2012-03-20 15:40:49 +00:00
|
|
|
it_should_behave_like 'group owner'
|
2011-12-07 19:51:08 +00:00
|
|
|
|
2011-12-15 09:38:40 +00:00
|
|
|
it 'should be able to perform index action' do
|
|
|
|
get :index
|
|
|
|
response.should render_template(:index)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should be able to perform update action' do
|
2012-05-02 10:18:07 +01:00
|
|
|
put :update, {:id => @group}.merge(@update_params)
|
2011-12-15 09:38:40 +00:00
|
|
|
response.should redirect_to(group_path(@group))
|
|
|
|
end
|
2012-03-20 15:40:49 +00:00
|
|
|
end
|
2011-12-15 09:38:40 +00:00
|
|
|
|
2012-03-20 15:40:49 +00:00
|
|
|
context 'for group admin' do
|
|
|
|
before(:each) do
|
2012-03-29 21:34:22 +01:00
|
|
|
@user = FactoryGirl.create(:user)
|
2012-03-20 15:40:49 +00:00
|
|
|
set_session_for(@user)
|
2012-04-26 02:38:33 +01:00
|
|
|
@group.actors.create(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
|
2011-12-07 19:51:08 +00:00
|
|
|
end
|
|
|
|
|
2012-03-20 15:40:49 +00:00
|
|
|
it_should_behave_like 'update_member_relation'
|
|
|
|
it_should_behave_like 'group admin'
|
|
|
|
it_should_behave_like 'group user without destroy rights'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for group owner' do
|
|
|
|
before(:each) do
|
2012-03-29 21:34:22 +01:00
|
|
|
@user = FactoryGirl.create(:user)
|
2012-03-20 15:40:49 +00:00
|
|
|
set_session_for(@user)
|
2012-09-06 11:53:03 +01:00
|
|
|
@group.owner = @user
|
|
|
|
@group.save
|
2012-04-26 02:38:33 +01:00
|
|
|
@group.actors.create(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
|
2011-12-07 19:51:08 +00:00
|
|
|
end
|
2012-03-20 15:40:49 +00:00
|
|
|
|
|
|
|
it_should_behave_like 'update_member_relation'
|
|
|
|
it_should_behave_like 'group owner'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for group reader and writer user' do
|
|
|
|
before(:each) do
|
2012-03-29 21:34:22 +01:00
|
|
|
@user = FactoryGirl.create(:user)
|
2012-03-20 15:40:49 +00:00
|
|
|
set_session_for(@user)
|
2012-04-26 02:38:33 +01:00
|
|
|
@group.actors.create(:actor_type => 'User', :actor_id => @user.id, :role => 'reader')
|
2012-03-20 15:40:49 +00:00
|
|
|
end
|
|
|
|
|
2012-07-27 14:17:37 +01:00
|
|
|
it "should remove user from groups" do
|
2012-07-27 14:27:24 +01:00
|
|
|
delete :remove_user, :id => @group
|
2012-07-27 14:17:37 +01:00
|
|
|
response.should redirect_to(groups_path)
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should change relations count" do
|
2012-07-27 14:27:24 +01:00
|
|
|
lambda { delete :remove_user, :id => @group }.should change{ Relation.count }.by(-1)
|
2012-07-27 14:17:37 +01:00
|
|
|
end
|
|
|
|
|
2012-03-20 15:40:49 +00:00
|
|
|
it_should_behave_like 'no group user'
|
|
|
|
it_should_behave_like 'group user without destroy rights'
|
|
|
|
it_should_behave_like 'group user without update rights'
|
2011-12-07 19:51:08 +00:00
|
|
|
end
|
|
|
|
end
|