2016-10-04 07:53:39 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2017-10-03 04:35:01 -04:00
|
|
|
describe 'Issue Boards new issue', :js do
|
2017-08-02 15:55:11 -04:00
|
|
|
let(:project) { create(:project, :public) }
|
2016-10-06 16:14:39 -04:00
|
|
|
let(:board) { create(:board, project: project) }
|
2017-01-27 00:28:06 -05:00
|
|
|
let!(:list) { create(:list, board: board, position: 0) }
|
2016-10-04 07:53:39 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
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)
|
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')
|
|
|
|
click_button 'Submit issue'
|
|
|
|
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)
|
|
|
|
expect(page).to have_link(issue.title, href: issue_path(issue))
|
|
|
|
end
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
2016-10-07 04:55:12 -04:00
|
|
|
|
|
|
|
it 'shows sidebar when creating 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-07 04:55:12 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
page.within(first('.board-new-issue-form')) do
|
|
|
|
find('.form-control').set('bug')
|
|
|
|
click_button 'Submit issue'
|
|
|
|
end
|
|
|
|
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-10-07 04:55:12 -04:00
|
|
|
|
|
|
|
expect(page).to have_selector('.issue-boards-sidebar')
|
|
|
|
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')
|
|
|
|
click_button 'Submit issue'
|
|
|
|
end
|
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
page.within(first('.issue-boards-sidebar')) do
|
|
|
|
find('.labels .edit-link').click
|
|
|
|
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_selector('.labels .dropdown-content li a')
|
|
|
|
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
|
|
|
|
end
|