2019-07-25 01:24:42 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-08-29 03:56:52 -04:00
|
|
|
require 'spec_helper'
|
2016-11-28 07:03:31 -05:00
|
|
|
|
2020-07-30 17:09:35 -04:00
|
|
|
RSpec.describe 'User creates snippet', :js do
|
|
|
|
include DropzoneHelper
|
2020-09-17 08:09:37 -04:00
|
|
|
include Spec::Support::Helpers::Features::SnippetSpecHelpers
|
2020-07-30 17:09:35 -04:00
|
|
|
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
|
|
|
|
let(:title) { 'My Snippet Title' }
|
|
|
|
let(:file_content) { 'Hello World!' }
|
|
|
|
let(:md_description) { 'My Snippet **Description**' }
|
|
|
|
let(:description) { 'My Snippet Description' }
|
|
|
|
let(:created_snippet) { Snippet.last }
|
2020-10-06 17:09:22 -04:00
|
|
|
let(:snippet_title_field) { 'snippet-title' }
|
2016-11-28 07:03:31 -05:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
|
|
|
|
visit new_snippet_path
|
2020-02-13 10:08:52 -05:00
|
|
|
end
|
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
def fill_form
|
|
|
|
snippet_fill_in_form(title: title, content: file_content, description: md_description)
|
|
|
|
end
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
it 'Authenticated user creates a snippet' do
|
|
|
|
fill_form
|
2017-05-03 11:26:49 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
click_button('Create snippet')
|
|
|
|
wait_for_requests
|
2016-11-28 07:03:31 -05:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
expect(page).to have_content(title)
|
|
|
|
page.within(snippet_description_view_selector) do
|
|
|
|
expect(page).to have_content(description)
|
|
|
|
expect(page).to have_selector('strong')
|
2017-05-03 11:26:49 -04:00
|
|
|
end
|
2020-10-06 17:09:22 -04:00
|
|
|
expect(page).to have_content(file_content)
|
|
|
|
end
|
2017-05-03 11:26:49 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
it 'uploads a file when dragging into textarea' do
|
|
|
|
fill_form
|
|
|
|
dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')
|
2017-05-29 03:54:35 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
expect(snippet_description_value).to have_content('banana_sample')
|
2017-05-29 03:54:35 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
click_button('Create snippet')
|
|
|
|
wait_for_requests
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
link = find('a.no-attachment-icon img.js-lazy-loaded[alt="banana_sample"]')['src']
|
|
|
|
expect(link).to match(%r{/uploads/-/system/personal_snippet/#{Snippet.last.id}/\h{32}/banana_sample\.gif\z})
|
2017-05-03 11:26:49 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
reqs = inspect_requests { visit("#{link}?ran=#{SecureRandom.base64(20)}") }
|
|
|
|
expect(reqs.first.status_code).to eq(200)
|
|
|
|
end
|
2020-09-17 08:09:37 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
context 'when the git operation fails' do
|
|
|
|
let(:error) { 'Error creating the snippet' }
|
2017-05-03 11:26:49 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
before do
|
|
|
|
allow_next_instance_of(Snippets::CreateService) do |instance|
|
|
|
|
allow(instance).to receive(:create_commit).and_raise(StandardError, error)
|
2020-09-17 08:09:37 -04:00
|
|
|
end
|
2017-05-03 11:26:49 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
fill_form
|
|
|
|
click_button('Create snippet')
|
|
|
|
wait_for_requests
|
2020-09-17 08:09:37 -04:00
|
|
|
end
|
2020-03-10 08:08:16 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
it 'renders the new page and displays the error' do
|
|
|
|
expect(page).to have_content(error)
|
|
|
|
expect(page).to have_content('New Snippet')
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
action = find('form.snippet-form')['action']
|
|
|
|
expect(action).to include("/snippets")
|
2020-03-10 08:08:16 -04:00
|
|
|
end
|
2020-09-17 08:09:37 -04:00
|
|
|
end
|
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
context 'when snippets default visibility level is restricted' do
|
2020-09-17 08:09:37 -04:00
|
|
|
before do
|
2020-10-06 17:09:22 -04:00
|
|
|
stub_application_setting(restricted_visibility_levels: [Gitlab::VisibilityLevel::PRIVATE],
|
|
|
|
default_snippet_visibility: Gitlab::VisibilityLevel::PRIVATE)
|
2020-03-26 20:08:09 -04:00
|
|
|
end
|
2020-03-10 08:08:16 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
it 'creates a snippet using the lowest available visibility level as default' do
|
|
|
|
visit new_snippet_path
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
fill_form
|
2017-05-03 11:26:49 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
click_button('Create snippet')
|
|
|
|
wait_for_requests
|
2020-09-17 08:09:37 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
expect(find('.blob-content')).to have_content(file_content)
|
|
|
|
expect(Snippet.last.visibility_level).to eq(Gitlab::VisibilityLevel::INTERNAL)
|
2020-09-17 08:09:37 -04:00
|
|
|
end
|
2017-01-15 03:48:35 -05:00
|
|
|
end
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
it_behaves_like 'personal snippet with references' do
|
|
|
|
let(:container) { snippet_description_view_selector }
|
|
|
|
let(:md_description) { references }
|
2020-09-17 08:09:37 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
subject do
|
|
|
|
fill_form
|
|
|
|
click_button('Create snippet')
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
wait_for_requests
|
2020-09-17 08:09:37 -04:00
|
|
|
end
|
2020-10-06 17:09:22 -04:00
|
|
|
end
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
it 'validation fails for the first time' do
|
|
|
|
fill_in snippet_title_field, with: title
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
expect(page).not_to have_button('Create snippet')
|
2020-05-26 17:07:45 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
snippet_fill_in_form(title: title, content: file_content)
|
|
|
|
expect(page).to have_button('Create snippet')
|
|
|
|
end
|
2020-08-14 11:10:05 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
it 'previews a snippet with file' do
|
|
|
|
# Click placeholder first to expand full description field
|
|
|
|
snippet_fill_in_description('My Snippet')
|
|
|
|
dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')
|
|
|
|
find('.js-md-preview-button').click
|
2020-08-14 11:10:05 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
page.within('.md-preview-holder') do
|
|
|
|
expect(page).to have_content('My Snippet')
|
2020-08-14 11:10:05 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
link = find('a.no-attachment-icon img.js-lazy-loaded[alt="banana_sample"]')['src']
|
|
|
|
expect(link).to match(%r{/uploads/-/system/user/#{user.id}/\h{32}/banana_sample\.gif\z})
|
2020-09-17 08:09:37 -04:00
|
|
|
|
2020-10-06 17:09:22 -04:00
|
|
|
# Adds a cache buster for checking if the image exists as Selenium is now handling the cached requests
|
|
|
|
# not anymore as requests when they come straight from memory cache.
|
|
|
|
# accept_confirm is needed because of https://gitlab.com/gitlab-org/gitlab/-/issues/262102
|
|
|
|
reqs = inspect_requests { accept_confirm { visit("#{link}?ran=#{SecureRandom.base64(20)}") } }
|
|
|
|
expect(reqs.first.status_code).to eq(200)
|
2020-08-14 11:10:05 -04:00
|
|
|
end
|
|
|
|
end
|
2016-11-28 07:03:31 -05:00
|
|
|
end
|