2012-01-30 20:39:34 +00:00
|
|
|
# -*- encoding : utf-8 -*-
|
2011-12-07 19:51:08 +00:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe GroupsController do
|
|
|
|
before(:each) do
|
2012-02-20 23:13:05 +00:00
|
|
|
stub_rsync_methods
|
2011-12-07 19:51:08 +00:00
|
|
|
@group = Factory(:group)
|
|
|
|
@another_user = Factory(: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
|
|
|
|
put :update, {:id => @group.id}.merge(@update_params)
|
|
|
|
response.should redirect_to(new_user_session_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for admin' do
|
|
|
|
before(:each) do
|
|
|
|
@admin = Factory(:admin)
|
|
|
|
set_session_for(@admin)
|
|
|
|
end
|
|
|
|
|
|
|
|
it_should_behave_like 'update_member_relation'
|
|
|
|
|
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
|
|
|
|
put :update, {:id => @group.id}.merge(@update_params)
|
|
|
|
response.should redirect_to(group_path(@group))
|
|
|
|
end
|
|
|
|
|
2011-12-07 19:51:08 +00:00
|
|
|
it 'should be able to perform create action' do
|
|
|
|
post :create, @create_params
|
|
|
|
response.should redirect_to(group_path( Group.last.id ))
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should change objects count on create' do
|
|
|
|
lambda { post :create, @create_params }.should change{ Group.count }.by(1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|