gitlab-org--gitlab-foss/spec/features/snippets/notes_on_personal_snippets_...

102 lines
3.0 KiB
Ruby
Raw Normal View History

2017-04-27 10:41:26 +00:00
require 'spec_helper'
2017-05-03 08:48:01 +00:00
describe 'Comments on personal snippets', :js, feature: true do
2017-04-27 10:41:26 +00:00
let!(:user) { create(:user) }
let!(:snippet) { create(:personal_snippet, :public) }
let!(:snippet_notes) do
[
create(:note_on_personal_snippet, noteable: snippet, author: user),
create(:note_on_personal_snippet, noteable: snippet)
]
end
let!(:other_note) { create(:note_on_personal_snippet) }
before do
login_as user
visit snippet_path(snippet)
end
subject { page }
2017-05-03 08:48:01 +00:00
context 'when viewing the snippet detail page' do
2017-04-27 10:41:26 +00:00
it 'contains notes for a snippet with correct action icons' do
expect(page).to have_selector('#notes-list li', count: 2)
# comment authored by current user
page.within("#notes-list li#note_#{snippet_notes[0].id}") do
expect(page).to have_content(snippet_notes[0].note)
expect(page).to have_selector('.js-note-delete')
expect(page).to have_selector('.note-emoji-button')
end
page.within("#notes-list li#note_#{snippet_notes[1].id}") do
expect(page).to have_content(snippet_notes[1].note)
expect(page).not_to have_selector('.js-note-delete')
expect(page).to have_selector('.note-emoji-button')
end
end
end
2017-05-03 08:48:01 +00:00
context 'when submitting a note' do
it 'shows a valid form' do
is_expected.to have_css('.js-main-target-form', visible: true, count: 1)
expect(find('.js-main-target-form .js-comment-button').value).
to eq('Comment')
page.within('.js-main-target-form') do
expect(page).not_to have_link('Cancel')
end
end
it 'previews a note' do
fill_in 'note[note]', with: 'This is **awesome**!'
find('.js-md-preview-button').click
page.within('.new-note .md-preview') do
expect(page).to have_content('This is awesome!')
expect(page).to have_selector('strong')
end
end
it 'creates a note' do
fill_in 'note[note]', with: 'This is **awesome**!'
click_button 'Comment'
expect(find('div#notes')).to have_content('This is awesome!')
end
end
context 'when editing a note' do
it 'changes the text' do
page.within("#notes-list li#note_#{snippet_notes[0].id}") do
click_on 'Edit comment'
end
page.within('.current-note-edit-form') do
fill_in 'note[note]', with: 'new content'
find('.btn-save').click
end
page.within("#notes-list li#note_#{snippet_notes[0].id}") do
edited_text = find('.edited-text')
2017-05-03 08:48:01 +00:00
expect(page).to have_css('.note_edited_ago')
expect(page).to have_content('new content')
expect(edited_text).to have_selector('.note_edited_ago')
2017-05-03 08:48:01 +00:00
end
end
end
context 'when deleting a note' do
it 'removes the note from the snippet detail page' do
page.within("#notes-list li#note_#{snippet_notes[0].id}") do
click_on 'Remove comment'
end
wait_for_requests
2017-05-03 08:48:01 +00:00
expect(page).not_to have_selector("#notes-list li#note_#{snippet_notes[0].id}")
end
end
2017-04-27 10:41:26 +00:00
end