2016-10-04 07:53:39 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
describe 'Issue Boards new issue', feature: true, js: true do
|
|
|
|
include WaitForAjax
|
|
|
|
include WaitForVueResource
|
|
|
|
|
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]
|
|
|
|
|
|
|
|
login_as(user)
|
|
|
|
|
2016-10-10 22:29:20 -04:00
|
|
|
visit namespace_project_board_path(project.namespace, project, board)
|
2016-10-04 07:53:39 -04:00
|
|
|
wait_for_vue_resource
|
|
|
|
|
2017-01-27 00:28:06 -05:00
|
|
|
expect(page).to have_selector('.board', count: 2)
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays new issue button' do
|
|
|
|
expect(page).to have_selector('.board-issue-count-holder .btn', count: 1)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not display new issue button in done list' do
|
2017-01-27 00:28:06 -05:00
|
|
|
page.within('.board:nth-child(2)') do
|
2016-10-04 07:53:39 -04:00
|
|
|
expect(page).not_to have_selector('.board-issue-count-holder .btn')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'shows form when clicking button' do
|
|
|
|
page.within(first('.board')) do
|
|
|
|
find('.board-issue-count-holder .btn').click
|
|
|
|
|
|
|
|
expect(page).to have_selector('.board-new-issue-form')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'hides form when clicking cancel' do
|
|
|
|
page.within(first('.board')) do
|
|
|
|
find('.board-issue-count-holder .btn').click
|
|
|
|
|
|
|
|
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
|
|
|
|
find('.board-issue-count-holder .btn').click
|
|
|
|
end
|
|
|
|
|
|
|
|
page.within(first('.board-new-issue-form')) do
|
|
|
|
find('.form-control').set('bug')
|
|
|
|
click_button 'Submit issue'
|
|
|
|
end
|
|
|
|
|
|
|
|
wait_for_vue_resource
|
|
|
|
|
|
|
|
page.within(first('.board .board-issue-count')) do
|
|
|
|
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
|
|
|
|
find('.board-issue-count-holder .btn').click
|
|
|
|
end
|
|
|
|
|
|
|
|
page.within(first('.board-new-issue-form')) do
|
|
|
|
find('.form-control').set('bug')
|
|
|
|
click_button 'Submit issue'
|
|
|
|
end
|
|
|
|
|
|
|
|
wait_for_vue_resource
|
|
|
|
|
|
|
|
expect(page).to have_selector('.issue-boards-sidebar')
|
|
|
|
end
|
2016-10-04 07:53:39 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
context 'unauthorized user' do
|
|
|
|
before do
|
2016-10-10 22:29:20 -04:00
|
|
|
visit namespace_project_board_path(project.namespace, project, board)
|
2016-10-04 07:53:39 -04:00
|
|
|
wait_for_vue_resource
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not display new issue button' do
|
|
|
|
expect(page).to have_selector('.board-issue-count-holder .btn', count: 0)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|