Add more validation tests for note model
This commit is contained in:
parent
57b551a19f
commit
0e613db76d
1 changed files with 27 additions and 0 deletions
|
@ -12,6 +12,33 @@ describe Note, models: true do
|
||||||
describe 'validation' do
|
describe 'validation' do
|
||||||
it { is_expected.to validate_presence_of(:note) }
|
it { is_expected.to validate_presence_of(:note) }
|
||||||
it { is_expected.to validate_presence_of(:project) }
|
it { is_expected.to validate_presence_of(:project) }
|
||||||
|
|
||||||
|
context 'when note is comment 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
|
||||||
|
|
||||||
|
context 'when note is not comment 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
|
||||||
|
|
||||||
|
context 'when noteable and note project is different' do
|
||||||
|
subject do
|
||||||
|
build(:note, noteable: create(:issue), project: create(:project))
|
||||||
|
end
|
||||||
|
|
||||||
|
it { is_expected.to be_invalid }
|
||||||
|
end
|
||||||
|
|
||||||
|
context 'when noteable and note project is the same one' do
|
||||||
|
subject { create(:note) }
|
||||||
|
it { is_expected.to be_valid }
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
describe "Commit notes" do
|
describe "Commit notes" do
|
||||||
|
|
Loading…
Reference in a new issue