gitlab-org--gitlab-foss/spec/models/note_spec.rb

146 lines
4.3 KiB
Ruby
Raw Normal View History

2012-10-09 08:14:17 +00:00
# == Schema Information
#
# Table name: notes
#
2012-11-19 18:24:05 +00:00
# id :integer not null, primary key
2012-10-09 08:14:17 +00:00
# note :text
# noteable_type :string(255)
# author_id :integer
# created_at :datetime
# updated_at :datetime
2012-10-09 08:14:17 +00:00
# project_id :integer
# attachment :string(255)
# line_code :string(255)
2013-01-03 19:09:18 +00:00
# commit_id :string(255)
# noteable_id :integer
2013-10-01 12:15:28 +00:00
# system :boolean default(FALSE), not null
# st_diff :text
2015-09-06 14:48:48 +00:00
# updated_by_id :integer
2015-12-09 05:00:01 +00:00
# is_award :boolean default(FALSE), not null
2012-10-09 08:14:17 +00:00
#
2011-10-08 21:36:38 +00:00
require 'spec_helper'
2015-12-09 09:50:51 +00:00
describe Note, models: true do
2015-05-11 02:57:44 +00:00
describe 'associations' do
it { is_expected.to belong_to(:project) }
it { is_expected.to belong_to(:noteable) }
it { is_expected.to belong_to(:author).class_name('User') }
2011-10-08 21:36:38 +00:00
end
2015-05-11 02:57:44 +00:00
describe 'validation' do
it { is_expected.to validate_presence_of(:note) }
it { is_expected.to validate_presence_of(:project) }
2011-10-08 21:36:38 +00:00
end
describe "Commit notes" do
2012-10-30 02:27:36 +00:00
let!(:note) { create(:note_on_commit, note: "+1 from me") }
let!(:commit) { note.noteable }
2012-01-21 12:54:32 +00:00
2012-10-13 14:23:12 +00:00
it "should be accessible through #noteable" do
expect(note.commit_id).to eq(commit.id)
expect(note.noteable).to be_a(Commit)
expect(note.noteable).to eq(commit)
2012-10-13 14:23:12 +00:00
end
2012-01-21 12:54:32 +00:00
it "should save a valid note" do
expect(note.commit_id).to eq(commit.id)
2012-10-30 02:27:36 +00:00
note.noteable == commit
2012-10-13 14:23:12 +00:00
end
it "should be recognized by #for_commit?" do
expect(note).to be_for_commit
2012-01-21 12:54:32 +00:00
end
2012-10-30 02:27:36 +00:00
end
describe "Commit diff line notes" do
2013-01-15 13:19:14 +00:00
let!(:note) { create(:note_on_commit_diff, note: "+1 from me") }
2012-10-30 02:27:36 +00:00
let!(:commit) { note.noteable }
2012-01-21 12:54:32 +00:00
it "should save a valid note" do
expect(note.commit_id).to eq(commit.id)
expect(note.noteable.id).to eq(commit.id)
2012-10-13 14:23:12 +00:00
end
it "should be recognized by #for_diff_line?" do
expect(note).to be_for_diff_line
2012-10-30 02:27:36 +00:00
end
it "should be recognized by #for_commit_diff_line?" do
expect(note).to be_for_commit_diff_line
2012-10-30 02:27:36 +00:00
end
end
2015-05-11 02:57:44 +00:00
describe 'authorization' do
before do
@p1 = create(:project)
@p2 = create(:project)
@u1 = create(:user)
@u2 = create(:user)
@u3 = create(:user)
2011-10-08 21:36:38 +00:00
@abilities = Six.new
@abilities << Ability
end
2015-05-11 02:57:44 +00:00
describe 'read' do
before do
@p1.project_members.create(user: @u2, access_level: ProjectMember::GUEST)
@p2.project_members.create(user: @u3, access_level: ProjectMember::GUEST)
2011-10-08 21:36:38 +00:00
end
it { expect(@abilities.allowed?(@u1, :read_note, @p1)).to be_falsey }
it { expect(@abilities.allowed?(@u2, :read_note, @p1)).to be_truthy }
it { expect(@abilities.allowed?(@u3, :read_note, @p1)).to be_falsey }
2011-10-08 21:36:38 +00:00
end
2015-05-11 02:57:44 +00:00
describe 'write' do
before do
@p1.project_members.create(user: @u2, access_level: ProjectMember::DEVELOPER)
@p2.project_members.create(user: @u3, access_level: ProjectMember::DEVELOPER)
2011-10-08 21:36:38 +00:00
end
it { expect(@abilities.allowed?(@u1, :create_note, @p1)).to be_falsey }
it { expect(@abilities.allowed?(@u2, :create_note, @p1)).to be_truthy }
it { expect(@abilities.allowed?(@u3, :create_note, @p1)).to be_falsey }
2011-10-08 21:36:38 +00:00
end
2015-05-11 02:57:44 +00:00
describe 'admin' do
before do
@p1.project_members.create(user: @u1, access_level: ProjectMember::REPORTER)
@p1.project_members.create(user: @u2, access_level: ProjectMember::MASTER)
@p2.project_members.create(user: @u3, access_level: ProjectMember::MASTER)
2011-10-08 21:36:38 +00:00
end
it { expect(@abilities.allowed?(@u1, :admin_note, @p1)).to be_falsey }
it { expect(@abilities.allowed?(@u2, :admin_note, @p1)).to be_truthy }
it { expect(@abilities.allowed?(@u3, :admin_note, @p1)).to be_falsey }
2011-10-08 21:36:38 +00:00
end
end
it_behaves_like 'an editable mentionable' do
2015-10-12 14:23:15 +00:00
subject { create :note, noteable: issue, project: issue.project }
2015-04-16 20:25:25 +00:00
2015-10-12 14:23:15 +00:00
let(:issue) { create :issue }
let(:backref_text) { issue.gfm_reference }
let(:set_mentionable_text) { ->(txt) { subject.note = txt } }
end
describe :search do
let!(:note) { create(:note, note: "WoW") }
it { expect(Note.search('wow')).to include(note) }
end
2015-11-19 12:41:05 +00:00
describe :grouped_awards do
before do
2015-11-19 21:00:30 +00:00
create :note, note: "smile", is_award: true
create :note, note: "smile", is_award: true
2015-11-19 12:41:05 +00:00
end
it "returns grouped array of notes" do
expect(Note.grouped_awards.first.first).to eq("smile")
expect(Note.grouped_awards.first.last).to match_array(Note.all)
end
end
2011-10-08 21:36:38 +00:00
end