note_spec.rb 5.8 KB
Newer Older
D
Dmitriy Zaporozhets 已提交
1 2 3 4
# == Schema Information
#
# Table name: notes
#
D
Dmitriy Zaporozhets 已提交
5
#  id            :integer          not null, primary key
D
Dmitriy Zaporozhets 已提交
6 7 8
#  note          :text
#  noteable_type :string(255)
#  author_id     :integer
D
Dmitriy Zaporozhets 已提交
9 10
#  created_at    :datetime         not null
#  updated_at    :datetime         not null
D
Dmitriy Zaporozhets 已提交
11 12 13
#  project_id    :integer
#  attachment    :string(255)
#  line_code     :string(255)
D
Dmitriy Zaporozhets 已提交
14 15
#  commit_id     :string(255)
#  noteable_id   :integer
D
Dmitriy Zaporozhets 已提交
16 17
#

G
gitlabhq 已提交
18 19 20 21 22
require 'spec_helper'

describe Note do
  describe "Associations" do
    it { should belong_to(:project) }
23 24
    it { should belong_to(:noteable) }
    it { should belong_to(:author).class_name('User') }
G
gitlabhq 已提交
25 26
  end

27 28 29 30 31
  describe "Mass assignment" do
    it { should_not allow_mass_assignment_of(:author) }
    it { should_not allow_mass_assignment_of(:author_id) }
  end

G
gitlabhq 已提交
32 33 34 35 36
  describe "Validation" do
    it { should validate_presence_of(:note) }
    it { should validate_presence_of(:project) }
  end

37
  describe "Voting score" do
38
    let(:project) { create(:project) }
39 40

    it "recognizes a neutral note" do
R
Riyad Preukschas 已提交
41
      note = create(:votable_note, note: "This is not a +1 note")
42
      note.should_not be_upvote
43 44 45 46
      note.should_not be_downvote
    end

    it "recognizes a neutral emoji note" do
R
Riyad Preukschas 已提交
47
      note = build(:votable_note, note: "I would :+1: this, but I don't want to")
48 49
      note.should_not be_upvote
      note.should_not be_downvote
50 51 52
    end

    it "recognizes a +1 note" do
R
Riyad Preukschas 已提交
53
      note = create(:votable_note, note: "+1 for this")
54 55 56
      note.should be_upvote
    end

57
    it "recognizes a +1 emoji as a vote" do
R
Riyad Preukschas 已提交
58
      note = build(:votable_note, note: ":+1: for this")
59 60 61
      note.should be_upvote
    end

62
    it "recognizes a -1 note" do
R
Riyad Preukschas 已提交
63
      note = create(:votable_note, note: "-1 for this")
64 65 66 67
      note.should be_downvote
    end

    it "recognizes a -1 emoji as a vote" do
R
Riyad Preukschas 已提交
68
      note = build(:votable_note, note: ":-1: for this")
69
      note.should be_downvote
70
    end
71 72
  end

73
  let(:project) { create(:project) }
74
  let(:commit) { project.repository.commit }
75

76
  describe "Commit notes" do
R
Riyad Preukschas 已提交
77 78
    let!(:note) { create(:note_on_commit, note: "+1 from me") }
    let!(:commit) { note.noteable }
D
Dmitriy Zaporozhets 已提交
79

R
Riyad Preukschas 已提交
80
    it "should be accessible through #noteable" do
81
      note.commit_id.should == commit.id
R
Riyad Preukschas 已提交
82 83
      note.noteable.should be_a(Commit)
      note.noteable.should == commit
R
Riyad Preukschas 已提交
84 85
    end

D
Dmitriy Zaporozhets 已提交
86
    it "should save a valid note" do
87
      note.commit_id.should == commit.id
R
Riyad Preukschas 已提交
88
      note.noteable == commit
R
Riyad Preukschas 已提交
89 90 91
    end

    it "should be recognized by #for_commit?" do
R
Riyad Preukschas 已提交
92
      note.should be_for_commit
D
Dmitriy Zaporozhets 已提交
93 94
    end

R
Riyad Preukschas 已提交
95 96
    it "should not be votable" do
      note.should_not be_votable
D
Dmitriy Zaporozhets 已提交
97
    end
R
Riyad Preukschas 已提交
98 99 100 101 102
  end

  describe "Commit diff line notes" do
    let!(:note) { create(:note_on_commit_line, note: "+1 from me") }
    let!(:commit) { note.noteable }
D
Dmitriy Zaporozhets 已提交
103 104

    it "should save a valid note" do
105
      note.commit_id.should == commit.id
R
Riyad Preukschas 已提交
106
      note.noteable.id.should == commit.id
R
Riyad Preukschas 已提交
107 108 109
    end

    it "should be recognized by #for_diff_line?" do
R
Riyad Preukschas 已提交
110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142
      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
    let!(:note) { create(:note_on_merge_request_line, note: "+1 from me") }

    it "should not be votable" do
      note.should_not be_votable
D
Dmitriy Zaporozhets 已提交
143 144 145
    end
  end

146
  describe '#create_status_change_note' do
147 148 149
    let(:project)  { create(:project) }
    let(:thing)    { create(:issue, project: project) }
    let(:author)   { create(:user) }
150 151 152 153 154 155 156 157 158 159 160 161 162 163 164
    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

N
Nihad Abbasov 已提交
165 166
  describe :authorization do
    before do
167
      @p1 = create(:project)
168 169 170 171
      @p2 = create(:project)
      @u1 = create(:user)
      @u2 = create(:user)
      @u3 = create(:user)
G
gitlabhq 已提交
172 173 174 175
      @abilities = Six.new
      @abilities << Ability
    end

N
Nihad Abbasov 已提交
176 177
    describe :read do
      before do
178 179
        @p1.users_projects.create(user: @u2, project_access: UsersProject::GUEST)
        @p2.users_projects.create(user: @u3, project_access: UsersProject::GUEST)
G
gitlabhq 已提交
180 181 182 183 184 185 186
      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

N
Nihad Abbasov 已提交
187 188
    describe :write do
      before do
189 190
        @p1.users_projects.create(user: @u2, project_access: UsersProject::DEVELOPER)
        @p2.users_projects.create(user: @u3, project_access: UsersProject::DEVELOPER)
G
gitlabhq 已提交
191 192 193 194 195 196 197
      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

N
Nihad Abbasov 已提交
198 199
    describe :admin do
      before do
200 201 202
        @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)
G
gitlabhq 已提交
203 204 205 206 207 208 209 210
      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