2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Issue Boards', :js do
|
2017-09-19 09:01:01 -04:00
|
|
|
include BoardHelpers
|
2019-04-08 03:38:34 -04:00
|
|
|
include FilteredSearchHelpers
|
2017-09-19 09:01:01 -04:00
|
|
|
|
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) }
|
2019-06-11 06:40:01 -04:00
|
|
|
let(:card) { find('.board:nth-child(2)').first('.board-card') }
|
|
|
|
|
|
|
|
let(:application_settings) { {} }
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2017-08-11 06:36:03 -04:00
|
|
|
around do |example|
|
2020-08-31 11:10:41 -04:00
|
|
|
freeze_time { example.run }
|
2017-08-11 06:36:03 -04:00
|
|
|
end
|
2017-02-17 05:33:18 -05:00
|
|
|
|
2017-08-11 06:36:03 -04:00
|
|
|
before do
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(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
|
|
|
|
2019-06-11 06:40:01 -04:00
|
|
|
stub_application_setting(application_settings)
|
|
|
|
|
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
|
|
|
|
|
2020-12-09 13:09:48 -05:00
|
|
|
it 'removes card from board when clicking' do
|
2017-02-17 05:33:18 -05:00
|
|
|
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
|
2018-04-13 16:27:10 -04:00
|
|
|
expect(page).to have_selector('.board-card', count: 1)
|
2017-01-30 12:11:08 -05:00
|
|
|
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
|
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
click_card(find('.board:nth-child(1)').first('.board-card'))
|
2017-07-03 03:44:58 -04:00
|
|
|
|
|
|
|
expect(find('.issue-boards-sidebar')).not_to have_button 'Remove from board'
|
|
|
|
|
2018-04-13 16:27:10 -04:00
|
|
|
click_card(find('.board:nth-child(3)').first('.board-card'))
|
2017-07-03 03:44:58 -04:00
|
|
|
|
|
|
|
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
|
2021-02-17 04:09:36 -05:00
|
|
|
click_button('Edit')
|
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
|
|
|
|
2021-02-17 04:09:36 -05:00
|
|
|
assignee = first('.gl-avatar-labeled').find('.gl-avatar-labeled-label').text
|
2016-10-06 09:36:44 -04:00
|
|
|
|
2021-02-17 04:09:36 -05:00
|
|
|
page.within('.dropdown-menu-user') do
|
|
|
|
first('.gl-avatar-labeled').click
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
2021-02-17 04:09:36 -05:00
|
|
|
click_button('Edit')
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_content(assignee)
|
2016-10-06 09:36:44 -04:00
|
|
|
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
|
2018-04-13 16:27:10 -04:00
|
|
|
card_two = find('.board:nth-child(2)').find('.board-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
|
2021-02-17 04:09:36 -05:00
|
|
|
click_button('Edit')
|
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
|
|
|
|
|
|
|
page.within('.dropdown-menu-user') do
|
2021-02-17 04:09:36 -05:00
|
|
|
find('[data-testid="unassign"]').click
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
|
2021-02-17 04:09:36 -05:00
|
|
|
click_button('Edit')
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-05-04 08:11:15 -04:00
|
|
|
|
2019-04-16 16:21:56 -04:00
|
|
|
expect(page).to have_content('None')
|
2016-10-06 09:36:44 -04:00
|
|
|
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
|
2019-04-16 16:21:56 -04:00
|
|
|
expect(page).to have_content('None')
|
2017-01-16 18:03:38 -05:00
|
|
|
|
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
|
2021-02-17 04:09:36 -05:00
|
|
|
click_button('Edit')
|
2017-01-12 10:22:51 -05:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-01-12 10:22:51 -05:00
|
|
|
|
2021-02-17 04:09:36 -05:00
|
|
|
assignee = first('.gl-avatar-labeled').find('.gl-avatar-labeled-label').text
|
2017-01-12 10:22:51 -05:00
|
|
|
|
2021-02-17 04:09:36 -05:00
|
|
|
page.within('.dropdown-menu-user') do
|
|
|
|
first('.gl-avatar-labeled').click
|
2017-01-12 10:22:51 -05:00
|
|
|
end
|
|
|
|
|
2021-02-17 04:09:36 -05:00
|
|
|
click_button('Edit')
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_content(assignee)
|
2017-01-12 10:22:51 -05:00
|
|
|
end
|
|
|
|
|
2017-06-01 09:54:10 -04:00
|
|
|
page.within(find('.board:nth-child(2)')) do
|
2018-04-13 16:27:10 -04:00
|
|
|
find('.board-card:nth-child(2)').click
|
2017-01-12 10:22:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
page.within('.assignee') do
|
2021-02-17 04:09:36 -05:00
|
|
|
click_button('Edit')
|
2017-05-17 14:25:13 -04:00
|
|
|
|
2021-02-17 04:09:36 -05:00
|
|
|
expect(find('.dropdown-menu')).to have_selector('.gl-new-dropdown-item-check-icon')
|
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
|
|
|
|
2020-05-12 17:08:14 -04:00
|
|
|
click_link "No milestone"
|
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
|
|
|
|
|
|
|
page.within('.value') do
|
|
|
|
expect(page).not_to have_content(milestone.title)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-09 06:39:42 -04:00
|
|
|
context 'time tracking' do
|
2020-10-13 23:08:32 -04:00
|
|
|
let(:compare_meter_tooltip) { find('.time-tracking .time-tracking-content .compare-meter')['title'] }
|
2019-06-11 06:40:01 -04:00
|
|
|
|
2019-04-09 06:39:42 -04:00
|
|
|
before do
|
|
|
|
issue2.timelogs.create(time_spent: 14400, user: user)
|
2019-06-11 06:40:01 -04:00
|
|
|
issue2.update!(time_estimate: 128800)
|
|
|
|
|
|
|
|
click_card(card)
|
2019-04-09 06:39:42 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows time tracking progress bar' do
|
2019-06-11 06:40:01 -04:00
|
|
|
expect(compare_meter_tooltip).to eq('Time remaining: 3d 7h 46m')
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when time_tracking_limit_to_hours is true' do
|
|
|
|
let(:application_settings) { { time_tracking_limit_to_hours: true } }
|
2019-04-09 06:39:42 -04:00
|
|
|
|
2019-06-11 06:40:01 -04:00
|
|
|
it 'shows time tracking progress bar' do
|
|
|
|
expect(compare_meter_tooltip).to eq('Time remaining: 31h 46m')
|
2019-04-09 06:39:42 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-06 09:36:44 -04:00
|
|
|
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
|
2018-04-18 18:29:58 -04:00
|
|
|
it 'shows current labels when editing' do
|
|
|
|
click_card(card)
|
|
|
|
|
|
|
|
page.within('.labels') do
|
|
|
|
click_link 'Edit'
|
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
page.within('.value') do
|
2020-02-25 10:08:50 -05:00
|
|
|
expect(page).to have_selector('.gl-label-text', count: 2)
|
2018-04-18 18:29:58 -04:00
|
|
|
expect(page).to have_content(development.title)
|
|
|
|
expect(page).to have_content(stretch.title)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-10-06 09:36:44 -04:00
|
|
|
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
|
2020-02-25 10:08:50 -05:00
|
|
|
expect(page).to have_selector('.gl-label-text', count: 3)
|
2017-01-27 00:28:45 -05:00
|
|
|
expect(page).to have_content(bug.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-10 20:06:24 -04:00
|
|
|
# 'Development' label does not show since the card is in a 'Development' list label
|
2020-03-09 05:07:45 -04:00
|
|
|
expect(card).to have_selector('.gl-label', count: 2)
|
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
|
2020-01-16 16:08:24 -05:00
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
|
2017-01-27 00:28:45 -05:00
|
|
|
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
|
2020-02-25 10:08:50 -05:00
|
|
|
expect(page).to have_selector('.gl-label-text', count: 4)
|
2017-01-27 00:28:45 -05:00
|
|
|
expect(page).to have_content(bug.title)
|
|
|
|
expect(page).to have_content(regression.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-10 20:06:24 -04:00
|
|
|
# 'Development' label does not show since the card is in a 'Development' list label
|
2020-03-09 05:07:45 -04:00
|
|
|
expect(card).to have_selector('.gl-label', count: 3)
|
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
|
|
|
|
2018-04-18 18:29:58 -04:00
|
|
|
within('.dropdown-menu-labels') do
|
|
|
|
click_link stretch.title
|
|
|
|
end
|
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
|
2020-02-25 10:08:50 -05:00
|
|
|
expect(page).to have_selector('.gl-label-text', count: 1)
|
2017-01-27 00:28:45 -05:00
|
|
|
expect(page).not_to have_content(stretch.title)
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-10-10 20:06:24 -04:00
|
|
|
# 'Development' label does not show since the card is in a 'Development' list label
|
2020-02-25 10:08:50 -05:00
|
|
|
expect(card).to have_selector('.gl-label-text', count: 0)
|
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
|
|
|
|
2018-03-12 02:12:30 -04:00
|
|
|
it 'creates project label' do
|
2017-09-19 09:01:01 -04:00
|
|
|
click_card(card)
|
|
|
|
|
|
|
|
page.within('.labels') do
|
|
|
|
click_link 'Edit'
|
2019-05-20 22:50:59 -04:00
|
|
|
wait_for_requests
|
|
|
|
|
2018-03-12 02:12:30 -04:00
|
|
|
click_link 'Create project label'
|
2017-09-19 09:01:01 -04:00
|
|
|
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
|
2019-04-05 11:50:21 -04:00
|
|
|
expect(page).to have_selector('.board', count: 3)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates project label and list' do
|
|
|
|
click_card(card)
|
|
|
|
|
|
|
|
page.within('.labels') do
|
|
|
|
click_link 'Edit'
|
2019-05-20 22:50:59 -04:00
|
|
|
wait_for_requests
|
|
|
|
|
2019-04-05 11:50:21 -04:00
|
|
|
click_link 'Create project label'
|
|
|
|
fill_in 'new_label_name', with: 'test label'
|
|
|
|
first('.suggest-colors-dropdown a').click
|
|
|
|
first('.js-add-list').click
|
|
|
|
click_button 'Create'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_link 'test label'
|
|
|
|
end
|
|
|
|
expect(page).to have_selector('.board', count: 4)
|
2017-09-19 09:01:01 -04:00
|
|
|
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
|
2021-02-01 04:09:28 -05:00
|
|
|
find('[data-testid="subscription-toggle"] button:not(.is-checked)').click
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-11-14 01:05:40 -05:00
|
|
|
|
2021-02-01 04:09:28 -05:00
|
|
|
expect(page).to have_css('[data-testid="subscription-toggle"] 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
|
2021-02-01 04:09:28 -05:00
|
|
|
find('[data-testid="subscription-toggle"] button.is-checked').click
|
2017-11-14 01:05:40 -05:00
|
|
|
wait_for_requests
|
|
|
|
|
2021-02-01 04:09:28 -05:00
|
|
|
expect(page).to have_css('[data-testid="subscription-toggle"] button:not(.is-checked)')
|
2016-10-07 04:55:12 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-10-06 09:36:44 -04:00
|
|
|
end
|