debian-mirror-gitlab/spec/features/projects/snippets/user_updates_snippet_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

54 lines
1.5 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2020-06-23 00:09:42 +05:30
RSpec.describe 'Projects > Snippets > User updates a snippet', :js do
2020-11-24 15:15:51 +05:30
include Spec::Support::Helpers::Features::SnippetSpecHelpers
2020-04-08 14:13:33 +05:30
let_it_be(:user) { create(:user) }
let_it_be(:project) { create(:project, namespace: user.namespace) }
2020-04-22 19:07:51 +05:30
let_it_be(:snippet, reload: true) { create(:project_snippet, :repository, project: project, author: user) }
2021-01-03 14:25:43 +05:30
before do
2018-11-18 11:00:15 +05:30
project.add_maintainer(user)
2018-03-17 18:26:18 +05:30
sign_in(user)
2020-11-24 15:15:51 +05:30
page.visit(edit_project_snippet_path(project, snippet))
2018-03-17 18:26:18 +05:30
2020-04-22 19:07:51 +05:30
wait_for_all_requests
end
2021-01-03 14:25:43 +05:30
it 'displays the snippet blob path and content' do
blob = snippet.blobs.first
2020-11-24 15:15:51 +05:30
2021-01-03 14:25:43 +05:30
aggregate_failures do
expect(snippet_get_first_blob_path).to eq blob.path
expect(snippet_get_first_blob_value).to have_content(blob.data.strip)
2020-11-24 15:15:51 +05:30
end
2018-03-17 18:26:18 +05:30
end
2020-04-08 14:13:33 +05:30
2021-01-03 14:25:43 +05:30
it 'updates a snippet' do
fill_in('snippet-title', with: 'Snippet new title')
click_button('Save')
2020-04-08 14:13:33 +05:30
2021-01-03 14:25:43 +05:30
expect(page).to have_content('Snippet new title')
2020-11-24 15:15:51 +05:30
end
2020-04-08 14:13:33 +05:30
2021-01-03 14:25:43 +05:30
context 'when the git operation fails' do
2020-11-24 15:15:51 +05:30
before do
2021-01-03 14:25:43 +05:30
allow_next_instance_of(Snippets::UpdateService) do |instance|
allow(instance).to receive(:create_commit).and_raise(StandardError, 'Error Message')
end
2020-11-24 15:15:51 +05:30
2021-01-03 14:25:43 +05:30
snippet_fill_in_form(title: 'Snippet new title', file_name: 'new_file_name')
click_button('Save')
2020-04-08 14:13:33 +05:30
end
2021-01-03 14:25:43 +05:30
it 'renders edit page and displays the error' do
expect(page.find('.flash-container')).to have_content('Error updating the snippet - Error Message')
expect(page).to have_content('Edit Snippet')
2020-04-08 14:13:33 +05:30
end
end
2018-03-17 18:26:18 +05:30
end