2012-10-09 04:14:17 -04:00
|
|
|
# == Schema Information
|
|
|
|
#
|
|
|
|
# Table name: notes
|
|
|
|
#
|
2012-11-19 13:24:05 -05:00
|
|
|
# id :integer not null, primary key
|
2012-10-09 04:14:17 -04:00
|
|
|
# note :text
|
|
|
|
# noteable_type :string(255)
|
|
|
|
# author_id :integer
|
2014-04-09 08:05:03 -04:00
|
|
|
# created_at :datetime
|
|
|
|
# updated_at :datetime
|
2012-10-09 04:14:17 -04:00
|
|
|
# project_id :integer
|
|
|
|
# attachment :string(255)
|
|
|
|
# line_code :string(255)
|
2013-01-03 14:09:18 -05:00
|
|
|
# commit_id :string(255)
|
|
|
|
# noteable_id :integer
|
2013-10-01 08:15:28 -04:00
|
|
|
# system :boolean default(FALSE), not null
|
2014-04-09 08:05:03 -04:00
|
|
|
# st_diff :text
|
2015-09-06 10:48:48 -04:00
|
|
|
# updated_by_id :integer
|
2015-12-09 00:00:01 -05:00
|
|
|
# is_award :boolean default(FALSE), not null
|
2012-10-09 04:14:17 -04:00
|
|
|
#
|
|
|
|
|
2011-10-08 17:36:38 -04:00
|
|
|
require 'spec_helper'
|
|
|
|
|
2015-12-09 04:50:51 -05:00
|
|
|
describe Note, models: true do
|
2015-05-10 22:57:44 -04:00
|
|
|
describe 'associations' do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to belong_to(:project) }
|
2015-08-05 05:00:12 -04:00
|
|
|
it { is_expected.to belong_to(:noteable) }
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to belong_to(:author).class_name('User') }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-05-10 22:57:44 -04:00
|
|
|
describe 'validation' do
|
2015-02-12 13:17:35 -05:00
|
|
|
it { is_expected.to validate_presence_of(:note) }
|
|
|
|
it { is_expected.to validate_presence_of(:project) }
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2012-08-28 07:01:27 -04:00
|
|
|
describe "Commit notes" do
|
2012-10-29 22:27:36 -04:00
|
|
|
let!(:note) { create(:note_on_commit, note: "+1 from me") }
|
|
|
|
let!(:commit) { note.noteable }
|
2012-01-21 07:54:32 -05:00
|
|
|
|
2012-10-13 10:23:12 -04:00
|
|
|
it "should be accessible through #noteable" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(note.commit_id).to eq(commit.id)
|
|
|
|
expect(note.noteable).to be_a(Commit)
|
|
|
|
expect(note.noteable).to eq(commit)
|
2012-10-13 10:23:12 -04:00
|
|
|
end
|
|
|
|
|
2012-01-21 07:54:32 -05:00
|
|
|
it "should save a valid note" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(note.commit_id).to eq(commit.id)
|
2012-10-29 22:27:36 -04:00
|
|
|
note.noteable == commit
|
2012-10-13 10:23:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be recognized by #for_commit?" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(note).to be_for_commit
|
2012-01-21 07:54:32 -05:00
|
|
|
end
|
2012-10-29 22:27:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
describe "Commit diff line notes" do
|
2013-01-15 08:19:14 -05:00
|
|
|
let!(:note) { create(:note_on_commit_diff, note: "+1 from me") }
|
2012-10-29 22:27:36 -04:00
|
|
|
let!(:commit) { note.noteable }
|
2012-01-21 07:54:32 -05:00
|
|
|
|
|
|
|
it "should save a valid note" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(note.commit_id).to eq(commit.id)
|
|
|
|
expect(note.noteable.id).to eq(commit.id)
|
2012-10-13 10:23:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be recognized by #for_diff_line?" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(note).to be_for_diff_line
|
2012-10-29 22:27:36 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it "should be recognized by #for_commit_diff_line?" do
|
2015-02-12 13:17:35 -05:00
|
|
|
expect(note).to be_for_commit_diff_line
|
2012-10-29 22:27:36 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-05-10 22:57:44 -04:00
|
|
|
describe 'authorization' do
|
2011-10-26 09:46:25 -04:00
|
|
|
before do
|
2012-08-28 07:01:27 -04:00
|
|
|
@p1 = create(:project)
|
2012-11-05 22:31:55 -05:00
|
|
|
@p2 = create(:project)
|
|
|
|
@u1 = create(:user)
|
|
|
|
@u2 = create(:user)
|
|
|
|
@u3 = create(:user)
|
2011-10-08 17:36:38 -04:00
|
|
|
@abilities = Six.new
|
|
|
|
@abilities << Ability
|
|
|
|
end
|
|
|
|
|
2015-05-10 22:57:44 -04:00
|
|
|
describe 'read' do
|
2011-10-26 09:46:25 -04:00
|
|
|
before do
|
2014-09-15 04:36:50 -04:00
|
|
|
@p1.project_members.create(user: @u2, access_level: ProjectMember::GUEST)
|
|
|
|
@p2.project_members.create(user: @u3, access_level: ProjectMember::GUEST)
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
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 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-05-10 22:57:44 -04:00
|
|
|
describe 'write' do
|
2011-10-26 09:46:25 -04:00
|
|
|
before do
|
2014-09-15 04:36:50 -04:00
|
|
|
@p1.project_members.create(user: @u2, access_level: ProjectMember::DEVELOPER)
|
|
|
|
@p2.project_members.create(user: @u3, access_level: ProjectMember::DEVELOPER)
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-06-26 09:55:56 -04:00
|
|
|
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 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-05-10 22:57:44 -04:00
|
|
|
describe 'admin' do
|
2011-10-26 09:46:25 -04:00
|
|
|
before do
|
2014-09-15 04:36:50 -04:00
|
|
|
@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 17:36:38 -04:00
|
|
|
end
|
|
|
|
|
2015-02-12 13:17:35 -05:00
|
|
|
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 17:36:38 -04:00
|
|
|
end
|
|
|
|
end
|
2013-05-30 19:16:49 -04:00
|
|
|
|
|
|
|
it_behaves_like 'an editable mentionable' do
|
2015-10-12 10:23:15 -04:00
|
|
|
subject { create :note, noteable: issue, project: issue.project }
|
2015-04-16 16:25:25 -04:00
|
|
|
|
2015-10-12 10:23:15 -04:00
|
|
|
let(:issue) { create :issue }
|
2013-05-30 19:16:49 -04:00
|
|
|
let(:backref_text) { issue.gfm_reference }
|
|
|
|
let(:set_mentionable_text) { ->(txt) { subject.note = txt } }
|
|
|
|
end
|
2015-08-19 09:59:48 -04:00
|
|
|
|
2016-01-06 07:33:47 -05:00
|
|
|
describe "#all_references" do
|
|
|
|
let!(:note1) { create(:note) }
|
|
|
|
let!(:note2) { create(:note) }
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2015-08-19 09:59:48 -04:00
|
|
|
describe :search do
|
|
|
|
let!(:note) { create(:note, note: "WoW") }
|
|
|
|
|
|
|
|
it { expect(Note.search('wow')).to include(note) }
|
|
|
|
end
|
2015-11-19 07:41:05 -05:00
|
|
|
|
|
|
|
describe :grouped_awards do
|
|
|
|
before do
|
2015-11-19 16:00:30 -05:00
|
|
|
create :note, note: "smile", is_award: true
|
|
|
|
create :note, note: "smile", is_award: true
|
2015-11-19 07:41:05 -05:00
|
|
|
end
|
|
|
|
|
2015-12-24 12:46:35 -05:00
|
|
|
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 07:41:05 -05:00
|
|
|
end
|
|
|
|
end
|
2015-12-10 07:36:31 -05:00
|
|
|
|
|
|
|
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 07:33:47 -05:00
|
|
|
|
2016-01-13 12:18:59 -05: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 04:04:48 -05:00
|
|
|
let(:note) do
|
2016-01-13 12:18:59 -05:00
|
|
|
create :note,
|
|
|
|
noteable: ext_issue, project: ext_proj,
|
|
|
|
note: "mentioned in issue #{private_issue.to_reference(ext_proj)}",
|
|
|
|
system: true
|
2016-01-14 04:04:48 -05:00
|
|
|
end
|
2016-01-13 12:18:59 -05:00
|
|
|
|
|
|
|
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 06:10:00 -05:00
|
|
|
describe "set_award!" do
|
|
|
|
let(:issue) { create :issue }
|
|
|
|
|
|
|
|
it "converts aliases to actual name" do
|
2015-12-24 05:14:46 -05:00
|
|
|
note = create :note, note: ":+1:", noteable: issue
|
|
|
|
expect(note.reload.note).to eq("thumbsup")
|
2015-12-11 06:10:00 -05:00
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|