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
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
describe 'User creates snippet', :js do
|
2017-05-03 11:26:49 -04:00
|
|
|
include DropzoneHelper
|
|
|
|
|
2017-06-22 10:43:52 -04:00
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
2016-11-28 07:03:31 -05:00
|
|
|
before do
|
2017-06-22 10:43:52 -04:00
|
|
|
sign_in(user)
|
2016-11-28 07:03:31 -05:00
|
|
|
visit new_snippet_path
|
|
|
|
end
|
|
|
|
|
2017-05-03 11:26:49 -04:00
|
|
|
def fill_form
|
2016-11-28 07:03:31 -05:00
|
|
|
fill_in 'personal_snippet_title', with: 'My Snippet Title'
|
2017-05-03 11:26:49 -04:00
|
|
|
fill_in 'personal_snippet_description', with: 'My Snippet **Description**'
|
2016-11-28 07:03:31 -05:00
|
|
|
page.within('.file-editor') do
|
2017-09-27 14:13:07 -04:00
|
|
|
find('.ace_text-input', visible: false).send_keys 'Hello World!'
|
2016-11-28 07:03:31 -05:00
|
|
|
end
|
2017-05-03 11:26:49 -04:00
|
|
|
end
|
2016-11-28 07:03:31 -05:00
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
it 'Authenticated user creates a snippet' do
|
2017-05-03 11:26:49 -04:00
|
|
|
fill_form
|
|
|
|
|
|
|
|
click_button('Create snippet')
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2016-11-28 07:03:31 -05:00
|
|
|
|
|
|
|
expect(page).to have_content('My Snippet Title')
|
2017-05-03 11:26:49 -04:00
|
|
|
page.within('.snippet-header .description') do
|
|
|
|
expect(page).to have_content('My Snippet Description')
|
|
|
|
expect(page).to have_selector('strong')
|
|
|
|
end
|
|
|
|
expect(page).to have_content('Hello World!')
|
|
|
|
end
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
it 'previews a snippet with file' do
|
2017-05-29 03:54:35 -04:00
|
|
|
fill_in 'personal_snippet_description', with: 'My Snippet'
|
|
|
|
dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')
|
|
|
|
find('.js-md-preview-button').click
|
|
|
|
|
2019-03-23 09:19:36 -04:00
|
|
|
page.within('#new_personal_snippet .md-preview-holder') do
|
2017-05-29 03:54:35 -04:00
|
|
|
expect(page).to have_content('My Snippet')
|
|
|
|
|
|
|
|
link = find('a.no-attachment-icon img[alt="banana_sample"]')['src']
|
2019-06-04 19:50:57 -04:00
|
|
|
expect(link).to match(%r{/uploads/-/system/user/#{user.id}/\h{32}/banana_sample\.gif\z})
|
2017-05-29 03:54:35 -04:00
|
|
|
|
2019-10-14 11:06:07 -04:00
|
|
|
# Adds a cache buster for checking if the image exists as Selenium is now handling the cached regquests
|
|
|
|
# not anymore as requests when they come straight from memory cache.
|
|
|
|
reqs = inspect_requests { visit("#{link}?ran=#{SecureRandom.base64(20)}") }
|
2017-10-26 12:48:29 -04:00
|
|
|
expect(reqs.first.status_code).to eq(200)
|
2017-05-29 03:54:35 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
it 'uploads a file when dragging into textarea' do
|
2017-05-03 11:26:49 -04:00
|
|
|
fill_form
|
|
|
|
|
|
|
|
dropzone_file Rails.root.join('spec', 'fixtures', 'banana_sample.gif')
|
|
|
|
|
|
|
|
expect(page.find_field("personal_snippet_description").value).to have_content('banana_sample')
|
|
|
|
|
|
|
|
click_button('Create snippet')
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
link = find('a.no-attachment-icon img[alt="banana_sample"]')['src']
|
2017-08-07 13:43:11 -04:00
|
|
|
expect(link).to match(%r{/uploads/-/system/personal_snippet/#{Snippet.last.id}/\h{32}/banana_sample\.gif\z})
|
2017-05-29 03:54:35 -04:00
|
|
|
|
2019-10-14 11:06:07 -04:00
|
|
|
reqs = inspect_requests { visit("#{link}?ran=#{SecureRandom.base64(20)}") }
|
2017-10-26 12:48:29 -04:00
|
|
|
expect(reqs.first.status_code).to eq(200)
|
2017-05-03 11:26:49 -04:00
|
|
|
end
|
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
it 'validation fails for the first time' do
|
2017-05-03 11:26:49 -04:00
|
|
|
fill_in 'personal_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')
|
|
|
|
wait_for_requests
|
|
|
|
|
|
|
|
expect(page).to have_content('My Snippet Title')
|
|
|
|
page.within('.snippet-header .description') do
|
|
|
|
expect(page).to have_content('My Snippet Description')
|
|
|
|
expect(page).to have_selector('strong')
|
|
|
|
end
|
2016-11-28 07:03:31 -05:00
|
|
|
expect(page).to have_content('Hello World!')
|
2017-05-03 11:26:49 -04:00
|
|
|
link = find('a.no-attachment-icon img[alt="banana_sample"]')['src']
|
2017-08-07 13:43:11 -04:00
|
|
|
expect(link).to match(%r{/uploads/-/system/personal_snippet/#{Snippet.last.id}/\h{32}/banana_sample\.gif\z})
|
2017-05-29 03:54:35 -04:00
|
|
|
|
2019-10-14 11:06:07 -04:00
|
|
|
reqs = inspect_requests { visit("#{link}?ran=#{SecureRandom.base64(20)}") }
|
2017-10-26 12:48:29 -04:00
|
|
|
expect(reqs.first.status_code).to eq(200)
|
2016-11-28 07:03:31 -05:00
|
|
|
end
|
2017-01-15 03:48:35 -05:00
|
|
|
|
2018-07-05 02:32:05 -04:00
|
|
|
it 'Authenticated user creates a snippet with + in filename' do
|
2017-01-15 03:48:35 -05:00
|
|
|
fill_in 'personal_snippet_title', with: 'My Snippet Title'
|
|
|
|
page.within('.file-editor') do
|
|
|
|
find(:xpath, "//input[@id='personal_snippet_file_name']").set 'snippet+file+name'
|
2017-09-27 14:13:07 -04:00
|
|
|
find('.ace_text-input', visible: false).send_keys 'Hello World!'
|
2017-01-15 03:48:35 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
click_button 'Create snippet'
|
2017-05-17 14:25:13 -04:00
|
|
|
wait_for_requests
|
2017-01-15 03:48:35 -05:00
|
|
|
|
|
|
|
expect(page).to have_content('My Snippet Title')
|
|
|
|
expect(page).to have_content('snippet+file+name')
|
|
|
|
expect(page).to have_content('Hello World!')
|
|
|
|
end
|
2016-11-28 07:03:31 -05:00
|
|
|
end
|