2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2016-03-23 06:36:30 -04:00
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
describe 'Multiple issue updating from issues#index', :js do
|
2017-08-02 15:55:11 -04:00
|
|
|
let!(:project) { create(:project) }
|
2016-03-23 06:36:30 -04:00
|
|
|
let!(:issue) { create(:issue, project: project) }
|
|
|
|
let!(:user) { create(:user)}
|
|
|
|
|
2016-03-23 07:45:24 -04:00
|
|
|
before do
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2017-07-03 06:55:15 -04:00
|
|
|
sign_in(user)
|
2016-03-23 07:45:24 -04:00
|
|
|
end
|
2016-03-23 06:36:30 -04:00
|
|
|
|
2017-07-03 06:55:15 -04:00
|
|
|
context 'status' do
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'sets to closed' do
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_issues_path(project)
|
2016-03-23 06:36:30 -04:00
|
|
|
|
2017-08-15 04:07:41 -04:00
|
|
|
click_button 'Edit issues'
|
2017-05-15 18:12:43 -04:00
|
|
|
find('#check-all-issues').click
|
2016-03-23 06:36:30 -04:00
|
|
|
find('.js-issue-status').click
|
|
|
|
|
|
|
|
find('.dropdown-menu-status a', text: 'Closed').click
|
|
|
|
click_update_issues_button
|
|
|
|
expect(page).to have_selector('.issue', count: 0)
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'sets to open' do
|
2016-03-23 06:36:30 -04:00
|
|
|
create_closed
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_issues_path(project, state: 'closed')
|
2016-03-23 06:36:30 -04:00
|
|
|
|
2017-08-15 04:07:41 -04:00
|
|
|
click_button 'Edit issues'
|
2017-05-15 18:12:43 -04:00
|
|
|
find('#check-all-issues').click
|
2016-03-23 06:36:30 -04:00
|
|
|
find('.js-issue-status').click
|
|
|
|
|
|
|
|
find('.dropdown-menu-status a', text: 'Open').click
|
|
|
|
click_update_issues_button
|
|
|
|
expect(page).to have_selector('.issue', count: 0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-03 06:55:15 -04:00
|
|
|
context 'assignee' do
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'updates to current user' do
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_issues_path(project)
|
2016-03-23 07:18:39 -04:00
|
|
|
|
2017-08-15 04:07:41 -04:00
|
|
|
click_button 'Edit issues'
|
2017-05-15 18:12:43 -04:00
|
|
|
find('#check-all-issues').click
|
2016-05-10 19:11:16 -04:00
|
|
|
click_update_assignee_button
|
2016-03-23 07:18:39 -04:00
|
|
|
|
|
|
|
find('.dropdown-menu-user-link', text: user.username).click
|
|
|
|
click_update_issues_button
|
|
|
|
|
|
|
|
page.within('.issue .controls') do
|
2018-07-23 11:03:40 -04:00
|
|
|
expect(find('.author-link')["title"]).to have_content(user.name)
|
2016-03-23 07:18:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'updates to unassigned' do
|
2016-03-23 07:18:39 -04:00
|
|
|
create_assigned
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_issues_path(project)
|
2016-03-23 07:18:39 -04:00
|
|
|
|
2017-08-15 04:07:41 -04:00
|
|
|
click_button 'Edit issues'
|
2017-05-15 18:12:43 -04:00
|
|
|
find('#check-all-issues').click
|
2016-05-10 19:11:16 -04:00
|
|
|
click_update_assignee_button
|
2016-03-23 07:18:39 -04:00
|
|
|
|
2016-03-24 05:10:46 -04:00
|
|
|
click_link 'Unassigned'
|
2016-03-23 07:18:39 -04:00
|
|
|
click_update_issues_button
|
2018-07-23 16:27:37 -04:00
|
|
|
expect(find('.issue:first-child .controls')).not_to have_css('.author-link')
|
2016-03-23 07:18:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-03 06:55:15 -04:00
|
|
|
context 'milestone' do
|
|
|
|
let!(:milestone) { create(:milestone, project: project) }
|
2016-03-23 07:45:24 -04:00
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'updates milestone' do
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_issues_path(project)
|
2016-03-23 07:45:24 -04:00
|
|
|
|
2017-08-15 04:07:41 -04:00
|
|
|
click_button 'Edit issues'
|
2017-05-15 18:12:43 -04:00
|
|
|
find('#check-all-issues').click
|
|
|
|
find('.issues-bulk-update .js-milestone-select').click
|
2016-03-23 07:45:24 -04:00
|
|
|
|
|
|
|
find('.dropdown-menu-milestone a', text: milestone.title).click
|
|
|
|
click_update_issues_button
|
|
|
|
|
|
|
|
expect(find('.issue')).to have_content milestone.title
|
|
|
|
end
|
|
|
|
|
2016-07-25 14:16:19 -04:00
|
|
|
it 'sets to no milestone' do
|
2016-03-23 07:45:24 -04:00
|
|
|
create_with_milestone
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_issues_path(project)
|
2016-03-23 07:45:24 -04:00
|
|
|
|
|
|
|
expect(first('.issue')).to have_content milestone.title
|
|
|
|
|
2017-08-15 04:07:41 -04:00
|
|
|
click_button 'Edit issues'
|
2017-05-15 18:12:43 -04:00
|
|
|
find('#check-all-issues').click
|
|
|
|
find('.issues-bulk-update .js-milestone-select').click
|
2016-03-23 07:45:24 -04:00
|
|
|
|
|
|
|
find('.dropdown-menu-milestone a', text: "No Milestone").click
|
|
|
|
click_update_issues_button
|
|
|
|
|
2016-05-23 13:02:53 -04:00
|
|
|
expect(find('.issue:first-child')).not_to have_content milestone.title
|
2016-03-23 07:45:24 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-03-23 06:36:30 -04:00
|
|
|
def create_closed
|
|
|
|
create(:issue, project: project, state: :closed)
|
|
|
|
end
|
|
|
|
|
2016-03-23 07:18:39 -04:00
|
|
|
def create_assigned
|
2017-05-04 08:11:15 -04:00
|
|
|
create(:issue, project: project, assignees: [user])
|
2016-03-23 07:18:39 -04:00
|
|
|
end
|
|
|
|
|
2016-03-23 07:45:24 -04:00
|
|
|
def create_with_milestone
|
|
|
|
create(:issue, project: project, milestone: milestone)
|
|
|
|
end
|
|
|
|
|
2016-05-10 19:11:16 -04:00
|
|
|
def click_update_assignee_button
|
|
|
|
find('.js-update-assignee').click
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-05-10 19:11:16 -04:00
|
|
|
end
|
|
|
|
|
2016-03-23 06:36:30 -04:00
|
|
|
def click_update_issues_button
|
2017-09-27 14:13:07 -04:00
|
|
|
find('.update-selected-issues').click
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-03-23 06:36:30 -04:00
|
|
|
end
|
|
|
|
end
|