debian-mirror-gitlab/spec/serializers/paginated_diff_entity_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

90 lines
3.2 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe PaginatedDiffEntity do
2019-12-21 20:55:43 +05:30
let(:user) { create(:user) }
let(:request) { double('request', current_user: user) }
2021-03-11 19:13:27 +05:30
let(:merge_request) { create(:merge_request) }
2019-12-21 20:55:43 +05:30
let(:diff_batch) { merge_request.merge_request_diff.diffs_in_batch(2, 3, diff_options: nil) }
2021-10-27 15:23:28 +05:30
let(:allow_tree_conflicts) { false }
2019-12-21 20:55:43 +05:30
let(:options) do
{
request: request,
merge_request: merge_request,
2021-10-27 15:23:28 +05:30
pagination_data: diff_batch.pagination_data,
allow_tree_conflicts: allow_tree_conflicts
2019-12-21 20:55:43 +05:30
}
end
2020-10-24 23:57:45 +05:30
2019-12-21 20:55:43 +05:30
let(:entity) { described_class.new(diff_batch, options) }
subject { entity.as_json }
it 'exposes diff_files' do
expect(subject[:diff_files]).to be_present
end
it 'exposes pagination data' do
2021-09-30 23:02:18 +05:30
expect(subject[:pagination]).to eq(total_pages: 20)
2019-12-21 20:55:43 +05:30
end
2021-01-29 00:20:46 +05:30
context 'when there are conflicts' do
let(:diff_batch) { merge_request.merge_request_diff.diffs_in_batch(7, 3, diff_options: nil) }
let(:diff_files) { diff_batch.diff_files.to_a }
let(:diff_file_with_conflict) { diff_files.last }
let(:diff_file_without_conflict) { diff_files.first }
let(:resolvable_conflicts) { true }
2021-10-27 15:23:28 +05:30
let(:conflict_file) { double(path: diff_file_with_conflict.new_path, conflict_type: :both_modified) }
2021-01-29 00:20:46 +05:30
let(:conflicts) { double(conflicts: double(files: [conflict_file]), can_be_resolved_in_ui?: resolvable_conflicts) }
let(:merge_ref_head_diff) { true }
let(:options) { super().merge(merge_ref_head_diff: merge_ref_head_diff) }
before do
allow(MergeRequests::Conflicts::ListService).to receive(:new).and_return(conflicts)
end
it 'conflicts are highlighted' do
expect(conflict_file).to receive(:diff_lines_for_serializer)
expect(diff_file_with_conflict).not_to receive(:diff_lines_for_serializer)
expect(diff_file_without_conflict).to receive(:diff_lines_for_serializer).twice # for highlighted_diff_lines and is_fully_expanded
subject
end
context 'merge ref head diff is not chosen to be displayed' do
let(:merge_ref_head_diff) { false }
it 'conflicts are not calculated' do
expect(MergeRequests::Conflicts::ListService).not_to receive(:new)
end
end
context 'when conflicts cannot be resolved' do
let(:resolvable_conflicts) { false }
it 'conflicts are not highlighted' do
expect(conflict_file).not_to receive(:diff_lines_for_serializer)
expect(diff_file_with_conflict).to receive(:diff_lines_for_serializer).twice # for highlighted_diff_lines and is_fully_expanded
expect(diff_file_without_conflict).to receive(:diff_lines_for_serializer).twice # for highlighted_diff_lines and is_fully_expanded
subject
end
2021-10-27 15:23:28 +05:30
context 'when allow_tree_conflicts is set to true' do
let(:allow_tree_conflicts) { true }
it 'conflicts are still highlighted' do
expect(conflict_file).to receive(:diff_lines_for_serializer)
expect(diff_file_with_conflict).not_to receive(:diff_lines_for_serializer)
expect(diff_file_without_conflict).to receive(:diff_lines_for_serializer).twice # for highlighted_diff_lines and is_fully_expanded
subject
end
end
2021-01-29 00:20:46 +05:30
end
end
2019-12-21 20:55:43 +05:30
end