2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
require 'spec_helper'
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'User edits snippet', :js do
|
2017-09-10 17:25:29 +05:30
|
|
|
include DropzoneHelper
|
|
|
|
|
2020-04-22 19:07:51 +05:30
|
|
|
let_it_be(:file_name) { 'test.rb' }
|
|
|
|
let_it_be(:content) { 'puts "test"' }
|
2020-04-08 14:13:33 +05:30
|
|
|
let_it_be(:user) { create(:user) }
|
2020-04-22 19:07:51 +05:30
|
|
|
let_it_be(:snippet, reload: true) { create(:personal_snippet, :repository, :public, file_name: file_name, content: content, author: user) }
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
before do
|
2020-01-01 13:55:28 +05:30
|
|
|
stub_feature_flags(snippets_vue: false)
|
2020-04-22 19:07:51 +05:30
|
|
|
stub_feature_flags(snippets_edit_vue: false)
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
visit edit_snippet_path(snippet)
|
2020-04-22 19:07:51 +05:30
|
|
|
wait_for_all_requests
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays the snippet blob path and content' do
|
|
|
|
blob = snippet.blobs.first
|
|
|
|
|
|
|
|
aggregate_failures do
|
|
|
|
expect(page.find_field('personal_snippet_file_name').value).to eq blob.path
|
|
|
|
expect(page.find('.file-content')).to have_content(blob.data.strip)
|
|
|
|
expect(page.find('.snippet-file-content', visible: false).value).to eq blob.data
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
it 'updates the snippet' do
|
|
|
|
fill_in 'personal_snippet_title', with: 'New Snippet Title'
|
|
|
|
|
|
|
|
click_button('Save changes')
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
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')
|
|
|
|
expect(page.find_field('personal_snippet_description').value).to have_content('banana_sample')
|
|
|
|
|
|
|
|
click_button('Save changes')
|
|
|
|
wait_for_requests
|
|
|
|
|
2019-10-12 21:52:04 +05:30
|
|
|
link = find('a.no-attachment-icon img:not(.lazy)[alt="banana_sample"]')['src']
|
2017-09-10 17:25:29 +05:30
|
|
|
expect(link).to match(%r{/uploads/-/system/personal_snippet/#{snippet.id}/\h{32}/banana_sample\.gif\z})
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
context 'when the git operation fails' do
|
|
|
|
before do
|
|
|
|
allow_next_instance_of(Snippets::UpdateService) do |instance|
|
2020-05-24 23:13:21 +05:30
|
|
|
allow(instance).to receive(:create_commit).and_raise(StandardError, 'Error Message')
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
fill_in 'personal_snippet_title', with: 'New Snippet Title'
|
2020-05-24 23:13:21 +05:30
|
|
|
fill_in 'personal_snippet_file_name', with: 'new_file_name'
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
click_button('Save changes')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders edit page and displays the error' do
|
2020-05-24 23:13:21 +05:30
|
|
|
expect(page.find('.flash-container span').text).to eq('Error updating the snippet - Error Message')
|
2020-04-08 14:13:33 +05:30
|
|
|
expect(page).to have_content('Edit Snippet')
|
|
|
|
end
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|