summaryrefslogtreecommitdiff
path: root/spec/features/projects/snippets/user_updates_snippet_spec.rb
blob: bad3fde8a4a7cf4eb0e045d8d95c6ea4263bfd23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# frozen_string_literal: true

require 'spec_helper'

describe 'Projects > Snippets > User updates a snippet', :js do
  let_it_be(:user) { create(:user) }
  let_it_be(:project) { create(:project, namespace: user.namespace) }
  let_it_be(:snippet, reload: true) { create(:project_snippet, :repository, project: project, author: user) }

  let(:version_snippet_enabled) { true }

  before do
    stub_feature_flags(snippets_vue: false)
    stub_feature_flags(version_snippets: version_snippet_enabled)

    project.add_maintainer(user)
    sign_in(user)

    visit(project_snippet_path(project, snippet))

    page.within('.detail-page-header') do
      first(:link, 'Edit').click
    end
    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('project_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

  context 'when feature flag :version_snippets is disabled' do
    let(:version_snippet_enabled) { false }

    it 'displays the snippet file_name and content' do
      aggregate_failures do
        expect(page.find_field('project_snippet_file_name').value).to eq snippet.file_name
        expect(page.find('.file-content')).to have_content(snippet.content)
        expect(page.find('.snippet-file-content', visible: false).value).to eq snippet.content
      end
    end
  end

  it 'updates a snippet' do
    fill_in('project_snippet_title', with: 'Snippet new title')
    click_button('Save')

    expect(page).to have_content('Snippet new title')
  end

  context 'when the git operation fails' do
    before do
      allow_next_instance_of(Snippets::UpdateService) do |instance|
        allow(instance).to receive(:create_commit).and_raise(StandardError)
      end

      fill_in('project_snippet_title', with: 'Snippet new title')

      click_button('Save')
    end

    it 'renders edit page and displays the error' do
      expect(page.find('.flash-container span').text).to eq('Error updating the snippet')
      expect(page).to have_content('Edit Snippet')
    end
  end
end