2016-10-06 09:36:44 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-10-03 04:35:01 -04:00
|
|
|
describe 'Issue Boards', :js do
|
2017-09-19 09:01:01 -04:00
|
|
|
include BoardHelpers
|
|
|
|
|
2017-01-27 00:28:45 -05:00
|
|
|
let(:user) { create(:user) }
|
2017-05-04 08:11:15 -04:00
|
|
|
let(:user2) { create(:user) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project, :public) }
|
2017-01-27 00:28:45 -05:00
|
|
|
let!(:milestone) { create(:milestone, project: project) }
|
|
|
|
let!(:development) { create(:label, project: project, name: 'Development') }
|
|
|
|
let!(:bug) { create(:label, project: project, name: 'Bug') }
|
|
|
|
let!(:regression) { create(:label, project: project, name: 'Regression') }
|
|
|
|
let!(:stretch) { create(:label, project: project, name: 'Stretch') }
|
2017-05-04 08:11:15 -04:00
|
|
|
let!(:issue1) { create(:labeled_issue, project: project, assignees: [user], milestone: milestone, labels: [development], relative_position: 2) }
|
2017-03-01 08:26:07 -05:00
|
|
|
let!(:issue2) { create(:labeled_issue, project: project, labels: [development, stretch], relative_position: 1) }
|
2017-01-27 00:28:45 -05:00
|
|
|
let(:board) { create(:board, project: project) }
|
|
|
|
let!(:list) { create(:list, board: board, label: development, position: 0) }
|
2017-06-01 09:54:10 -04:00
|
|
|
let(:card) { find('.board:nth-child(2)').first('.card') }
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-08-11 06:36:03 -04:00
|
|
|
around do |example|
|
|
|
|
Timecop.freeze { example.run }
|
|
|
|
end
|
2017-02-17 05:33:18 -05:00
|
|
|
|
2017-08-11 06:36:03 -04:00
|
|
|
before do
|
|
|
|
project.add_master(user)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_board_path(project, board)
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows sidebar when clicking issue' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
expect(page).to have_selector('.issue-boards-sidebar')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'closes sidebar when clicking issue' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
expect(page).to have_selector('.issue-boards-sidebar')
|
|
|
|
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
expect(page).not_to have_selector('.issue-boards-sidebar')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'closes sidebar when clicking close button' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
expect(page).to have_selector('.issue-boards-sidebar')
|
|
|
|
|
2017-06-17 02:08:27 -04:00
|
|
|
find('.gutter-toggle').click
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
expect(page).not_to have_selector('.issue-boards-sidebar')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows issue details when sidebar is open' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.issue-boards-sidebar') do
|
2017-01-27 00:28:45 -05:00
|
|
|
expect(page).to have_content(issue2.title)
|
|
|
|
expect(page).to have_content(issue2.to_reference)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-17 05:33:18 -05:00
|
|
|
it 'removes card from board when clicking ' do
|
|
|
|
click_card(card)
|
2017-01-30 12:11:08 -05:00
|
|
|
|
|
|
|
page.within('.issue-boards-sidebar') do
|
|
|
|
click_button 'Remove from board'
|
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-02-17 05:33:18 -05:00
|
|
|
|
2017-06-01 09:54:10 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2017-01-30 12:11:08 -05:00
|
|
|
expect(page).to have_selector('.card', count: 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-07-03 03:44:58 -04:00
|
|
|
it 'does not show remove button for backlog or closed issues' do
|
|
|
|
create(:issue, project: project)
|
|
|
|
create(:issue, :closed, project: project)
|
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
visit project_board_path(project, board)
|
2017-07-03 03:44:58 -04:00
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
click_card(find('.board:nth-child(1)').first('.card'))
|
|
|
|
|
|
|
|
expect(find('.issue-boards-sidebar')).not_to have_button 'Remove from board'
|
|
|
|
|
|
|
|
click_card(find('.board:nth-child(3)').first('.card'))
|
|
|
|
|
|
|
|
expect(find('.issue-boards-sidebar')).not_to have_button 'Remove from board'
|
|
|
|
end
|
2017-01-30 12:11:08 -05:00
|
|
|
|
2016-10-06 09:36:44 -04:00
|
|
|
context 'assignee' do
|
|
|
|
it 'updates the issues assignee' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.assignee') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.dropdown-menu-user') do
|
|
|
|
click_link user.name
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content(user.name)
|
|
|
|
end
|
|
|
|
|
2017-02-17 05:33:18 -05:00
|
|
|
expect(card).to have_selector('.avatar')
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes the assignee' do
|
2017-06-01 09:54:10 -04:00
|
|
|
card_two = find('.board:nth-child(2)').find('.card:nth-child(2)')
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card_two)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.assignee') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.dropdown-menu-user') do
|
|
|
|
click_link 'Unassigned'
|
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-05-04 08:11:15 -04:00
|
|
|
|
2016-10-06 09:36:44 -04:00
|
|
|
expect(page).to have_content('No assignee')
|
|
|
|
end
|
|
|
|
|
2017-02-17 05:33:18 -05:00
|
|
|
expect(card_two).not_to have_selector('.avatar')
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'assignees to current user' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-01-16 18:03:38 -05:00
|
|
|
page.within(find('.assignee')) do
|
|
|
|
expect(page).to have_content('No assignee')
|
|
|
|
|
2017-05-04 08:11:15 -04:00
|
|
|
click_button 'assign yourself'
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
expect(page).to have_content(user.name)
|
|
|
|
end
|
|
|
|
|
2017-02-17 05:33:18 -05:00
|
|
|
expect(card).to have_selector('.avatar')
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
2017-01-12 10:22:51 -05:00
|
|
|
|
2017-05-04 08:11:15 -04:00
|
|
|
it 'updates assignee dropdown' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2017-01-12 10:22:51 -05:00
|
|
|
|
|
|
|
page.within('.assignee') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-01-12 10:22:51 -05:00
|
|
|
|
|
|
|
page.within('.dropdown-menu-user') do
|
|
|
|
click_link user.name
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-01-12 10:22:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
expect(page).to have_content(user.name)
|
|
|
|
end
|
|
|
|
|
2017-06-01 09:54:10 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2017-06-17 02:08:27 -04:00
|
|
|
find('.card:nth-child(2)').click
|
2017-01-12 10:22:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
page.within('.assignee') do
|
|
|
|
click_link 'Edit'
|
2017-05-17 14:25:13 -04:00
|
|
|
|
2017-05-10 09:44:13 -04:00
|
|
|
expect(find('.dropdown-menu')).to have_selector('.is-active')
|
2017-01-12 10:22:51 -05:00
|
|
|
end
|
|
|
|
end
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'milestone' do
|
|
|
|
it 'adds a milestone' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.milestone') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
click_link milestone.title
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.value') do
|
|
|
|
expect(page).to have_content(milestone.title)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes a milestone' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.milestone') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
click_link "No Milestone"
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.value') do
|
|
|
|
expect(page).not_to have_content(milestone.title)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'due date' do
|
|
|
|
it 'updates due date' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.due_date') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-01-06 09:43:21 -05:00
|
|
|
click_button Date.today.day
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
expect(page).to have_content(Date.today.to_s(:medium))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'labels' do
|
|
|
|
it 'adds a single label' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.labels') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-01-27 00:28:45 -05:00
|
|
|
click_link bug.title
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
find('.dropdown-menu-close-icon').click
|
|
|
|
|
|
|
|
page.within('.value') do
|
2017-01-27 00:28:45 -05:00
|
|
|
expect(page).to have_selector('.label', count: 3)
|
|
|
|
expect(page).to have_content(bug.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-07 21:52:18 -04:00
|
|
|
expect(card).to have_selector('.label', count: 3)
|
2017-02-17 05:33:18 -05:00
|
|
|
expect(card).to have_content(bug.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'adds a multiple labels' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.labels') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-01-27 00:28:45 -05:00
|
|
|
click_link bug.title
|
|
|
|
click_link regression.title
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
find('.dropdown-menu-close-icon').click
|
|
|
|
|
|
|
|
page.within('.value') do
|
2017-01-27 00:28:45 -05:00
|
|
|
expect(page).to have_selector('.label', count: 4)
|
|
|
|
expect(page).to have_content(bug.title)
|
|
|
|
expect(page).to have_content(regression.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-07 21:52:18 -04:00
|
|
|
expect(card).to have_selector('.label', count: 4)
|
2017-02-17 05:33:18 -05:00
|
|
|
expect(card).to have_content(bug.title)
|
|
|
|
expect(card).to have_content(regression.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes a label' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
page.within('.labels') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-01-27 00:28:45 -05:00
|
|
|
click_link stretch.title
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-06 09:36:44 -04:00
|
|
|
|
|
|
|
find('.dropdown-menu-close-icon').click
|
|
|
|
|
|
|
|
page.within('.value') do
|
2017-01-27 00:28:45 -05:00
|
|
|
expect(page).to have_selector('.label', count: 1)
|
|
|
|
expect(page).not_to have_content(stretch.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-07 21:52:18 -04:00
|
|
|
expect(card).to have_selector('.label', count: 1)
|
2017-02-17 05:33:18 -05:00
|
|
|
expect(card).not_to have_content(stretch.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
2017-09-19 09:01:01 -04:00
|
|
|
|
|
|
|
it 'creates new label' do
|
|
|
|
click_card(card)
|
|
|
|
|
|
|
|
page.within('.labels') do
|
|
|
|
click_link 'Edit'
|
|
|
|
click_link 'Create new label'
|
|
|
|
fill_in 'new_label_name', with: 'test label'
|
|
|
|
first('.suggest-colors-dropdown a').click
|
|
|
|
click_button 'Create'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_link 'test label'
|
|
|
|
end
|
|
|
|
end
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
2016-10-07 04:55:12 -04:00
|
|
|
|
|
|
|
context 'subscription' do
|
|
|
|
it 'changes issue subscription' do
|
2017-02-17 05:33:18 -05:00
|
|
|
click_card(card)
|
2017-11-14 01:05:40 -05:00
|
|
|
wait_for_requests
|
2016-10-07 04:55:12 -04:00
|
|
|
|
2017-11-14 01:05:40 -05:00
|
|
|
page.within('.subscriptions') do
|
2018-01-12 02:40:31 -05:00
|
|
|
find('.js-issuable-subscribe-button button:not(.is-checked)').click
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-11-14 01:05:40 -05:00
|
|
|
|
2018-01-12 02:40:31 -05:00
|
|
|
expect(page).to have_css('.js-issuable-subscribe-button button.is-checked')
|
2017-11-14 01:05:40 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-01-12 02:40:31 -05:00
|
|
|
it 'has checked subscription toggle when already subscribed' do
|
2017-11-14 01:05:40 -05:00
|
|
|
create(:subscription, user: user, project: project, subscribable: issue2, subscribed: true)
|
|
|
|
visit project_board_path(project, board)
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
click_card(card)
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
page.within('.subscriptions') do
|
2018-01-12 02:40:31 -05:00
|
|
|
find('.js-issuable-subscribe-button button.is-checked').click
|
2017-11-14 01:05:40 -05:00
|
|
|
wait_for_requests
|
|
|
|
|
2018-01-12 02:40:31 -05:00
|
|
|
expect(page).to have_css('.js-issuable-subscribe-button button:not(.is-checked)')
|
2016-10-07 04:55:12 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|