rosa-build/spec/models/comment_spec.rb

105 lines
3.8 KiB
Ruby
Raw Normal View History

2012-01-30 20:39:34 +00:00
# -*- encoding : utf-8 -*-
require 'spec_helper'
require "cancan/matchers"
2012-01-17 08:17:12 +00:00
def set_commentable_data
@ability = Ability.new(@user)
@project = FactoryGirl.create(:project)
2012-04-13 20:44:04 +01:00
@issue = FactoryGirl.create(:issue, :project_id => @project.id, :user => @user)
@comment = FactoryGirl.create(:comment, :commentable => @issue, :user => @user, :project => @project)
@stranger_comment = FactoryGirl.create(:comment, :commentable => @issue, :user => @stranger, :project => @project)
any_instance_of(Project, :versions => ['v1.0', 'v2.0'])
end
describe Comment do
before { stub_symlink_methods }
context 'for global admin user' do
before(:each) do
@user = FactoryGirl.create(:admin)
@stranger = FactoryGirl.create(:user)
2012-01-17 08:17:12 +00:00
set_commentable_data
end
2012-12-13 11:30:49 +00:00
it_should_behave_like 'user with create comment ability (for model)'
it_should_behave_like 'user with update own comment ability (for model)'
it_should_behave_like 'user with update stranger comment ability (for model)'
it_should_behave_like 'user with destroy comment ability (for model)'
it_should_behave_like 'user with destroy stranger comment ability (for model)'
end
context 'for project admin user' do
before(:each) do
@user = FactoryGirl.create(:user)
@stranger = FactoryGirl.create(:user)
2012-01-17 08:17:12 +00:00
set_commentable_data
@project.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
end
2012-12-13 11:30:49 +00:00
it_should_behave_like 'user with create comment ability (for model)'
it_should_behave_like 'user with update own comment ability (for model)'
it_should_behave_like 'user with update stranger comment ability (for model)'
it_should_behave_like 'user with destroy comment ability (for model)'
it_should_behave_like 'user with destroy stranger comment ability (for model)'
2012-12-13 11:30:49 +00:00
pending "sends an e-mail" do
ActionMailer::Base.deliveries.last.to.include?(@stranger.email).should == true
end
end
context 'for project owner user' do
before(:each) do
@user = FactoryGirl.create(:user)
@stranger = FactoryGirl.create(:user)
2012-01-17 08:17:12 +00:00
set_commentable_data
@project.owner = @user
@project.save
@project.relations.create!(:actor_type => 'User', :actor_id => @user.id, :role => 'admin')
end
2012-12-13 11:30:49 +00:00
it_should_behave_like 'user with create comment ability (for model)'
it_should_behave_like 'user with update own comment ability (for model)'
it_should_behave_like 'user with update stranger comment ability (for model)'
it_should_behave_like 'user with destroy comment ability (for model)'
it_should_behave_like 'user with destroy stranger comment ability (for model)'
end
context 'for simple user' do
before(:each) do
@user = FactoryGirl.create(:user)
@stranger = FactoryGirl.create(:user)
2012-01-17 08:17:12 +00:00
set_commentable_data
end
2012-12-13 11:30:49 +00:00
it_should_behave_like 'user with create comment ability (for model)'
it_should_behave_like 'user with update own comment ability (for model)'
it_should_behave_like 'user without update stranger comment ability (for model)'
it_should_behave_like 'user with destroy comment ability (for model)'
it_should_behave_like 'user without destroy stranger comment ability (for model)'
context 'with mass assignment' do
it 'should not be able to update commentable' do
@comment.update_attributes({:commentable_type => 'Grit::Commit', :commentable_id => 0})
@comment.reload.commentable_id.should eql @issue.id
@comment.reload.commentable_type.should eql @issue.class.name
end
it 'should not be able to update owner' do
@comment.should_not allow_mass_assignment_of :user_id
end
it 'should not be able to update project' do
@comment.should_not allow_mass_assignment_of :project_id
end
end
end
end