debian-mirror-gitlab/spec/helpers/snippets_helper_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

143 lines
4.4 KiB
Ruby
Raw Normal View History

2019-12-21 20:55:43 +05:30
# frozen_string_literal: true
2018-10-15 14:42:47 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe SnippetsHelper do
2019-12-26 22:10:19 +05:30
include Gitlab::Routing
2018-10-15 14:42:47 +05:30
include IconsHelper
2022-03-02 08:16:31 +05:30
include BadgesHelper
2018-10-15 14:42:47 +05:30
2020-10-24 23:57:45 +05:30
let_it_be(:public_personal_snippet) { create(:personal_snippet, :public, :repository) }
let_it_be(:public_project_snippet) { create(:project_snippet, :public, :repository) }
2019-12-26 22:10:19 +05:30
describe '#embedded_raw_snippet_button' do
2020-10-24 23:57:45 +05:30
let(:blob) { snippet.blobs.first }
let(:ref) { blob.repository.root_ref }
2019-12-26 22:10:19 +05:30
2020-10-24 23:57:45 +05:30
subject { embedded_raw_snippet_button(snippet, blob) }
context 'for Personal Snippets' do
let(:snippet) { public_personal_snippet }
it 'returns view raw button of embedded snippets' do
expect(subject).to eq(download_link("http://test.host/-/snippets/#{snippet.id}/raw/#{ref}/#{blob.path}"))
end
2019-12-26 22:10:19 +05:30
end
2020-10-24 23:57:45 +05:30
context 'for Project Snippets' do
let(:snippet) { public_project_snippet }
2019-12-26 22:10:19 +05:30
2020-10-24 23:57:45 +05:30
it 'returns view raw button of embedded snippets' do
expect(subject).to eq(download_link("http://test.host/#{snippet.project.path_with_namespace}/-/snippets/#{snippet.id}/raw/#{ref}/#{blob.path}"))
end
2019-12-26 22:10:19 +05:30
end
def download_link(url)
2021-04-29 21:17:54 +05:30
"<a class=\"gl-button btn btn-default\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Open raw\" href=\"#{url}\">#{external_snippet_icon('doc-code')}</a>"
2018-10-15 14:42:47 +05:30
end
end
describe '#embedded_snippet_download_button' do
2020-10-24 23:57:45 +05:30
let(:blob) { snippet.blobs.first }
let(:ref) { blob.repository.root_ref }
2019-12-26 22:10:19 +05:30
2020-10-24 23:57:45 +05:30
subject { embedded_snippet_download_button(snippet, blob) }
2019-12-26 22:10:19 +05:30
2020-10-24 23:57:45 +05:30
context 'for Personal Snippets' do
let(:snippet) { public_personal_snippet }
it 'returns download button of embedded snippets' do
expect(subject).to eq(download_link("http://test.host/-/snippets/#{snippet.id}/raw/#{ref}/#{blob.path}"))
end
2019-12-26 22:10:19 +05:30
end
2020-10-24 23:57:45 +05:30
context 'for Project Snippets' do
let(:snippet) { public_project_snippet }
2018-10-15 14:42:47 +05:30
2020-10-24 23:57:45 +05:30
it 'returns download button of embedded snippets' do
expect(subject).to eq(download_link("http://test.host/#{snippet.project.path_with_namespace}/-/snippets/#{snippet.id}/raw/#{ref}/#{blob.path}"))
end
2018-10-15 14:42:47 +05:30
end
2019-12-26 22:10:19 +05:30
def download_link(url)
2021-04-29 21:17:54 +05:30
"<a class=\"gl-button btn btn-default\" target=\"_blank\" title=\"Download\" rel=\"noopener noreferrer\" href=\"#{url}?inline=false\">#{external_snippet_icon('download')}</a>"
2019-12-26 22:10:19 +05:30
end
end
2022-07-23 23:45:48 +05:30
describe '#embedded_snippet_copy_button' do
let(:blob) { snippet.blobs.first }
let(:ref) { blob.repository.root_ref }
subject { embedded_copy_snippet_button(blob) }
context 'for Personal Snippets' do
let(:snippet) { public_personal_snippet }
it 'returns copy button of embedded snippets' do
2023-01-13 00:05:48 +05:30
expect(subject).to eq(copy_button(blob.id.to_s))
2022-07-23 23:45:48 +05:30
end
end
context 'for Project Snippets' do
let(:snippet) { public_project_snippet }
it 'returns copy button of embedded snippets' do
2023-01-13 00:05:48 +05:30
expect(subject).to eq(copy_button(blob.id.to_s))
2022-07-23 23:45:48 +05:30
end
end
def copy_button(blob_id)
"<button class=\"gl-button btn btn-default copy-to-clipboard-btn\" title=\"Copy snippet contents\" onclick=\"copyToClipboard(&#39;.blob-content[data-blob-id=&quot;#{blob_id}&quot;] &gt; pre&#39;)\">#{external_snippet_icon('copy-to-clipboard')}</button>"
end
end
2019-12-26 22:10:19 +05:30
describe '#snippet_badge' do
let(:snippet) { build(:personal_snippet, visibility) }
subject { snippet_badge(snippet) }
context 'when snippet is private' do
let(:visibility) { :private }
it 'returns the snippet badge' do
2022-03-02 08:16:31 +05:30
expect(subject).to eq gl_badge_tag('private', icon: 'lock')
2019-12-26 22:10:19 +05:30
end
end
context 'when snippet is public' do
let(:visibility) { :public }
it 'does not return anything' do
expect(subject).to be_nil
end
end
context 'when snippet is internal' do
let(:visibility) { :internal }
2018-10-15 14:42:47 +05:30
2019-12-26 22:10:19 +05:30
it 'does not return anything' do
expect(subject).to be_nil
end
2018-10-15 14:42:47 +05:30
end
end
2021-10-27 15:23:28 +05:30
describe '#snippet_report_abuse_path' do
let(:snippet) { public_personal_snippet }
let(:current_user) { create(:user) }
subject { snippet_report_abuse_path(snippet) }
it 'returns false if the user cannot submit the snippet as spam' do
allow(snippet).to receive(:submittable_as_spam_by?).and_return(false)
expect(subject).to be_falsey
end
it 'returns true if the user can submit the snippet as spam' do
allow(snippet).to receive(:submittable_as_spam_by?).and_return(true)
expect(subject).to be_truthy
end
end
2018-10-15 14:42:47 +05:30
end