debian-mirror-gitlab/spec/support/shared_examples/serializers/diff_file_entity_shared_examples.rb
2021-10-27 15:23:28 +05:30

82 lines
2.7 KiB
Ruby

# frozen_string_literal: true
RSpec.shared_examples 'diff file base entity' do
it 'exposes essential attributes' do
expect(subject).to include(:content_sha, :submodule, :submodule_link,
:submodule_tree_url, :old_path_html,
:new_path_html, :blob, :can_modify_blob,
:file_hash, :file_path, :old_path, :new_path,
:viewer, :diff_refs, :stored_externally,
:external_storage, :renamed_file, :deleted_file,
:a_mode, :b_mode, :new_file, :file_identifier_hash)
end
# Converted diff files from GitHub import does not contain blob file
# and content sha.
context 'when diff file does not have a blob and content sha' do
it 'exposes some attributes as nil' do
allow(diff_file).to receive(:content_sha).and_return(nil)
allow(diff_file).to receive(:blob).and_return(nil)
expect(subject[:context_lines_path]).to be_nil
expect(subject[:view_path]).to be_nil
expect(subject[:highlighted_diff_lines]).to be_nil
expect(subject[:can_modify_blob]).to be_nil
end
end
end
RSpec.shared_examples 'diff file entity' do
it_behaves_like 'diff file base entity'
it 'exposes correct attributes' do
expect(subject).to include(:added_lines, :removed_lines,
:context_lines_path)
end
it 'includes viewer' do
expect(subject[:viewer].with_indifferent_access)
.to match_schema('entities/diff_viewer')
end
context 'diff files' do
context 'when diff_view is parallel' do
let(:options) { { diff_view: :parallel } }
it 'contains only the parallel diff lines', :aggregate_failures do
expect(subject).to include(:parallel_diff_lines)
expect(subject).not_to include(:highlighted_diff_lines)
end
end
context 'when diff_view is parallel' do
let(:options) { { diff_view: :inline } }
it 'contains only the inline diff lines', :aggregate_failures do
expect(subject).not_to include(:parallel_diff_lines)
expect(subject).to include(:highlighted_diff_lines)
end
end
end
end
RSpec.shared_examples 'diff file discussion entity' do
it_behaves_like 'diff file base entity'
end
RSpec.shared_examples 'diff file with conflict_type' do
describe '#conflict_type' do
it 'returns nil by default' do
expect(subject[:conflict_type]).to be_nil
end
context 'when there is matching conflict file' do
let(:options) { { conflicts: { diff_file.new_path => double(diff_lines_for_serializer: [], conflict_type: :both_modified) } } }
it 'returns false' do
expect(subject[:conflict_type]).to eq(:both_modified)
end
end
end
end