2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe 'User views diffs', :js do
|
|
|
|
let(:merge_request) do
|
|
|
|
create(:merge_request_with_diffs, source_project: project, target_project: project, source_branch: 'merge-test')
|
|
|
|
end
|
|
|
|
let(:project) { create(:project, :public, :repository) }
|
|
|
|
|
|
|
|
before do
|
2019-12-26 22:10:19 +05:30
|
|
|
stub_feature_flags(single_mr_diff_view: false)
|
2018-03-17 18:26:18 +05:30
|
|
|
visit(diffs_project_merge_request_path(project, merge_request))
|
|
|
|
|
|
|
|
wait_for_requests
|
2018-12-05 23:21:45 +05:30
|
|
|
|
|
|
|
find('.js-toggle-tree-list').click
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
it_behaves_like 'rendering a single diff version'
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
shared_examples 'unfold diffs' do
|
2019-10-12 21:52:04 +05:30
|
|
|
it 'unfolds diffs upwards' do
|
2018-03-17 18:26:18 +05:30
|
|
|
first('.js-unfold').click
|
2018-11-08 19:23:39 +05:30
|
|
|
expect(find('.file-holder[id="a5cc2925ca8258af241be7e5b0381edf30266302"] .text-file')).to have_content('.bundle')
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
2019-10-12 21:52:04 +05:30
|
|
|
|
|
|
|
it 'unfolds diffs to the start' do
|
|
|
|
first('.js-unfold-all').click
|
|
|
|
expect(find('.file-holder[id="a5cc2925ca8258af241be7e5b0381edf30266302"] .text-file')).to have_content('.rbc')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'unfolds diffs downwards' do
|
|
|
|
first('.js-unfold-down').click
|
|
|
|
expect(find('.file-holder[id="2f6fcd96b88b36ce98c38da085c795a27d92a3dd"] .text-file')).to have_content('.popen3')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'unfolds diffs to the end' do
|
|
|
|
page.all('.js-unfold-down').last
|
|
|
|
expect(find('.file-holder[id="6eb14e00385d2fb284765eb1cd8d420d33d63fc9"] .text-file')).to have_content('end')
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows diffs' do
|
2019-03-02 22:35:43 +05:30
|
|
|
find('.js-show-diff-settings').click
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(page).to have_css('.tab-content #diffs.active')
|
|
|
|
expect(page).to have_css('#parallel-diff-btn', count: 1)
|
|
|
|
expect(page).to have_css('#inline-diff-btn', count: 1)
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'hides loading spinner after load' do
|
|
|
|
expect(page).not_to have_selector('.mr-loading-status .loading', visible: true)
|
|
|
|
end
|
|
|
|
|
2019-07-07 11:18:12 +05:30
|
|
|
it 'expands all diffs' do
|
|
|
|
first('#a5cc2925ca8258af241be7e5b0381edf30266302 .js-file-title').click
|
|
|
|
|
|
|
|
expect(page).to have_button('Expand all')
|
|
|
|
|
|
|
|
click_button 'Expand all'
|
|
|
|
|
|
|
|
expect(page).not_to have_button('Expand all')
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
context 'when in the inline view' do
|
|
|
|
include_examples 'unfold diffs'
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when in the side-by-side view' do
|
|
|
|
before do
|
2019-03-02 22:35:43 +05:30
|
|
|
find('.js-show-diff-settings').click
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
click_button 'Side-by-side'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows diffs in parallel' do
|
|
|
|
expect(page).to have_css('.parallel')
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'toggles container class' do
|
|
|
|
expect(page).not_to have_css('.content-wrapper > .container-fluid.container-limited')
|
|
|
|
|
|
|
|
click_link 'Commits'
|
|
|
|
|
|
|
|
expect(page).to have_css('.content-wrapper > .container-fluid.container-limited')
|
|
|
|
end
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
include_examples 'unfold diffs'
|
|
|
|
end
|
|
|
|
end
|