summaryrefslogtreecommitdiff
path: root/spec/support/shared_examples/models/diff_positionable_note_shared_examples.rb
diff options
context:
space:
mode:
authorPatrick Bajao <ebajao@gitlab.com>2019-07-18 20:09:35 +0800
committerjboyson1 <jboyson@gitlab.com>2019-08-01 16:00:36 -0500
commit70626f324b53b0fc010cbbefcae7095201bf0f82 (patch)
tree76b15151235784160d3741722eee384b6d1f34e7 /spec/support/shared_examples/models/diff_positionable_note_shared_examples.rb
parentd7e13579834f34a345081d1c62c97e37b7776406 (diff)
downloadgitlab-ce-70626f324b53b0fc010cbbefcae7095201bf0f82.tar.gz
Make diff_refs_match_commit validation reusable
Move it to DiffPositionableNote concern which will be re-used in EE in DraftNote model.
Diffstat (limited to 'spec/support/shared_examples/models/diff_positionable_note_shared_examples.rb')
-rw-r--r--spec/support/shared_examples/models/diff_positionable_note_shared_examples.rb52
1 files changed, 52 insertions, 0 deletions
diff --git a/spec/support/shared_examples/models/diff_positionable_note_shared_examples.rb b/spec/support/shared_examples/models/diff_positionable_note_shared_examples.rb
new file mode 100644
index 00000000000..8b298c5c974
--- /dev/null
+++ b/spec/support/shared_examples/models/diff_positionable_note_shared_examples.rb
@@ -0,0 +1,52 @@
+# frozen_string_literal: true
+
+shared_examples_for 'a valid diff positionable note' do |factory_on_commit|
+ context 'for commit' do
+ let(:project) { create(:project, :repository) }
+ let(:commit) { project.commit(sample_commit.id) }
+ let(:commit_id) { commit.id }
+ let(:diff_refs) { commit.diff_refs }
+
+ let(:position) do
+ Gitlab::Diff::Position.new(
+ old_path: "files/ruby/popen.rb",
+ new_path: "files/ruby/popen.rb",
+ old_line: nil,
+ new_line: 14,
+ diff_refs: diff_refs
+ )
+ end
+
+ subject { build(factory_on_commit, commit_id: commit_id, position: position) }
+
+ context 'position diff refs matches commit diff refs' do
+ it 'is valid' do
+ expect(subject).to be_valid
+ expect(subject.errors).not_to have_key(:commit_id)
+ end
+ end
+
+ context 'position diff refs does not match commit diff refs' do
+ let(:diff_refs) do
+ Gitlab::Diff::DiffRefs.new(
+ base_sha: "not_existing_sha",
+ head_sha: "existing_sha"
+ )
+ end
+
+ it 'is invalid' do
+ expect(subject).to be_invalid
+ expect(subject.errors).to have_key(:commit_id)
+ end
+ end
+
+ context 'commit does not exist' do
+ let(:commit_id) { 'non-existing' }
+
+ it 'is invalid' do
+ expect(subject).to be_invalid
+ expect(subject.errors).to have_key(:commit_id)
+ end
+ end
+ end
+end