2016-08-03 03:42:26 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-10-03 04:35:01 -04:00
|
|
|
describe 'Issue Boards', :js do
|
2017-01-06 11:52:18 -05:00
|
|
|
include DragTo
|
2017-11-02 16:45:46 -04:00
|
|
|
include MobileHelpers
|
2016-08-12 06:37:47 -04:00
|
|
|
|
2017-07-17 03:51:00 -04:00
|
|
|
let(:group) { create(:group, :nested) }
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project, :public, namespace: group) }
|
2016-10-06 16:14:39 -04:00
|
|
|
let(:board) { create(:board, project: project) }
|
2016-08-16 15:45:07 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
let!(:user2) { create(:user) }
|
2016-08-03 03:42:26 -04:00
|
|
|
|
|
|
|
before do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_master(user)
|
|
|
|
project.add_master(user2)
|
2016-08-16 15:45:07 -04:00
|
|
|
|
2017-09-22 14:15:43 -04:00
|
|
|
set_cookie('sidebar_collapsed', 'true')
|
2017-08-29 10:45:18 -04:00
|
|
|
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|
|
|
|
|
2016-08-09 11:53:56 -04:00
|
|
|
context 'no lists' do
|
|
|
|
before do
|
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
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 3)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
2016-08-03 03:42:26 -04:00
|
|
|
|
2016-08-09 11:53:56 -04:00
|
|
|
it 'shows blank state' do
|
|
|
|
expect(page).to have_content('Welcome to your Issue Board!')
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|
|
|
|
|
2017-02-10 11:38:11 -05:00
|
|
|
it 'shows tooltip on add issues button' do
|
2017-03-08 09:46:46 -05:00
|
|
|
button = page.find('.filter-dropdown-container button', text: 'Add issues')
|
2017-02-09 10:51:49 -05:00
|
|
|
|
2017-02-10 11:38:11 -05:00
|
|
|
expect(button[:"data-original-title"]).to eq("Please add a list to your board first")
|
2017-02-09 10:51:49 -05:00
|
|
|
end
|
|
|
|
|
2016-08-10 12:32:10 -04:00
|
|
|
it 'hides the blank state when clicking nevermind button' do
|
2016-08-16 07:57:59 -04:00
|
|
|
page.within(find('.board-blank-state')) do
|
2016-08-15 03:36:37 -04:00
|
|
|
click_button("Nevermind, I'll use my own")
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 2)
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|
|
|
|
|
2016-08-09 11:53:56 -04:00
|
|
|
it 'creates default lists' do
|
2017-06-01 06:11:02 -04:00
|
|
|
lists = ['Backlog', 'To Do', 'Doing', 'Closed']
|
2016-08-03 03:42:26 -04:00
|
|
|
|
2016-08-16 07:57:59 -04:00
|
|
|
page.within(find('.board-blank-state')) do
|
2016-08-09 11:53:56 -04:00
|
|
|
click_button('Add default lists')
|
|
|
|
end
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 07:57:59 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 4)
|
2016-08-09 11:53:56 -04:00
|
|
|
|
|
|
|
page.all('.board').each_with_index do |list, i|
|
|
|
|
expect(list.find('.board-title')).to have_content(lists[i])
|
|
|
|
end
|
|
|
|
end
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|
|
|
|
|
2016-08-09 11:53:56 -04:00
|
|
|
context 'with lists' do
|
2016-08-16 15:45:07 -04:00
|
|
|
let(:milestone) { create(:milestone, project: project) }
|
2016-08-10 04:10:50 -04:00
|
|
|
|
2016-10-07 10:32:07 -04:00
|
|
|
let(:planning) { create(:label, project: project, name: 'Planning', description: 'Test') }
|
2016-08-09 11:53:56 -04:00
|
|
|
let(:development) { create(:label, project: project, name: 'Development') }
|
|
|
|
let(:testing) { create(:label, project: project, name: 'Testing') }
|
2016-08-10 04:10:50 -04:00
|
|
|
let(:bug) { create(:label, project: project, name: 'Bug') }
|
2016-08-12 05:39:45 -04:00
|
|
|
let!(:backlog) { create(:label, project: project, name: 'Backlog') }
|
2017-03-24 08:40:35 -04:00
|
|
|
let!(:closed) { create(:label, project: project, name: 'Closed') }
|
2016-09-08 04:59:20 -04:00
|
|
|
let!(:accepting) { create(:label, project: project, name: 'Accepting Merge Requests') }
|
2018-01-17 17:26:49 -05:00
|
|
|
let!(:a_plus) { create(:label, project: project, name: 'A+') }
|
2016-08-09 11:53:56 -04:00
|
|
|
|
2016-10-10 22:29:20 -04:00
|
|
|
let!(:list1) { create(:list, board: board, label: planning, position: 0) }
|
|
|
|
let!(:list2) { create(:list, board: board, label: development, position: 1) }
|
2016-08-09 11:53:56 -04:00
|
|
|
|
2017-03-01 06:18:58 -05:00
|
|
|
let!(:confidential_issue) { create(:labeled_issue, :confidential, project: project, author: user, labels: [planning], relative_position: 9) }
|
2017-08-30 10:37:23 -04:00
|
|
|
let!(:issue1) { create(:labeled_issue, project: project, title: 'aaa', description: '111', assignees: [user], labels: [planning], relative_position: 8) }
|
|
|
|
let!(:issue2) { create(:labeled_issue, project: project, title: 'bbb', description: '222', author: user2, labels: [planning], relative_position: 7) }
|
|
|
|
let!(:issue3) { create(:labeled_issue, project: project, title: 'ccc', description: '333', labels: [planning], relative_position: 6) }
|
|
|
|
let!(:issue4) { create(:labeled_issue, project: project, title: 'ddd', description: '444', labels: [planning], relative_position: 5) }
|
|
|
|
let!(:issue5) { create(:labeled_issue, project: project, title: 'eee', description: '555', labels: [planning], milestone: milestone, relative_position: 4) }
|
|
|
|
let!(:issue6) { create(:labeled_issue, project: project, title: 'fff', description: '666', labels: [planning, development], relative_position: 3) }
|
|
|
|
let!(:issue7) { create(:labeled_issue, project: project, title: 'ggg', description: '777', labels: [development], relative_position: 2) }
|
|
|
|
let!(:issue8) { create(:closed_issue, project: project, title: 'hhh', description: '888') }
|
|
|
|
let!(:issue9) { create(:labeled_issue, project: project, title: 'iii', description: '999', labels: [planning, testing, bug, accepting], relative_position: 1) }
|
2018-01-17 17:26:49 -05:00
|
|
|
let!(:issue10) { create(:labeled_issue, project: project, title: 'issue +', description: 'A+ great issue', labels: [a_plus]) }
|
2016-08-09 11:53:56 -04:00
|
|
|
|
|
|
|
before do
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_board_path(project, board)
|
2016-08-09 11:53:56 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 12:32:38 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 4)
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(find('.board:nth-child(2)')).to have_selector('.board-card')
|
|
|
|
expect(find('.board:nth-child(3)')).to have_selector('.board-card')
|
|
|
|
expect(find('.board:nth-child(4)')).to have_selector('.board-card')
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
|
2016-10-07 10:32:07 -04:00
|
|
|
it 'shows description tooltip on list title' do
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within('.board:nth-child(2)') do
|
2016-10-07 10:32:07 -04:00
|
|
|
expect(find('.board-title span.has-tooltip')[:title]).to eq('Test')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-09 11:53:56 -04:00
|
|
|
it 'shows issues in lists' do
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 8)
|
|
|
|
wait_for_board_cards(3, 2)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
2016-08-03 03:42:26 -04:00
|
|
|
|
2016-08-10 12:19:56 -04:00
|
|
|
it 'shows confidential issues with icon' do
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2016-08-10 12:19:56 -04:00
|
|
|
expect(page).to have_selector('.confidential-icon', count: 1)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'search closed list' do
|
2017-03-08 09:46:46 -05:00
|
|
|
find('.filtered-search').set(issue8.title)
|
|
|
|
find('.filtered-search').native.send_keys(:enter)
|
2016-08-30 05:32:19 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-30 05:32:19 -04:00
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(find('.board:nth-child(2)')).to have_selector('.board-card', count: 0)
|
|
|
|
expect(find('.board:nth-child(3)')).to have_selector('.board-card', count: 0)
|
|
|
|
expect(find('.board:nth-child(4)')).to have_selector('.board-card', count: 1)
|
2016-08-30 05:32:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'search list' do
|
2017-03-08 09:46:46 -05:00
|
|
|
find('.filtered-search').set(issue5.title)
|
|
|
|
find('.filtered-search').native.send_keys(:enter)
|
2016-08-30 05:32:19 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-30 05:32:19 -04:00
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(find('.board:nth-child(2)')).to have_selector('.board-card', count: 1)
|
|
|
|
expect(find('.board:nth-child(3)')).to have_selector('.board-card', count: 0)
|
|
|
|
expect(find('.board:nth-child(4)')).to have_selector('.board-card', count: 0)
|
2016-08-30 05:32:19 -04:00
|
|
|
end
|
|
|
|
|
2016-08-09 11:53:56 -04:00
|
|
|
it 'allows user to delete board' do
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2017-10-09 18:07:56 -04:00
|
|
|
accept_confirm { find('.board-delete').click }
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|
2016-08-16 07:57:59 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 07:57:59 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 3)
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|
|
|
|
|
2016-08-12 06:37:47 -04:00
|
|
|
it 'removes checkmark in new list dropdown after deleting' do
|
2016-11-19 12:58:31 -05:00
|
|
|
click_button 'Add list'
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-12 06:37:47 -04:00
|
|
|
|
2018-06-07 16:54:24 -04:00
|
|
|
find('.js-new-board-list').click
|
2017-08-17 04:51:19 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2017-10-09 18:07:56 -04:00
|
|
|
accept_confirm { find('.board-delete').click }
|
2016-08-12 06:37:47 -04:00
|
|
|
end
|
2016-08-16 15:45:07 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-12 06:37:47 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 3)
|
2016-08-12 06:37:47 -04:00
|
|
|
end
|
|
|
|
|
2016-08-10 10:13:42 -04:00
|
|
|
it 'infinite scrolls list' do
|
|
|
|
50.times do
|
2017-01-27 06:14:50 -05:00
|
|
|
create(:labeled_issue, project: project, labels: [planning])
|
2016-08-10 10:13:42 -04:00
|
|
|
end
|
|
|
|
|
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-08-10 10:13:42 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2017-01-27 06:14:50 -05:00
|
|
|
expect(page.find('.board-header')).to have_content('58')
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 20)
|
2017-01-27 06:14:50 -05:00
|
|
|
expect(page).to have_content('Showing 20 of 58 issues')
|
2016-08-10 10:13:42 -04:00
|
|
|
|
2017-10-16 13:37:52 -04:00
|
|
|
find('.board .board-list')
|
2017-06-01 06:11:02 -04:00
|
|
|
evaluate_script("document.querySelectorAll('.board .board-list')[1].scrollTop = document.querySelectorAll('.board .board-list')[1].scrollHeight")
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-10 10:13:42 -04:00
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 40)
|
2017-01-27 06:14:50 -05:00
|
|
|
expect(page).to have_content('Showing 40 of 58 issues')
|
2016-08-19 15:23:56 -04:00
|
|
|
|
2017-10-16 13:37:52 -04:00
|
|
|
find('.board .board-list')
|
2017-06-01 06:11:02 -04:00
|
|
|
evaluate_script("document.querySelectorAll('.board .board-list')[1].scrollTop = document.querySelectorAll('.board .board-list')[1].scrollHeight")
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-19 15:23:56 -04:00
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 58)
|
2016-08-19 15:23:56 -04:00
|
|
|
expect(page).to have_content('Showing all issues')
|
2016-08-10 10:13:42 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
context 'closed' do
|
|
|
|
it 'shows list of closed issues' do
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(4, 1)
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'moves issue to closed' do
|
2017-06-01 06:11:02 -04:00
|
|
|
drag(list_from_index: 1, list_to_index: 3)
|
2016-08-09 11:53:56 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 7)
|
2016-09-04 14:05:26 -04:00
|
|
|
wait_for_board_cards(3, 2)
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(4, 2)
|
2016-09-04 14:05:26 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(find('.board:nth-child(2)')).not_to have_content(issue9.title)
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(find('.board:nth-child(4)')).to have_selector('.board-card', count: 2)
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(find('.board:nth-child(4)')).to have_content(issue9.title)
|
|
|
|
expect(find('.board:nth-child(4)')).not_to have_content(planning.title)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'removes all of the same issue to closed' do
|
2017-06-01 06:11:02 -04:00
|
|
|
drag(list_from_index: 1, list_to_index: 3)
|
2016-08-09 11:53:56 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 7)
|
2017-01-27 06:14:50 -05:00
|
|
|
wait_for_board_cards(3, 2)
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(4, 2)
|
2016-09-04 14:05:26 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(find('.board:nth-child(2)')).not_to have_content(issue9.title)
|
|
|
|
expect(find('.board:nth-child(4)')).to have_content(issue9.title)
|
|
|
|
expect(find('.board:nth-child(4)')).not_to have_content(planning.title)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'lists' do
|
2016-08-10 04:10:50 -04:00
|
|
|
it 'changes position of list' do
|
2017-06-01 06:11:02 -04:00
|
|
|
drag(list_from_index: 2, list_to_index: 1, selector: '.board-header')
|
2016-08-10 04:10:50 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 2)
|
|
|
|
wait_for_board_cards(3, 8)
|
|
|
|
wait_for_board_cards(4, 1)
|
2016-09-04 14:05:26 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(find('.board:nth-child(2)')).to have_content(development.title)
|
|
|
|
expect(find('.board:nth-child(2)')).to have_content(planning.title)
|
2016-08-10 04:10:50 -04:00
|
|
|
end
|
|
|
|
|
2016-08-16 07:57:59 -04:00
|
|
|
it 'issue moves between lists' do
|
2017-06-01 06:11:02 -04:00
|
|
|
drag(list_from_index: 1, from_index: 1, list_to_index: 2)
|
2016-08-09 11:53:56 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 7)
|
|
|
|
wait_for_board_cards(3, 2)
|
|
|
|
wait_for_board_cards(4, 1)
|
2016-09-04 14:05:26 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(find('.board:nth-child(3)')).to have_content(issue6.title)
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(find('.board:nth-child(3)').all('.board-card').last).to have_content(development.title)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
|
2016-08-16 07:57:59 -04:00
|
|
|
it 'issue moves between lists' do
|
2017-06-01 06:11:02 -04:00
|
|
|
drag(list_from_index: 2, list_to_index: 1)
|
2016-08-09 11:53:56 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 9)
|
2016-09-04 14:05:26 -04:00
|
|
|
wait_for_board_cards(3, 1)
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(4, 1)
|
2016-09-04 14:05:26 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(find('.board:nth-child(2)')).to have_content(issue7.title)
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(find('.board:nth-child(2)').all('.board-card').first).to have_content(planning.title)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'issue moves from closed' do
|
2017-06-16 13:07:18 -04:00
|
|
|
drag(list_from_index: 2, list_to_index: 3)
|
2016-08-09 11:53:56 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 8)
|
2017-06-16 13:07:18 -04:00
|
|
|
wait_for_board_cards(3, 1)
|
|
|
|
wait_for_board_cards(4, 2)
|
2017-06-15 12:52:29 -04:00
|
|
|
|
2017-06-16 13:07:18 -04:00
|
|
|
expect(find('.board:nth-child(4)')).to have_content(issue8.title)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'issue card' do
|
|
|
|
it 'shows assignee' do
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2016-08-10 12:19:56 -04:00
|
|
|
expect(page).to have_selector('.avatar', count: 1)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'new list' do
|
|
|
|
it 'shows all labels in new list dropdown' do
|
2016-11-19 12:58:31 -05:00
|
|
|
click_button 'Add list'
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-09 11:53:56 -04:00
|
|
|
|
|
|
|
page.within('.dropdown-menu-issues-board-new') do
|
|
|
|
expect(page).to have_content(planning.title)
|
|
|
|
expect(page).to have_content(development.title)
|
|
|
|
expect(page).to have_content(testing.title)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates new list for label' do
|
2016-11-19 12:58:31 -05:00
|
|
|
click_button 'Add list'
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-09 11:53:56 -04:00
|
|
|
|
|
|
|
page.within('.dropdown-menu-issues-board-new') do
|
|
|
|
click_link testing.title
|
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 15:45:07 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 5)
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
|
2016-08-12 05:39:45 -04:00
|
|
|
it 'creates new list for Backlog label' do
|
2016-11-19 12:58:31 -05:00
|
|
|
click_button 'Add list'
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-12 05:39:45 -04:00
|
|
|
|
|
|
|
page.within('.dropdown-menu-issues-board-new') do
|
|
|
|
click_link backlog.title
|
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 15:45:07 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 5)
|
2016-08-12 05:39:45 -04:00
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'creates new list for Closed label' do
|
2016-11-19 12:58:31 -05:00
|
|
|
click_button 'Add list'
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-12 05:39:45 -04:00
|
|
|
|
|
|
|
page.within('.dropdown-menu-issues-board-new') do
|
2017-03-24 08:40:35 -04:00
|
|
|
click_link closed.title
|
2016-08-12 05:39:45 -04:00
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 15:45:07 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 5)
|
2016-08-12 05:39:45 -04:00
|
|
|
end
|
|
|
|
|
2016-10-07 09:33:38 -04:00
|
|
|
it 'keeps dropdown open after adding new list' do
|
2016-11-19 12:58:31 -05:00
|
|
|
click_button 'Add list'
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-07 09:33:38 -04:00
|
|
|
|
|
|
|
page.within('.dropdown-menu-issues-board-new') do
|
2017-03-24 08:40:35 -04:00
|
|
|
click_link closed.title
|
2016-10-07 09:33:38 -04:00
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-07 09:33:38 -04:00
|
|
|
|
2018-04-23 20:32:30 -04:00
|
|
|
expect(page).to have_css('#js-add-list.show')
|
2016-10-07 09:33:38 -04:00
|
|
|
end
|
|
|
|
|
2016-10-07 11:18:42 -04:00
|
|
|
it 'creates new list from a new label' do
|
2016-11-19 12:58:31 -05:00
|
|
|
click_button 'Add list'
|
2016-10-07 11:18:42 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-07 11:18:42 -04:00
|
|
|
|
2018-03-12 02:12:30 -04:00
|
|
|
click_link 'Create project label'
|
2016-10-07 11:18:42 -04:00
|
|
|
|
|
|
|
fill_in('new_label_name', with: 'Testing New Label')
|
|
|
|
|
|
|
|
first('.suggest-colors a').click
|
|
|
|
|
|
|
|
click_button 'Create'
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
|
|
|
wait_for_requests
|
2016-10-07 11:18:42 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
expect(page).to have_selector('.board', count: 5)
|
2016-10-07 11:18:42 -04:00
|
|
|
end
|
2016-08-09 11:53:56 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'filtering' do
|
2016-08-10 04:10:50 -04:00
|
|
|
it 'filters by author' do
|
2017-03-08 07:17:01 -05:00
|
|
|
set_filter("author", user2.username)
|
|
|
|
click_filter_link(user2.username)
|
|
|
|
submit_filter
|
2016-08-10 04:10:50 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 1)
|
|
|
|
wait_for_empty_boards((3..4))
|
2016-08-10 04:10:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'filters by assignee' do
|
2017-03-08 07:17:01 -05:00
|
|
|
set_filter("assignee", user.username)
|
|
|
|
click_filter_link(user.username)
|
|
|
|
submit_filter
|
2016-08-10 04:10:50 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 06:34:32 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 1)
|
|
|
|
wait_for_empty_boards((3..4))
|
2016-08-10 04:10:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'filters by milestone' do
|
2017-10-13 17:32:23 -04:00
|
|
|
set_filter("milestone", "\"#{milestone.title}")
|
2017-03-08 07:17:01 -05:00
|
|
|
click_filter_link(milestone.title)
|
|
|
|
submit_filter
|
2016-08-10 04:10:50 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 1)
|
2016-09-04 14:05:26 -04:00
|
|
|
wait_for_board_cards(3, 0)
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(4, 0)
|
2016-08-10 04:10:50 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'filters by label' do
|
2017-03-08 07:17:01 -05:00
|
|
|
set_filter("label", testing.title)
|
|
|
|
click_filter_link(testing.title)
|
|
|
|
submit_filter
|
2016-08-10 04:10:50 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 1)
|
|
|
|
wait_for_empty_boards((3..4))
|
2016-08-10 04:10:50 -04:00
|
|
|
end
|
|
|
|
|
2018-01-17 17:26:49 -05:00
|
|
|
it 'filters by label with encoded character' do
|
|
|
|
set_filter("label", a_plus.title)
|
|
|
|
click_filter_link(a_plus.title)
|
|
|
|
submit_filter
|
|
|
|
|
|
|
|
wait_for_board_cards(1, 1)
|
|
|
|
wait_for_empty_boards((2..4))
|
|
|
|
end
|
|
|
|
|
2016-09-08 04:59:20 -04:00
|
|
|
it 'filters by label with space after reload' do
|
2017-10-13 17:32:23 -04:00
|
|
|
set_filter("label", "\"#{accepting.title}")
|
2017-03-08 07:17:01 -05:00
|
|
|
click_filter_link(accepting.title)
|
|
|
|
submit_filter
|
2016-09-08 04:59:20 -04:00
|
|
|
|
|
|
|
# Test after reload
|
|
|
|
page.evaluate_script 'window.location.reload()'
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 1)
|
|
|
|
wait_for_empty_boards((3..4))
|
2016-09-08 04:59:20 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-09-08 04:59:20 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2016-09-08 04:59:20 -04:00
|
|
|
expect(page.find('.board-header')).to have_content('1')
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 1)
|
2016-09-08 04:59:20 -04:00
|
|
|
end
|
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(3)')) do
|
2016-09-08 04:59:20 -04:00
|
|
|
expect(page.find('.board-header')).to have_content('0')
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 0)
|
2016-09-08 04:59:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-09-05 12:32:07 -04:00
|
|
|
it 'removes filtered labels' do
|
2017-03-08 07:17:01 -05:00
|
|
|
set_filter("label", testing.title)
|
|
|
|
click_filter_link(testing.title)
|
|
|
|
submit_filter
|
2016-09-05 12:32:07 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 1)
|
2016-09-05 12:32:07 -04:00
|
|
|
|
2017-03-08 07:17:01 -05:00
|
|
|
find('.clear-search').click
|
|
|
|
submit_filter
|
2016-09-05 12:32:07 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 8)
|
2016-09-05 12:32:07 -04:00
|
|
|
end
|
|
|
|
|
2016-08-10 10:13:42 -04:00
|
|
|
it 'infinite scrolls list with label filter' do
|
|
|
|
50.times do
|
2017-01-27 06:14:50 -05:00
|
|
|
create(:labeled_issue, project: project, labels: [planning, testing])
|
2016-08-10 10:13:42 -04:00
|
|
|
end
|
|
|
|
|
2017-03-08 07:17:01 -05:00
|
|
|
set_filter("label", testing.title)
|
|
|
|
click_filter_link(testing.title)
|
|
|
|
submit_filter
|
2016-08-10 10:13:42 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 06:34:32 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2016-08-19 12:19:20 -04:00
|
|
|
expect(page.find('.board-header')).to have_content('51')
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 20)
|
2016-08-19 15:23:56 -04:00
|
|
|
expect(page).to have_content('Showing 20 of 51 issues')
|
2016-08-10 10:13:42 -04:00
|
|
|
|
2017-10-16 13:37:52 -04:00
|
|
|
find('.board .board-list')
|
2017-06-01 06:11:02 -04:00
|
|
|
evaluate_script("document.querySelectorAll('.board .board-list')[1].scrollTop = document.querySelectorAll('.board .board-list')[1].scrollHeight")
|
2016-08-10 10:13:42 -04:00
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 40)
|
2016-08-19 15:23:56 -04:00
|
|
|
expect(page).to have_content('Showing 40 of 51 issues')
|
|
|
|
|
2017-10-16 13:37:52 -04:00
|
|
|
find('.board .board-list')
|
2017-06-01 06:11:02 -04:00
|
|
|
evaluate_script("document.querySelectorAll('.board .board-list')[1].scrollTop = document.querySelectorAll('.board .board-list')[1].scrollHeight")
|
2016-08-19 15:23:56 -04:00
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 51)
|
2016-08-19 15:23:56 -04:00
|
|
|
expect(page).to have_content('Showing all issues')
|
2016-08-10 10:13:42 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-10 04:10:50 -04:00
|
|
|
it 'filters by multiple labels' do
|
2017-03-08 07:17:01 -05:00
|
|
|
set_filter("label", testing.title)
|
|
|
|
click_filter_link(testing.title)
|
2016-08-10 04:10:50 -04:00
|
|
|
|
2017-03-08 07:17:01 -05:00
|
|
|
set_filter("label", bug.title)
|
|
|
|
click_filter_link(bug.title)
|
|
|
|
|
|
|
|
submit_filter
|
2016-08-10 04:10:50 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-16 06:34:32 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 1)
|
|
|
|
wait_for_empty_boards((3..4))
|
2016-08-10 04:10:50 -04:00
|
|
|
end
|
2016-08-10 09:35:14 -04:00
|
|
|
|
|
|
|
it 'filters by clicking label button on issue' do
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 8)
|
|
|
|
expect(find('.board-card', match: :first)).to have_content(bug.title)
|
2016-08-17 11:24:49 -04:00
|
|
|
click_button(bug.title)
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-10 09:35:14 -04:00
|
|
|
end
|
|
|
|
|
2017-03-08 07:17:01 -05:00
|
|
|
page.within('.tokens-container') do
|
|
|
|
expect(page).to have_content(bug.title)
|
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-18 10:59:50 -04:00
|
|
|
|
2017-06-01 06:11:02 -04:00
|
|
|
wait_for_board_cards(2, 1)
|
|
|
|
wait_for_empty_boards((3..4))
|
2016-08-10 09:35:14 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'removes label filter by clicking label button on issue' do
|
2017-06-01 06:11:02 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2018-04-13 16:27:10 -04:00
|
|
|
page.within(find('.board-card', match: :first)) do
|
2016-08-10 09:35:14 -04:00
|
|
|
click_button(bug.title)
|
|
|
|
end
|
2017-03-08 07:17:01 -05:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-10 09:35:14 -04:00
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 1)
|
2016-08-10 09:35:14 -04:00
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-08-10 09:35:14 -04:00
|
|
|
end
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-19 05:21:09 -04:00
|
|
|
context 'keyboard shortcuts' do
|
|
|
|
before do
|
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-08-19 05:21:09 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'allows user to use keyboard shortcuts' do
|
2017-10-09 18:19:43 -04:00
|
|
|
find('body').native.send_keys('i')
|
2016-08-19 05:21:09 -04:00
|
|
|
expect(page).to have_content('New Issue')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-17 09:05:34 -04:00
|
|
|
context 'signed out user' do
|
|
|
|
before do
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_out(:user)
|
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-08-17 09:05:34 -04:00
|
|
|
end
|
|
|
|
|
2016-11-14 07:12:01 -05:00
|
|
|
it 'displays lists' do
|
|
|
|
expect(page).to have_selector('.board')
|
|
|
|
end
|
|
|
|
|
2016-08-17 09:05:34 -04:00
|
|
|
it 'does not show create new list' do
|
2017-10-31 12:15:03 -04:00
|
|
|
expect(page).not_to have_button('.js-new-board-list')
|
2016-08-17 09:05:34 -04:00
|
|
|
end
|
2016-10-25 07:57:56 -04:00
|
|
|
|
|
|
|
it 'does not allow dragging' do
|
|
|
|
expect(page).not_to have_selector('.user-can-drag')
|
|
|
|
end
|
2016-08-17 09:05:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'as guest user' do
|
|
|
|
let(:user_guest) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
2017-12-22 03:18:28 -05:00
|
|
|
project.add_guest(user_guest)
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_out(:user)
|
|
|
|
sign_in(user_guest)
|
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-08-17 09:05:34 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not show create new list' do
|
|
|
|
expect(page).not_to have_selector('.js-new-board-list')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-01-06 11:52:18 -05:00
|
|
|
def drag(selector: '.board-list', list_from_index: 0, from_index: 0, to_index: 0, list_to_index: 0)
|
2017-10-09 18:08:46 -04:00
|
|
|
# ensure there is enough horizontal space for four boards
|
2017-11-02 16:45:46 -04:00
|
|
|
resize_window(2000, 800)
|
2017-10-09 18:08:46 -04:00
|
|
|
|
2017-01-06 11:52:18 -05:00
|
|
|
drag_to(selector: selector,
|
|
|
|
scrollable: '#board-app',
|
|
|
|
list_from_index: list_from_index,
|
|
|
|
from_index: from_index,
|
|
|
|
to_index: to_index,
|
|
|
|
list_to_index: list_to_index)
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|
2016-09-04 14:05:26 -04:00
|
|
|
|
|
|
|
def wait_for_board_cards(board_number, expected_cards)
|
|
|
|
page.within(find(".board:nth-child(#{board_number})")) do
|
|
|
|
expect(page.find('.board-header')).to have_content(expected_cards.to_s)
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: expected_cards)
|
2016-09-04 14:05:26 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def wait_for_empty_boards(board_numbers)
|
|
|
|
board_numbers.each do |board|
|
|
|
|
wait_for_board_cards(board, 0)
|
|
|
|
end
|
|
|
|
end
|
2017-03-08 07:17:01 -05:00
|
|
|
|
|
|
|
def set_filter(type, text)
|
|
|
|
find('.filtered-search').native.send_keys("#{type}:#{text}")
|
|
|
|
end
|
|
|
|
|
|
|
|
def submit_filter
|
|
|
|
find('.filtered-search').native.send_keys(:enter)
|
|
|
|
end
|
|
|
|
|
|
|
|
def click_filter_link(link_text)
|
2017-03-29 22:04:05 -04:00
|
|
|
page.within('.filtered-search-box') do
|
2017-03-08 07:17:01 -05:00
|
|
|
expect(page).to have_button(link_text)
|
|
|
|
|
|
|
|
click_button(link_text)
|
|
|
|
end
|
|
|
|
end
|
2016-08-03 03:42:26 -04:00
|
|
|
end
|