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

112 lines
2.9 KiB
Ruby
Raw Normal View History

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
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' }
2020-04-08 14:13:33 +05:30
before do
2020-10-24 23:57:45 +05:30
stub_feature_flags(snippets_vue: false)
2020-04-22 19:07:51 +05:30
stub_feature_flags(snippets_edit_vue: false)
2020-10-24 23:57:45 +05:30
sign_in(user)
visit new_project_snippet_path(project)
2020-04-08 14:13:33 +05:30
end
2017-09-10 17:25:29 +05:30
2020-03-13 15:44:24 +05:30
def description_field
2020-04-08 14:13:33 +05:30
find('.js-description-input').find('input,textarea')
2020-03-13 15:44:24 +05:30
end
2017-09-10 17:25:29 +05:30
def fill_form
2020-10-24 23:57:45 +05:30
fill_in 'project_snippet_title', with: title
2020-03-13 15:44:24 +05:30
# Click placeholder first to expand full description field
description_field.click
2020-10-24 23:57:45 +05:30
fill_in 'project_snippet_description', with: md_description
2020-03-13 15:44:24 +05:30
2017-09-10 17:25:29 +05:30
page.within('.file-editor') do
2020-05-24 23:13:21 +05:30
el = find('.inputarea')
2020-10-24 23:57:45 +05:30
el.send_keys file_content
2017-09-10 17:25:29 +05:30
end
end
2020-10-24 23:57:45 +05:30
it 'shows collapsible description input' do
collapsed = description_field
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
expect(page).not_to have_field('project_snippet_description')
expect(collapsed).to be_visible
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
collapsed.click
2020-03-13 15:44:24 +05:30
2020-10-24 23:57:45 +05:30
expect(page).to have_field('project_snippet_description')
expect(collapsed).not_to be_visible
end
2020-03-13 15:44:24 +05:30
2020-10-24 23:57:45 +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
2020-10-24 23:57:45 +05:30
expect(page).to have_content(title)
expect(page).to have_content(file_content)
page.within('.snippet-header .description') do
expect(page).to have_content(description)
expect(page).to have_selector('strong')
2020-03-13 15:44:24 +05:30
end
2020-10-24 23:57:45 +05:30
end
2020-03-13 15:44:24 +05:30
2020-10-24 23:57:45 +05:30
it 'uploads a file when dragging into textarea' do
fill_form
dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
expect(page.find_field('project_snippet_description').value).to have_content('banana_sample')
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
click_button('Create snippet')
wait_for_requests
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
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
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
it 'displays validation errors' do
fill_in 'project_snippet_title', with: title
click_button('Create snippet')
wait_for_requests
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
expect(page).to have_selector('#error_explanation')
end
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
context 'when the git operation fails' do
let(:error) { 'Error creating the snippet' }
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +05:30
before do
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
fill_form
2020-10-24 23:57:45 +05:30
click_button('Create snippet')
2017-09-10 17:25:29 +05:30
wait_for_requests
2020-04-08 14:13:33 +05:30
end
2017-09-10 17:25:29 +05:30
2020-10-24 23:57:45 +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')
2017-09-10 17:25:29 +05:30
end
end
end