2012-10-09 10:14:17 +02:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notes
|
|
|
|
#
|
2012-11-19 19:24:05 +01:00
|
|
|
# id :integer not null, primary key
|
2012-10-09 10:14:17 +02:00
|
|
|
# note :text
|
|
|
|
# noteable_type :string(255)
|
|
|
|
# author_id :integer
|
2012-11-19 19:24:05 +01:00
|
|
|
# created_at :datetime not null
|
|
|
|
# updated_at :datetime not null
|
2012-10-09 10:14:17 +02:00
|
|
|
# project_id :integer
|
|
|
|
# attachment :string(255)
|
|
|
|
# line_code :string(255)
|
2013-01-03 20:09:18 +01:00
|
|
|
# commit_id :string(255)
|
|
|
|
# noteable_id :integer
|
2012-10-09 10:14:17 +02:00
|
|
|
#
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Note do
|
|
|
|
describe "Associations" do
|
|
|
|
it { should belong_to(:project) }
|
2012-08-29 17:36:02 +02:00
|
|
|
it { should belong_to(:noteable) }
|
|
|
|
it { should belong_to(:author).class_name('User') }
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|
|
|
|
|
2012-09-26 20:17:17 +02:00
|
|
|
describe "Mass assignment" do
|
|
|
|
it { should_not allow_mass_assignment_of(:author) }
|
|
|
|
it { should_not allow_mass_assignment_of(:author_id) }
|
|
|
|
end
|
|
|
|
|
2011-10-08 23:36:38 +02:00
|
|
|
describe "Validation" do
|
|
|
|
it { should validate_presence_of(:note) }
|
|
|
|
it { should validate_presence_of(:project) }
|
|
|
|
end
|
|
|
|
|
2012-03-14 14:31:31 +01:00
|
|
|
describe "Voting score" do
|
2012-11-06 04:31:55 +01:00
|
|
|
let(:project) { create(:project) }
|
2012-03-14 14:31:31 +01:00
|
|
|
|
|
|
|
it "recognizes a neutral note" do
|
2012-10-30 03:27:36 +01:00
|
|
|
note = create(:votable_note, note: "This is not a +1 note")
|
2012-03-14 14:31:31 +01:00
|
|
|
note.should_not be_upvote
|
2012-09-08 02:08:35 +02:00
|
|
|
note.should_not be_downvote
|
|
|
|
end
|
|
|
|
|
|
|
|
it "recognizes a neutral emoji note" do
|
2012-10-30 03:27:36 +01:00
|
|
|
note = build(:votable_note, note: "I would :+1: this, but I don't want to")
|
2012-09-08 02:08:35 +02:00
|
|
|
note.should_not be_upvote
|
|
|
|
note.should_not be_downvote
|
2012-03-14 14:31:31 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
it "recognizes a +1 note" do
|
2012-10-30 03:27:36 +01:00
|
|
|
note = create(:votable_note, note: "+1 for this")
|
2012-03-14 14:31:31 +01:00
|
|
|
note.should be_upvote
|
|
|
|
end
|
|
|
|
|
2012-09-06 21:31:25 +02:00
|
|
|
it "recognizes a +1 emoji as a vote" do
|
2012-10-30 03:27:36 +01:00
|
|
|
note = build(:votable_note, note: ":+1: for this")
|
2012-09-06 21:31:25 +02:00
|
|
|
note.should be_upvote
|
|
|
|
end
|
|
|
|
|
2012-09-08 02:08:35 +02:00
|
|
|
it "recognizes a -1 note" do
|
2012-10-30 03:27:36 +01:00
|
|
|
note = create(:votable_note, note: "-1 for this")
|
2012-09-08 02:08:35 +02:00
|
|
|
note.should be_downvote
|
|
|
|
end
|
|
|
|
|
|
|
|
it "recognizes a -1 emoji as a vote" do
|
2012-10-30 03:27:36 +01:00
|
|
|
note = build(:votable_note, note: ":-1: for this")
|
2012-09-08 02:08:35 +02:00
|
|
|
note.should be_downvote
|
2012-09-06 21:31:25 +02:00
|
|
|
end
|
2012-03-14 14:31:31 +01:00
|
|
|
end
|
|
|
|
|
2012-08-28 13:01:27 +02:00
|
|
|
let(:project) { create(:project) }
|
2013-01-04 23:43:32 +01:00
|
|
|
let(:commit) { project.repository.commit }
|
2012-03-14 14:31:31 +01:00
|
|
|
|
2012-08-28 13:01:27 +02:00
|
|
|
describe "Commit notes" do
|
2012-10-30 03:27:36 +01:00
|
|
|
let!(:note) { create(:note_on_commit, note: "+1 from me") }
|
|
|
|
let!(:commit) { note.noteable }
|
2012-01-21 13:54:32 +01:00
|
|
|
|
2012-10-13 16:23:12 +02:00
|
|
|
it "should be accessible through #noteable" do
|
2012-12-23 01:03:57 +01:00
|
|
|
note.commit_id.should == commit.id
|
2012-10-30 03:27:36 +01:00
|
|
|
note.noteable.should be_a(Commit)
|
|
|
|
note.noteable.should == commit
|
2012-10-13 16:23:12 +02:00
|
|
|
end
|
|
|
|
|
2012-01-21 13:54:32 +01:00
|
|
|
it "should save a valid note" do
|
2012-12-23 01:03:57 +01:00
|
|
|
note.commit_id.should == commit.id
|
2012-10-30 03:27:36 +01:00
|
|
|
note.noteable == commit
|
2012-10-13 16:23:12 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be recognized by #for_commit?" do
|
2012-10-30 03:27:36 +01:00
|
|
|
note.should be_for_commit
|
2012-01-21 13:54:32 +01:00
|
|
|
end
|
|
|
|
|
2012-10-30 03:27:36 +01:00
|
|
|
it "should not be votable" do
|
|
|
|
note.should_not be_votable
|
2012-01-21 13:54:32 +01:00
|
|
|
end
|
2012-10-30 03:27:36 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Commit diff line notes" do
|
2013-01-15 14:19:14 +01:00
|
|
|
let!(:note) { create(:note_on_commit_diff, note: "+1 from me") }
|
2012-10-30 03:27:36 +01:00
|
|
|
let!(:commit) { note.noteable }
|
2012-01-21 13:54:32 +01:00
|
|
|
|
|
|
|
it "should save a valid note" do
|
2012-12-23 01:03:57 +01:00
|
|
|
note.commit_id.should == commit.id
|
2012-10-30 03:27:36 +01:00
|
|
|
note.noteable.id.should == commit.id
|
2012-10-13 16:23:12 +02:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be recognized by #for_diff_line?" do
|
2012-10-30 03:27:36 +01:00
|
|
|
note.should be_for_diff_line
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should be recognized by #for_commit_diff_line?" do
|
|
|
|
note.should be_for_commit_diff_line
|
|
|
|
end
|
|
|
|
|
|
|
|
it "should not be votable" do
|
|
|
|
note.should_not be_votable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Issue notes" do
|
|
|
|
let!(:note) { create(:note_on_issue, note: "+1 from me") }
|
|
|
|
|
|
|
|
it "should not be votable" do
|
|
|
|
note.should be_votable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Merge request notes" do
|
|
|
|
let!(:note) { create(:note_on_merge_request, note: "+1 from me") }
|
|
|
|
|
|
|
|
it "should not be votable" do
|
|
|
|
note.should be_votable
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe "Merge request diff line notes" do
|
2013-01-15 14:19:14 +01:00
|
|
|
let!(:note) { create(:note_on_merge_request_diff, note: "+1 from me") }
|
2012-10-30 03:27:36 +01:00
|
|
|
|
|
|
|
it "should not be votable" do
|
|
|
|
note.should_not be_votable
|
2012-01-21 13:54:32 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-05-20 20:35:03 +02:00
|
|
|
describe '#create_status_change_note' do
|
2012-11-06 04:31:55 +01:00
|
|
|
let(:project) { create(:project) }
|
|
|
|
let(:thing) { create(:issue, project: project) }
|
|
|
|
let(:author) { create(:user) }
|
2012-05-20 20:35:03 +02:00
|
|
|
let(:status) { 'new_status' }
|
|
|
|
|
|
|
|
subject { Note.create_status_change_note(thing, author, status) }
|
|
|
|
|
|
|
|
it 'creates and saves a Note' do
|
|
|
|
should be_a Note
|
|
|
|
subject.id.should_not be_nil
|
|
|
|
end
|
|
|
|
|
|
|
|
its(:noteable) { should == thing }
|
|
|
|
its(:project) { should == thing.project }
|
|
|
|
its(:author) { should == author }
|
|
|
|
its(:note) { should =~ /Status changed to #{status}/ }
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe :authorization do
|
|
|
|
before do
|
2012-08-28 13:01:27 +02:00
|
|
|
@p1 = create(:project)
|
2012-11-06 04:31:55 +01:00
|
|
|
@p2 = create(:project)
|
|
|
|
@u1 = create(:user)
|
|
|
|
@u2 = create(:user)
|
|
|
|
@u3 = create(:user)
|
2011-10-08 23:36:38 +02:00
|
|
|
@abilities = Six.new
|
|
|
|
@abilities << Ability
|
|
|
|
end
|
|
|
|
|
2011-10-26 15:46:25 +02:00
|
|
|
describe :read do
|
|
|
|
before do
|
2012-08-11 00:07:50 +02:00
|
|
|
@p1.users_projects.create(user: @u2, project_access: UsersProject::GUEST)
|
|
|
|
@p2.users_projects.create(user: @u3, project_access: UsersProject::GUEST)
|
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
|
2012-08-11 00:07:50 +02:00
|
|
|
@p1.users_projects.create(user: @u2, project_access: UsersProject::DEVELOPER)
|
|
|
|
@p2.users_projects.create(user: @u3, project_access: UsersProject::DEVELOPER)
|
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
|
2012-08-11 00:07:50 +02:00
|
|
|
@p1.users_projects.create(user: @u1, project_access: UsersProject::REPORTER)
|
|
|
|
@p1.users_projects.create(user: @u2, project_access: UsersProject::MASTER)
|
|
|
|
@p2.users_projects.create(user: @u3, project_access: UsersProject::MASTER)
|
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
|