2016-10-04 07:53:39 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe 'Issue Boards new issue', feature: true, js: true do
|
2016-10-06 16:14:39 -04:00
|
|
|
let(:project) { create(:empty_project, :public) }
|
|
|
|
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
|
|
|
|
project.team << [user, :master]
|
|
|
|
|
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
|
|
|
|
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
|
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
|
|
|
|
|
|
|
|
it 'does not display new issue button' do
|
2017-06-13 19:04:15 -04:00
|
|
|
expect(page).to have_selector('.issue-count-badge-add-button', count: 0)
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|