2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Note do
|
2012-01-21 13:54:32 +01:00
|
|
|
let(:project) { Factory :project }
|
|
|
|
let!(:commit) { project.commit }
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
describe "Associations" do
|
|
|
|
it { should belong_to(:project) }
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Validation" do
|
|
|
|
it { should validate_presence_of(:note) }
|
|
|
|
it { should validate_presence_of(:project) }
|
|
|
|
end
|
|
|
|
|
|
|
|
it { Factory.create(:note,
|
2012-01-21 13:54:32 +01:00
|
|
|
:project => project).should be_valid }
|
2011-11-18 07:52:13 +01:00
|
|
|
describe "Scopes" do
|
|
|
|
it "should have a today named scope that returns ..." do
|
|
|
|
Note.today.where_values.should == ["created_at >= '#{Date.today}'"]
|
|
|
|
end
|
|
|
|
end
|
2012-01-21 13:54:32 +01:00
|
|
|
|
|
|
|
describe "Commit notes" do
|
|
|
|
|
|
|
|
before do
|
|
|
|
@note = Factory :note,
|
|
|
|
:project => project,
|
|
|
|
:noteable_id => commit.id,
|
|
|
|
:noteable_type => "Commit"
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should save a valid note" do
|
|
|
|
@note.noteable_id.should == commit.id
|
|
|
|
@note.target.id.should == commit.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Pre-line commit notes" do
|
|
|
|
before do
|
|
|
|
@note = Factory :note,
|
|
|
|
:project => project,
|
|
|
|
:noteable_id => commit.id,
|
|
|
|
:noteable_type => "Commit",
|
2012-01-25 20:10:09 +01:00
|
|
|
:line_code => "0_16_1"
|
2012-01-21 13:54:32 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should save a valid note" do
|
|
|
|
@note.noteable_id.should == commit.id
|
|
|
|
@note.target.id.should == commit.id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe :authorization do
|
|
|
|
before do
|
2012-01-21 13:54:32 +01:00
|
|
|
@p1 = project
|
2011-10-08 23:36:38 +02:00
|
|
|
@p2 = Factory :project, :code => "alien", :path => "legit_1"
|
|
|
|
@u1 = Factory :user
|
|
|
|
@u2 = Factory :user
|
|
|
|
@u3 = Factory :user
|
|
|
|
@abilities = Six.new
|
|
|
|
@abilities << Ability
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe :read do
|
|
|
|
before do
|
2011-12-07 09:04:57 +01:00
|
|
|
@p1.users_projects.create(:user => @u1, :project_access => Project::PROJECT_N)
|
|
|
|
@p1.users_projects.create(:user => @u2, :project_access => Project::PROJECT_R)
|
|
|
|
@p2.users_projects.create(:user => @u3, :project_access => Project::PROJECT_R)
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it { @abilities.allowed?(@u1, :read_note, @p1).should be_false }
|
|
|
|
it { @abilities.allowed?(@u2, :read_note, @p1).should be_true }
|
|
|
|
it { @abilities.allowed?(@u3, :read_note, @p1).should be_false }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe :write do
|
|
|
|
before do
|
2011-12-07 09:04:57 +01:00
|
|
|
@p1.users_projects.create(:user => @u1, :project_access => Project::PROJECT_R)
|
|
|
|
@p1.users_projects.create(:user => @u2, :project_access => Project::PROJECT_RW)
|
|
|
|
@p2.users_projects.create(:user => @u3, :project_access => Project::PROJECT_RW)
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it { @abilities.allowed?(@u1, :write_note, @p1).should be_false }
|
|
|
|
it { @abilities.allowed?(@u2, :write_note, @p1).should be_true }
|
|
|
|
it { @abilities.allowed?(@u3, :write_note, @p1).should be_false }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe :admin do
|
|
|
|
before do
|
2011-12-07 09:04:57 +01:00
|
|
|
@p1.users_projects.create(:user => @u1, :project_access => Project::PROJECT_R)
|
|
|
|
@p1.users_projects.create(:user => @u2, :project_access => Project::PROJECT_RWA)
|
|
|
|
@p2.users_projects.create(:user => @u3, :project_access => Project::PROJECT_RWA)
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it { @abilities.allowed?(@u1, :admin_note, @p1).should be_false }
|
|
|
|
it { @abilities.allowed?(@u2, :admin_note, @p1).should be_true }
|
|
|
|
it { @abilities.allowed?(@u3, :admin_note, @p1).should be_false }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notes
|
|
|
|
#
|
|
|
|
# id :integer not null, primary key
|
2011-11-10 23:08:20 +01:00
|
|
|
# note :text
|
2011-10-08 23:36:38 +02:00
|
|
|
# noteable_id :string(255)
|
|
|
|
# noteable_type :string(255)
|
|
|
|
# author_id :integer
|
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
|
|
|
# project_id :integer
|
|
|
|
# attachment :string(255)
|
2012-01-21 13:54:32 +01:00
|
|
|
# line_code :string(255)
|
2011-10-08 23:36:38 +02:00
|
|
|
#
|
|
|
|
|