mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-01 16:04:19 +00:00
48 lines
1.1 KiB
Ruby
48 lines
1.1 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.shared_examples 'diffs stream tests' do
|
|
it 'streams the response' do
|
|
go
|
|
|
|
expect(response).to have_gitlab_http_status(:success)
|
|
end
|
|
|
|
context 'when offset is given' do
|
|
context 'when offset is 1' do
|
|
let(:offset) { 1 }
|
|
|
|
it 'streams diffs except the offset' do
|
|
go
|
|
|
|
diff_files_array = diff_files.to_a
|
|
expect(response.body).not_to include(diff_files_array.first.new_path)
|
|
expect(response.body).to include(diff_files_array.last.new_path)
|
|
end
|
|
end
|
|
|
|
context 'when offset is the same as the number of diffs' do
|
|
let(:offset) { diff_files.size }
|
|
|
|
it 'no diffs are streamed' do
|
|
go
|
|
|
|
expect(response.body).to not_include('diff-file')
|
|
expect(response.body).to include('server-timings')
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'when an exception occurs' do
|
|
before do
|
|
allow(::RapidDiffs::DiffFileComponent)
|
|
.to receive(:new).and_raise(StandardError.new('something went wrong'))
|
|
end
|
|
|
|
it 'prints out error message' do
|
|
go
|
|
|
|
expect(response.body).to include('something went wrong')
|
|
end
|
|
end
|
|
end
|