2016-11-03 12:29:30 +05:30
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-03-17 18:26:18 +05:30
|
|
|
describe 'Issue Boards new issue', :js do
|
2017-09-10 17:25:29 +05:30
|
|
|
let(:project) { create(:project, :public) }
|
2016-11-03 12:29:30 +05:30
|
|
|
let(:board) { create(:board, project: project) }
|
2017-08-17 22:00:37 +05:30
|
|
|
let!(:list) { create(:list, board: board, position: 0) }
|
2016-11-03 12:29:30 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
context 'authorized user' do
|
|
|
|
before do
|
2018-11-18 11:00:15 +05:30
|
|
|
project.add_maintainer(user)
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
sign_in(user)
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
visit project_board_path(project, board)
|
|
|
|
wait_for_requests
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(page).to have_selector('.board', count: 3)
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays new issue button' do
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(first('.board')).to have_selector('.issue-count-badge-add-button', count: 1)
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
it 'does not display new issue button in closed list' do
|
2017-09-10 17:25:29 +05:30
|
|
|
page.within('.board:nth-child(3)') do
|
|
|
|
expect(page).not_to have_selector('.issue-count-badge-add-button')
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows form when clicking button' do
|
|
|
|
page.within(first('.board')) do
|
2017-09-10 17:25:29 +05:30
|
|
|
find('.issue-count-badge-add-button').click
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
expect(page).to have_selector('.board-new-issue-form')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'hides form when clicking cancel' do
|
|
|
|
page.within(first('.board')) do
|
2017-09-10 17:25:29 +05:30
|
|
|
find('.issue-count-badge-add-button').click
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
expect(page).to have_selector('.board-new-issue-form')
|
|
|
|
|
|
|
|
click_button 'Cancel'
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
expect(page).not_to have_selector('.board-new-issue-form')
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'creates new issue' do
|
|
|
|
page.within(first('.board')) do
|
2017-09-10 17:25:29 +05:30
|
|
|
find('.issue-count-badge-add-button').click
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
page.within(first('.board-new-issue-form')) do
|
|
|
|
find('.form-control').set('bug')
|
|
|
|
click_button 'Submit issue'
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
wait_for_requests
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
page.within(first('.board .issue-count-badge-count')) do
|
2016-11-03 12:29:30 +05:30
|
|
|
expect(page).to have_content('1')
|
|
|
|
end
|
2018-05-09 12:01:36 +05:30
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
page.within(first('.board-card')) do
|
2018-05-09 12:01:36 +05:30
|
|
|
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-11-03 12:29:30 +05:30
|
|
|
end
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
it 'shows sidebar when creating new issue' do
|
|
|
|
page.within(first('.board')) do
|
2017-09-10 17:25:29 +05:30
|
|
|
find('.issue-count-badge-add-button').click
|
2017-08-17 22:00:37 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
page.within(first('.board-new-issue-form')) do
|
|
|
|
find('.form-control').set('bug')
|
|
|
|
click_button 'Submit issue'
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
wait_for_requests
|
2017-08-17 22:00:37 +05:30
|
|
|
|
|
|
|
expect(page).to have_selector('.issue-boards-sidebar')
|
|
|
|
end
|
2019-02-15 15:39:39 +05:30
|
|
|
|
|
|
|
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-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'unauthorized user' do
|
|
|
|
before do
|
2017-09-10 17:25:29 +05:30
|
|
|
visit project_board_path(project, board)
|
|
|
|
wait_for_requests
|
2016-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
|
2018-12-13 13:39:08 +05:30
|
|
|
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-11-03 12:29:30 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|