2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-03 11:26:49 -04:00
|
|
|
require 'rails_helper'
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
describe 'User edits snippet', :js do
|
2017-05-03 11:26:49 -04:00
|
|
|
include DropzoneHelper
|
|
|
|
|
|
|
|
let(:file_name) { 'test.rb' }
|
|
|
|
let(:content) { 'puts "test"' }
|
|
|
|
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
let(:snippet) { create(:personal_snippet, :public, file_name: file_name, content: content, author: user) }
|
|
|
|
|
|
|
|
before do
|
2017-06-22 10:43:52 -04:00
|
|
|
sign_in(user)
|
2017-05-03 11:26:49 -04:00
|
|
|
|
|
|
|
visit edit_snippet_path(snippet)
|
2017-05-29 03:54:35 -04:00
|
|
|
wait_for_requests
|
2017-05-03 11:26:49 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the snippet' do
|
|
|
|
fill_in 'personal_snippet_title', with: 'New Snippet Title'
|
|
|
|
|
|
|
|
click_button('Save changes')
|
2017-05-29 03:54:35 -04:00
|
|
|
wait_for_requests
|
2017-05-03 11:26:49 -04:00
|
|
|
|
|
|
|
expect(page).to have_content('New Snippet Title')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the snippet with files attached' do
|
|
|
|
dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')
|
2017-06-22 10:43:52 -04:00
|
|
|
expect(page.find_field('personal_snippet_description').value).to have_content('banana_sample')
|
2017-05-03 11:26:49 -04:00
|
|
|
|
|
|
|
click_button('Save changes')
|
2017-05-29 03:54:35 -04:00
|
|
|
wait_for_requests
|
2017-05-03 11:26:49 -04:00
|
|
|
|
2019-08-04 23:16:25 -04:00
|
|
|
link = find('a.no-attachment-icon img:not(.lazy)[alt="banana_sample"]')['src']
|
2017-08-07 13:43:11 -04:00
|
|
|
expect(link).to match(%r{/uploads/-/system/personal_snippet/#{snippet.id}/\h{32}/banana_sample\.gif\z})
|
2017-05-03 11:26:49 -04:00
|
|
|
end
|
2017-06-22 10:43:52 -04:00
|
|
|
|
|
|
|
it 'updates the snippet to make it internal' do
|
|
|
|
choose 'Internal'
|
|
|
|
|
|
|
|
click_button 'Save changes'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_no_xpath("//i[@class='fa fa-lock']")
|
|
|
|
expect(page).to have_xpath("//i[@class='fa fa-shield']")
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'updates the snippet to make it public' do
|
|
|
|
choose 'Public'
|
|
|
|
|
|
|
|
click_button 'Save changes'
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_no_xpath("//i[@class='fa fa-lock']")
|
|
|
|
expect(page).to have_xpath("//i[@class='fa fa-globe']")
|
|
|
|
end
|
2017-05-03 11:26:49 -04:00
|
|
|
end
|