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

233 lines
7.4 KiB
Ruby
Raw Normal View History

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).touch(true) }
it { is_expected.to belong_to(:author).class_name('User') }
2016-02-20 13:59:59 +00:00
it { is_expected.to have_many(:todos).dependent(:destroy) }
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) }
2016-05-04 09:17:16 +00:00
context 'when note is on commit' do
before { allow(subject).to receive(:for_commit?).and_return(true) }
it { is_expected.to validate_presence_of(:commit_id) }
it { is_expected.to_not validate_presence_of(:noteable_id) }
end
2016-05-04 09:17:16 +00:00
context 'when note is not on commit' do
before { allow(subject).to receive(:for_commit?).and_return(false) }
it { is_expected.to_not validate_presence_of(:commit_id) }
it { is_expected.to validate_presence_of(:noteable_id) }
end
2016-05-04 09:17:16 +00:00
context 'when noteable and note project differ' do
subject do
2016-05-04 09:17:16 +00:00
build(:note, noteable: build_stubbed(:issue),
project: build_stubbed(:project))
end
it { is_expected.to be_invalid }
end
2016-05-04 09:17:16 +00:00
context 'when noteable and note project are the same' do
subject { create(:note) }
it { is_expected.to be_valid }
end
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
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
2016-01-06 12:33:47 +00:00
describe "#all_references" do
let!(:note1) { create(:note_on_issue) }
let!(:note2) { create(:note_on_issue) }
2016-01-06 12:33:47 +00:00
it "reads the rendered note body from the cache" do
expect(Banzai::Renderer).to receive(:render).with(note1.note, pipeline: :note, cache_key: [note1, "note"], project: note1.project)
expect(Banzai::Renderer).to receive(:render).with(note2.note, pipeline: :note, cache_key: [note2, "note"], project: note2.project)
note1.all_references
note2.all_references
end
end
2016-03-01 14:43:19 +00:00
describe '.search' do
let(:note) { create(:note_on_issue, note: 'WoW') }
2016-03-01 14:43:19 +00:00
it 'returns notes with matching content' do
expect(described_class.search(note.note)).to eq([note])
end
it 'returns notes with matching content regardless of the casing' do
expect(described_class.search('WOW')).to eq([note])
end
end
2015-11-19 12:41:05 +00:00
2016-03-09 01:04:13 +00:00
describe '.grouped_awards' do
2015-11-19 12:41:05 +00:00
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 hash of notes" do
expect(Note.grouped_awards.keys.size).to eq(3)
expect(Note.grouped_awards["smile"]).to match_array(Note.all)
end
it "returns thumbsup and thumbsdown always" do
expect(Note.grouped_awards["thumbsup"]).to match_array(Note.none)
expect(Note.grouped_awards["thumbsdown"]).to match_array(Note.none)
2015-11-19 12:41:05 +00:00
end
end
describe "editable?" do
it "returns true" do
note = build(:note)
expect(note.editable?).to be_truthy
end
it "returns false" do
note = build(:note, system: true)
expect(note.editable?).to be_falsy
end
it "returns false" do
note = build(:note, is_award: true, note: "smiley")
expect(note.editable?).to be_falsy
end
end
2016-01-06 12:33:47 +00:00
describe "cross_reference_not_visible_for?" do
let(:private_user) { create(:user) }
let(:private_project) { create(:project, namespace: private_user.namespace).tap { |p| p.team << [private_user, :master] } }
let(:private_issue) { create(:issue, project: private_project) }
let(:ext_proj) { create(:project, :public) }
let(:ext_issue) { create(:issue, project: ext_proj) }
2016-01-14 09:04:48 +00:00
let(:note) do
create :note,
noteable: ext_issue, project: ext_proj,
note: "mentioned in issue #{private_issue.to_reference(ext_proj)}",
system: true
2016-01-14 09:04:48 +00:00
end
it "returns true" do
expect(note.cross_reference_not_visible_for?(ext_issue.author)).to be_truthy
end
it "returns false" do
expect(note.cross_reference_not_visible_for?(private_user)).to be_falsy
end
end
2015-12-11 11:10:00 +00:00
describe "set_award!" do
let(:merge_request) { create :merge_request }
2015-12-11 11:10:00 +00:00
it "converts aliases to actual name" do
note = create(:note, note: ":+1:",
noteable: merge_request,
project: merge_request.project)
2015-12-24 10:14:46 +00:00
expect(note.reload.note).to eq("thumbsup")
2015-12-11 11:10:00 +00:00
end
it "is not an award emoji when comment is on a diff" do
note = create(:note_on_merge_request_diff, note: ":blowfish:",
noteable: merge_request,
project: merge_request.project,
line_code: "11d5d2e667e9da4f7f610f81d86c974b146b13bd_0_2")
2016-02-19 09:10:55 +00:00
note = note.reload
expect(note.note).to eq(":blowfish:")
expect(note.is_award?).to be_falsy
end
2015-12-11 11:10:00 +00:00
end
describe 'clear_blank_line_code!' do
it 'clears a blank line code before validation' do
note = build(:note, line_code: ' ')
expect { note.valid? }.to change(note, :line_code).to(nil)
end
end
2011-10-08 21:36:38 +00:00
end