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-10-24 23:57:45 +05:30
|
|
|
RSpec.describe 'Projects > Snippets > Create Snippet', :js do
|
|
|
|
include DropzoneHelper
|
2020-11-24 15:15:51 +05:30
|
|
|
include Spec::Support::Helpers::Features::SnippetSpecHelpers
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:project) do
|
|
|
|
create(:project, :public, creator: user).tap do |p|
|
|
|
|
p.add_maintainer(user)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
let(:title) { 'My Snippet Title' }
|
|
|
|
let(:file_content) { 'Hello World!' }
|
|
|
|
let(:md_description) { 'My Snippet **Description**' }
|
|
|
|
let(:description) { 'My Snippet Description' }
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
def fill_form
|
|
|
|
snippet_fill_in_form(title: title, content: file_content, description: md_description)
|
|
|
|
end
|
2020-10-24 23:57:45 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
before do
|
|
|
|
sign_in(user)
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
visit new_project_snippet_path(project)
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'shows collapsible description input' do
|
|
|
|
collapsed = snippet_description_field_collapsed
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(page).not_to have_field(snippet_description_locator)
|
|
|
|
expect(collapsed).to be_visible
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
collapsed.click
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(page).to have_field(snippet_description_locator)
|
|
|
|
expect(collapsed).not_to be_visible
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'creates a new snippet' do
|
|
|
|
fill_form
|
|
|
|
click_button('Create snippet')
|
|
|
|
wait_for_requests
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(page).to have_content(title)
|
|
|
|
expect(page).to have_content(file_content)
|
|
|
|
page.within('.snippet-header .snippet-description') do
|
|
|
|
expect(page).to have_content(description)
|
|
|
|
expect(page).to have_selector('strong')
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'uploads a file when dragging into textarea' do
|
|
|
|
fill_form
|
|
|
|
dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(snippet_description_value).to have_content('banana_sample')
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
click_button('Create snippet')
|
|
|
|
wait_for_requests
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
link = find('a.no-attachment-icon img.js-lazy-loaded[alt="banana_sample"]')['src']
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(link).to match(%r{/#{Regexp.escape(project.full_path)}/uploads/\h{32}/banana_sample\.gif\z})
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
context 'when the git operation fails' do
|
|
|
|
let(:error) { 'Error creating the snippet' }
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2020-11-24 15:15:51 +05:30
|
|
|
before do
|
2021-01-03 14:25:43 +05:30
|
|
|
allow_next_instance_of(Snippets::CreateService) do |instance|
|
|
|
|
allow(instance).to receive(:create_commit).and_raise(StandardError, error)
|
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
fill_form
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
click_button('Create snippet')
|
|
|
|
wait_for_requests
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'renders the new page and displays the error' do
|
|
|
|
expect(page).to have_content(error)
|
|
|
|
expect(page).to have_content('New Snippet')
|
2020-11-24 15:15:51 +05:30
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
end
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'does not allow submitting the form without title and content' do
|
|
|
|
snippet_fill_in_title(title)
|
2020-11-24 15:15:51 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(page).not_to have_button('Create snippet')
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
snippet_fill_in_form(title: title, content: file_content)
|
|
|
|
expect(page).to have_button('Create snippet')
|
2017-09-10 17:25:29 +05:30
|
|
|
end
|
|
|
|
end
|