create_snippet_spec.rb 2.8 KB
Newer Older
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
require 'rails_helper'

feature 'Create Snippet', :js, feature: true do
  include DropzoneHelper

  let(:user) { create(:user) }
  let(:project) { create(:project, :repository, :public) }

  def fill_form
    fill_in 'project_snippet_title', with: 'My Snippet Title'
    fill_in 'project_snippet_description', with: 'My Snippet **Description**'
    page.within('.file-editor') do
      find('.ace_editor').native.send_keys('Hello World!')
    end
  end

  context 'when a user is authenticated' do
    before do
      project.team << [user, :master]
      login_as(user)

      visit namespace_project_snippets_path(project.namespace, project)

      click_on('New snippet')
    end

    it 'creates a new snippet' do
      fill_form
      click_button('Create snippet')
30
      wait_for_requests
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46

      expect(page).to have_content('My Snippet Title')
      expect(page).to have_content('Hello World!')
      page.within('.snippet-header .description') do
        expect(page).to have_content('My Snippet Description')
        expect(page).to have_selector('strong')
      end
    end

    it 'uploads a file when dragging into textarea' do
      fill_form
      dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')

      expect(page.find_field("project_snippet_description").value).to have_content('banana_sample')

      click_button('Create snippet')
47
      wait_for_requests
48 49 50 51 52 53 54 55 56 57 58 59 60 61 62

      link = find('a.no-attachment-icon img[alt="banana_sample"]')['src']
      expect(link).to match(%r{/#{Regexp.escape(project.full_path) }/uploads/\h{32}/banana_sample\.gif\z})
    end

    it 'creates a snippet when all reuiqred fields are filled in after validation failing' do
      fill_in 'project_snippet_title', with: 'My Snippet Title'
      click_button('Create snippet')

      expect(page).to have_selector('#error_explanation')

      fill_form
      dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')

      click_button('Create snippet')
63
      wait_for_requests
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

      expect(page).to have_content('My Snippet Title')
      expect(page).to have_content('Hello World!')
      page.within('.snippet-header .description') do
        expect(page).to have_content('My Snippet Description')
        expect(page).to have_selector('strong')
      end
      link = find('a.no-attachment-icon img[alt="banana_sample"]')['src']
      expect(link).to match(%r{/#{Regexp.escape(project.full_path) }/uploads/\h{32}/banana_sample\.gif\z})
    end
  end

  context 'when a user is not authenticated' do
    it 'shows a public snippet on the index page but not the New snippet button' do
      snippet = create(:project_snippet, :public, project: project)

      visit namespace_project_snippets_path(project.namespace, project)

      expect(page).to have_content(snippet.title)
      expect(page).not_to have_content('New snippet')
    end
  end
end