rosa-build/spec/models/group_spec.rb

101 lines
2.6 KiB
Ruby
Raw Normal View History

require 'spec_helper'
2012-03-20 15:40:49 +00:00
require "cancan/matchers"
describe Group do
2012-03-20 15:40:49 +00:00
before(:each) do
stub_symlink_methods
@group = FactoryGirl.create(:group)
2012-03-20 15:40:49 +00:00
@ability = Ability.new(User.new)
end
context 'for guest' do
[:read, :update, :destroy, :manage_members].each do |action|
2012-03-20 15:40:49 +00:00
it "should not be able to #{action} group" do
@ability.should_not be_able_to(action, @group)
end
end
end
context 'for global admin' do
before(:each) do
@admin = FactoryGirl.create(:admin)
2012-03-20 15:40:49 +00:00
@ability = Ability.new(@admin)
end
[:read, :update, :destroy, :manage_members].each do |action|
2012-03-20 15:40:49 +00:00
it "should be able to #{action} group" do
@ability.should be_able_to(action, @group)
end
end
end
context 'for group admin' do
before(:each) do
@user = FactoryGirl.create(:user)
@another_user = FactoryGirl.create(:user)
create_actor_relation(@group, @user, 'admin')
2012-03-20 15:40:49 +00:00
@ability = Ability.new(@user)
end
[:read, :update, :manage_members].each do |action|
2012-03-20 15:40:49 +00:00
it "should be able to #{action} group" do
@ability.should be_able_to(action, @group)
end
end
it "should not be able to destroy group" do
@ability.should_not be_able_to(:destroy, @group)
end
context 'with mass assignment' do
it 'should not be able to update uname' do
2014-01-21 04:51:49 +00:00
@group.should_not allow_mass_assignment_of uname: 'new_uname'
end
it 'should not be able to update owner' do
2014-01-21 04:51:49 +00:00
@group.should_not allow_mass_assignment_of owner_type: 'User', owner_id: @another_user.id
end
end
2012-03-20 15:40:49 +00:00
end
context 'for group owner' do
before(:each) do
@user = FactoryGirl.create(:user)
2012-09-06 11:53:03 +01:00
@group.owner = @user
@group.save
create_actor_relation(@group, @user, 'admin')
2012-03-20 15:40:49 +00:00
@ability = Ability.new(@user)
end
[:read, :update, :destroy, :manage_members].each do |action|
2012-03-20 15:40:49 +00:00
it "should be able to #{action} group" do
@ability.should be_able_to(action, @group)
end
end
end
context 'for group reader and writer user' do
before(:each) do
@user = FactoryGirl.create(:user)
create_actor_relation(@group, @user, 'reader')
2012-03-20 15:40:49 +00:00
@ability = Ability.new(@user)
end
[:read].each do |action|
2012-03-20 15:40:49 +00:00
it "should be able to #{action} group" do
@ability.should be_able_to(action, @group)
end
end
[:update, :destroy, :manage_members].each do |action|
it "should not be able to #{action} group" do
@ability.should_not be_able_to(action, @group)
end
end
end
it {should_not allow_value("How do you do...\nmy_group").for(:uname)}
end