require 'spec_helper' describe 'Projects > Issuables > Default sort order', feature: true do let(:project) { create(:empty_project, :public) } let(:first_created_issuable) { issuables.order_created_asc.first } let(:last_created_issuable) { issuables.order_created_desc.first } let(:first_updated_issuable) { issuables.order_updated_asc.first } let(:last_updated_issuable) { issuables.order_updated_desc.first } context 'for merge requests' do include MergeRequestHelpers let!(:issuables) do timestamps = [{ created_at: 3.minutes.ago, updated_at: 20.seconds.ago }, { created_at: 2.minutes.ago, updated_at: 30.seconds.ago }, { created_at: 4.minutes.ago, updated_at: 10.seconds.ago }] timestamps.each_with_index do |ts, i| create issuable_type, { title: "#{issuable_type}_#{i}", source_branch: "#{issuable_type}_#{i}", source_project: project }.merge(ts) end MergeRequest.all end context 'in the "merge requests" tab', js: true do let(:issuable_type) { :merge_request } it 'is "last created"' do visit_merge_requests project expect(first_merge_request).to include(last_created_issuable.title) expect(last_merge_request).to include(first_created_issuable.title) end end context 'in the "merge requests / open" tab', js: true do let(:issuable_type) { :merge_request } it 'is "last created"' do visit_merge_requests_with_state(project, 'open') expect(selected_sort_order).to eq('last created') expect(first_merge_request).to include(last_created_issuable.title) expect(last_merge_request).to include(first_created_issuable.title) end end context 'in the "merge requests / merged" tab', js: true do let(:issuable_type) { :merged_merge_request } it 'is "last updated"' do visit_merge_requests_with_state(project, 'merged') expect(find('.issues-other-filters')).to have_content('Last updated') expect(first_merge_request).to include(last_updated_issuable.title) expect(last_merge_request).to include(first_updated_issuable.title) end end context 'in the "merge requests / closed" tab', js: true do let(:issuable_type) { :closed_merge_request } it 'is "last updated"' do visit_merge_requests_with_state(project, 'closed') expect(find('.issues-other-filters')).to have_content('Last updated') expect(first_merge_request).to include(last_updated_issuable.title) expect(last_merge_request).to include(first_updated_issuable.title) end end context 'in the "merge requests / all" tab', js: true do let(:issuable_type) { :merge_request } it 'is "last created"' do visit_merge_requests_with_state(project, 'all') expect(find('.issues-other-filters')).to have_content('Last created') expect(first_merge_request).to include(last_created_issuable.title) expect(last_merge_request).to include(first_created_issuable.title) end end end context 'for issues' do include IssueHelpers let!(:issuables) do timestamps = [{ created_at: 3.minutes.ago, updated_at: 20.seconds.ago }, { created_at: 2.minutes.ago, updated_at: 30.seconds.ago }, { created_at: 4.minutes.ago, updated_at: 10.seconds.ago }] timestamps.each_with_index do |ts, i| create issuable_type, { title: "#{issuable_type}_#{i}", project: project }.merge(ts) end Issue.all end context 'in the "issues" tab', js: true do let(:issuable_type) { :issue } it 'is "last created"' do visit_issues project expect(find('.issues-other-filters')).to have_content('Last created') expect(first_issue).to include(last_created_issuable.title) expect(last_issue).to include(first_created_issuable.title) end end context 'in the "issues / open" tab', js: true do let(:issuable_type) { :issue } it 'is "last created"' do visit_issues_with_state(project, 'open') expect(find('.issues-other-filters')).to have_content('Last created') expect(first_issue).to include(last_created_issuable.title) expect(last_issue).to include(first_created_issuable.title) end end context 'in the "issues / closed" tab', js: true do let(:issuable_type) { :closed_issue } it 'is "last updated"' do visit_issues_with_state(project, 'closed') expect(find('.issues-other-filters')).to have_content('Last updated') expect(first_issue).to include(last_updated_issuable.title) expect(last_issue).to include(first_updated_issuable.title) end end context 'in the "issues / all" tab', js: true do let(:issuable_type) { :issue } it 'is "last created"' do visit_issues_with_state(project, 'all') expect(find('.issues-other-filters')).to have_content('Last created') expect(first_issue).to include(last_created_issuable.title) expect(last_issue).to include(first_created_issuable.title) end end context 'when the sort in the URL is id_desc' do let(:issuable_type) { :issue } before { visit_issues(project, sort: 'id_desc') } it 'shows the sort order as last created' do expect(find('.issues-other-filters')).to have_content('Last created') expect(first_issue).to include(last_created_issuable.title) expect(last_issue).to include(first_created_issuable.title) end end context 'when the sort in the URL is id_asc' do let(:issuable_type) { :issue } before { visit_issues(project, sort: 'id_asc') } it 'shows the sort order as oldest created' do expect(find('.issues-other-filters')).to have_content('Oldest created') expect(first_issue).to include(first_created_issuable.title) expect(last_issue).to include(last_created_issuable.title) end end end def selected_sort_order find('.pull-right .dropdown button').text.downcase end def visit_merge_requests_with_state(project, state) visit_merge_requests project visit_issuables_with_state state end def visit_issues_with_state(project, state) visit_issues project visit_issuables_with_state state end def visit_issuables_with_state(state) within('.issues-state-filters') { find("span", text: state.titleize).click } end end