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-04 07:53:39 -04:00
|
|
|
|
2020-06-16 14:09:01 -04:00
|
|
|
RSpec.describe 'Issue Boards new issue', :js do
|
2021-03-26 05:09:24 -04:00
|
|
|
let_it_be(:project) { create(:project, :public) }
|
|
|
|
let_it_be(:board) { create(:board, project: project) }
|
|
|
|
let_it_be(:backlog_list) { create(:backlog_list, board: board) }
|
|
|
|
let_it_be(:label) { create(:label, project: project, name: 'Label 1') }
|
|
|
|
let_it_be(:list) { create(:list, board: board, label: label, position: 0) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
2016-10-04 07:53:39 -04:00
|
|
|
|
|
|
|
context 'authorized user' do
|
|
|
|
before do
|
2018-07-11 10:36:08 -04:00
|
|
|
project.add_maintainer(user)
|
2016-10-04 07:53:39 -04:00
|
|
|
|
2017-06-21 19:44:10 -04:00
|
|
|
sign_in(user)
|
2016-10-04 07:53:39 -04:00
|
|
|
|
2017-07-06 12:20:50 -04:00
|
|
|
visit project_board_path(project, board)
|
2021-03-26 05:09:24 -04:00
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-04 07:53:39 -04:00
|
|
|
|
2017-06-01 05:15:09 -04:00
|
|
|
expect(page).to have_selector('.board', count: 3)
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays new issue button' do
|
2017-06-13 19:04:15 -04:00
|
|
|
expect(first('.board')).to have_selector('.issue-count-badge-add-button', count: 1)
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
|
2017-03-24 08:40:35 -04:00
|
|
|
it 'does not display new issue button in closed list' do
|
2017-06-01 05:15:09 -04:00
|
|
|
page.within('.board:nth-child(3)') do
|
2017-06-13 19:04:15 -04:00
|
|
|
expect(page).not_to have_selector('.issue-count-badge-add-button')
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows form when clicking button' do
|
|
|
|
page.within(first('.board')) do
|
2017-06-13 19:04:15 -04:00
|
|
|
find('.issue-count-badge-add-button').click
|
2016-10-04 07:53:39 -04:00
|
|
|
|
|
|
|
expect(page).to have_selector('.board-new-issue-form')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'hides form when clicking cancel' do
|
|
|
|
page.within(first('.board')) do
|
2017-06-13 19:04:15 -04:00
|
|
|
find('.issue-count-badge-add-button').click
|
2016-10-04 07:53:39 -04:00
|
|
|
|
|
|
|
expect(page).to have_selector('.board-new-issue-form')
|
|
|
|
|
|
|
|
click_button 'Cancel'
|
|
|
|
|
2016-11-09 04:17:14 -05:00
|
|
|
expect(page).not_to have_selector('.board-new-issue-form')
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates new issue' do
|
|
|
|
page.within(first('.board')) do
|
2017-06-13 19:04:15 -04:00
|
|
|
find('.issue-count-badge-add-button').click
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
page.within(first('.board-new-issue-form')) do
|
|
|
|
find('.form-control').set('bug')
|
2021-04-01 08:08:56 -04:00
|
|
|
click_button 'Create issue'
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-04 07:53:39 -04:00
|
|
|
|
2017-06-13 19:04:15 -04:00
|
|
|
page.within(first('.board .issue-count-badge-count')) do
|
2016-10-04 07:53:39 -04:00
|
|
|
expect(page).to have_content('1')
|
|
|
|
end
|
2018-04-18 10:23:00 -04:00
|
|
|
|
2018-04-24 10:59:45 -04:00
|
|
|
page.within(first('.board-card')) do
|
2018-04-18 10:23:00 -04:00
|
|
|
issue = project.issues.find_by_title('bug')
|
|
|
|
|
|
|
|
expect(page).to have_content(issue.to_reference)
|
2021-03-26 05:09:24 -04:00
|
|
|
expect(page).to have_link(issue.title, href: /#{issue_path(issue)}/)
|
2018-04-18 10:23:00 -04:00
|
|
|
end
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
2016-10-07 04:55:12 -04:00
|
|
|
|
2021-03-26 05:09:24 -04:00
|
|
|
# TODO https://gitlab.com/gitlab-org/gitlab/-/issues/323446
|
|
|
|
xit 'shows sidebar when creating new issue' do
|
2016-10-07 04:55:12 -04:00
|
|
|
page.within(first('.board')) do
|
2017-06-13 19:04:15 -04:00
|
|
|
find('.issue-count-badge-add-button').click
|
2016-10-07 04:55:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
page.within(first('.board-new-issue-form')) do
|
|
|
|
find('.form-control').set('bug')
|
2021-04-01 08:08:56 -04:00
|
|
|
click_button 'Create issue'
|
2016-10-07 04:55:12 -04:00
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-07 04:55:12 -04:00
|
|
|
|
2021-04-06 05:09:03 -04:00
|
|
|
expect(page).to have_selector('[data-testid="issue-boards-sidebar"]')
|
2016-10-07 04:55:12 -04:00
|
|
|
end
|
2019-01-05 03:27:30 -05:00
|
|
|
|
|
|
|
it 'successfuly loads labels to be added to newly created issue' do
|
|
|
|
page.within(first('.board')) do
|
|
|
|
find('.issue-count-badge-add-button').click
|
|
|
|
end
|
|
|
|
|
|
|
|
page.within(first('.board-new-issue-form')) do
|
|
|
|
find('.form-control').set('new issue')
|
2021-04-01 08:08:56 -04:00
|
|
|
click_button 'Create issue'
|
2019-01-05 03:27:30 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
|
2021-03-26 05:09:24 -04:00
|
|
|
page.within(first('.board')) do
|
|
|
|
find('.board-card').click
|
|
|
|
end
|
|
|
|
|
2021-04-06 05:09:03 -04:00
|
|
|
page.within(first('[data-testid="issue-boards-sidebar"]')) do
|
2021-03-26 05:09:24 -04:00
|
|
|
find('.labels [data-testid="edit-button"]').click
|
2019-01-05 03:27:30 -05:00
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
|
2021-03-26 05:09:24 -04:00
|
|
|
expect(page).to have_selector('.labels-select-contents-list .dropdown-content li a')
|
2019-01-05 03:27:30 -05:00
|
|
|
end
|
|
|
|
end
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'unauthorized user' 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-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
|
2018-10-24 02:02:22 -04:00
|
|
|
it 'displays new issue button in open list' do
|
|
|
|
expect(first('.board')).to have_selector('.issue-count-badge-add-button', count: 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not display new issue button in label list' do
|
|
|
|
page.within('.board:nth-child(2)') do
|
|
|
|
expect(page).not_to have_selector('.issue-count-badge-add-button')
|
|
|
|
end
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
end
|
2019-09-04 12:33:02 -04:00
|
|
|
|
|
|
|
context 'group boards' do
|
2020-02-26 13:09:24 -05:00
|
|
|
let_it_be(:group) { create(:group, :public) }
|
2020-08-24 08:10:17 -04:00
|
|
|
let_it_be(:project) { create(:project, :public, namespace: group) }
|
2020-02-26 13:09:24 -05:00
|
|
|
let_it_be(:group_board) { create(:board, group: group) }
|
2020-08-24 08:10:17 -04:00
|
|
|
let_it_be(:project_label) { create(:label, project: project, name: 'label') }
|
|
|
|
let_it_be(:list) { create(:list, board: group_board, label: project_label, position: 0) }
|
2019-09-04 12:33:02 -04:00
|
|
|
|
|
|
|
context 'for unauthorized users' do
|
2020-08-24 08:10:17 -04:00
|
|
|
context 'when backlog does not exist' do
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
visit group_board_path(group, group_board)
|
|
|
|
wait_for_requests
|
|
|
|
end
|
2019-09-04 12:33:02 -04:00
|
|
|
|
2020-08-24 08:10:17 -04:00
|
|
|
it 'does not display new issue button in label list' do
|
|
|
|
page.within('.board.is-draggable') do
|
|
|
|
expect(page).not_to have_selector('.issue-count-badge-add-button')
|
|
|
|
end
|
|
|
|
end
|
2019-09-04 12:33:02 -04:00
|
|
|
end
|
|
|
|
|
2020-08-24 08:10:17 -04:00
|
|
|
context 'when backlog list already exists' do
|
|
|
|
let!(:backlog_list) { create(:backlog_list, board: group_board) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
visit group_board_path(group, group_board)
|
|
|
|
wait_for_requests
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays new issue button in open list' do
|
|
|
|
expect(first('.board')).to have_selector('.issue-count-badge-add-button', count: 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not display new issue button in label list' do
|
|
|
|
page.within('.board.is-draggable') do
|
|
|
|
expect(page).not_to have_selector('.issue-count-badge-add-button')
|
|
|
|
end
|
2019-09-04 12:33:02 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'for authorized users' do
|
|
|
|
it 'display new issue button in label list' do
|
|
|
|
project = create(:project, namespace: group)
|
|
|
|
project.add_reporter(user)
|
|
|
|
|
|
|
|
sign_in(user)
|
|
|
|
visit group_board_path(group, group_board)
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
page.within('.board.is-draggable') do
|
|
|
|
expect(page).to have_selector('.issue-count-badge-add-button')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|