2019-09-30 08:06:01 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-02-06 08:33:18 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe SnippetsHelper do
|
2019-11-08 04:06:07 -05:00
|
|
|
include Gitlab::Routing
|
2018-02-06 08:33:18 -05:00
|
|
|
include IconsHelper
|
|
|
|
|
2019-11-08 04:06:07 -05:00
|
|
|
let_it_be(:public_personal_snippet) { create(:personal_snippet, :public) }
|
|
|
|
let_it_be(:public_project_snippet) { create(:project_snippet, :public) }
|
|
|
|
|
|
|
|
describe '#embedded_raw_snippet_button' do
|
|
|
|
subject { embedded_raw_snippet_button.to_s }
|
|
|
|
|
|
|
|
it 'returns view raw button of embedded snippets for personal snippets' do
|
2018-02-06 08:33:18 -05:00
|
|
|
@snippet = create(:personal_snippet, :public)
|
2019-11-28 10:06:57 -05:00
|
|
|
expect(subject).to eq(download_link("#{Settings.gitlab['url']}/snippets/#{@snippet.id}/raw"))
|
2019-11-08 04:06:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns view raw button of embedded snippets for project snippets' do
|
|
|
|
@snippet = create(:project_snippet, :public)
|
|
|
|
|
2019-11-28 10:06:57 -05:00
|
|
|
expect(subject).to eq(download_link("#{Settings.gitlab['url']}/#{@snippet.project.path_with_namespace}/snippets/#{@snippet.id}/raw"))
|
2019-11-08 04:06:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def download_link(url)
|
|
|
|
"<a class=\"btn\" target=\"_blank\" rel=\"noopener noreferrer\" title=\"Open raw\" href=\"#{url}\">#{external_snippet_icon('doc-code')}</a>"
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#embedded_snippet_download_button' do
|
2019-11-08 04:06:07 -05:00
|
|
|
subject { embedded_snippet_download_button }
|
|
|
|
|
|
|
|
it 'returns download button of embedded snippets for personal snippets' do
|
|
|
|
@snippet = create(:personal_snippet, :public)
|
|
|
|
|
2019-11-28 10:06:57 -05:00
|
|
|
expect(subject).to eq(download_link("#{Settings.gitlab['url']}/snippets/#{@snippet.id}/raw"))
|
2019-11-08 04:06:07 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns download button of embedded snippets for project snippets' do
|
2018-02-06 08:33:18 -05:00
|
|
|
@snippet = create(:project_snippet, :public)
|
|
|
|
|
2019-11-28 10:06:57 -05:00
|
|
|
expect(subject).to eq(download_link("#{Settings.gitlab['url']}/#{@snippet.project.path_with_namespace}/snippets/#{@snippet.id}/raw"))
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
|
|
|
|
2019-11-08 04:06:07 -05:00
|
|
|
def download_link(url)
|
|
|
|
"<a class=\"btn\" target=\"_blank\" title=\"Download\" rel=\"noopener noreferrer\" href=\"#{url}?inline=false\">#{external_snippet_icon('download')}</a>"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#snippet_embed_tag' do
|
|
|
|
subject { snippet_embed_tag(snippet) }
|
|
|
|
|
|
|
|
context 'personal snippets' do
|
|
|
|
let(:snippet) { public_personal_snippet }
|
|
|
|
|
|
|
|
context 'public' do
|
|
|
|
it 'returns a script tag with the snippet full url' do
|
2019-11-28 10:06:57 -05:00
|
|
|
expect(subject).to eq(script_embed("#{Settings.gitlab['url']}/snippets/#{snippet.id}"))
|
2019-11-08 04:06:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'project snippets' do
|
|
|
|
let(:snippet) { public_project_snippet }
|
|
|
|
|
|
|
|
it 'returns a script tag with the snippet full url' do
|
2019-11-28 10:06:57 -05:00
|
|
|
expect(subject).to eq(script_embed("#{Settings.gitlab['url']}/#{snippet.project.path_with_namespace}/snippets/#{snippet.id}"))
|
2019-11-08 04:06:07 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def script_embed(url)
|
|
|
|
"<script src=\"#{url}.js\"></script>"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#download_raw_snippet_button' do
|
|
|
|
subject { download_raw_snippet_button(snippet) }
|
|
|
|
|
|
|
|
context 'with personal snippet' do
|
|
|
|
let(:snippet) { public_personal_snippet }
|
|
|
|
|
|
|
|
it 'returns the download button' do
|
|
|
|
expect(subject).to eq(download_link("/snippets/#{snippet.id}/raw"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with project snippet' do
|
|
|
|
let(:snippet) { public_project_snippet }
|
|
|
|
|
|
|
|
it 'returns the download button' do
|
|
|
|
expect(subject).to eq(download_link("/#{snippet.project.path_with_namespace}/snippets/#{snippet.id}/raw"))
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def download_link(url)
|
|
|
|
"<a target=\"_blank\" rel=\"noopener noreferrer\" class=\"btn btn-sm has-tooltip\" title=\"Download\" data-container=\"body\" href=\"#{url}?inline=false\"><i aria-hidden=\"true\" data-hidden=\"true\" class=\"fa fa-download\"></i></a>"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
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
|
|
|
|
expect(subject).to eq "<span class=\"badge badge-gray\"><i class=\"fa fa-lock\"></i> private</span>"
|
|
|
|
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-02-06 08:33:18 -05:00
|
|
|
|
2019-11-08 04:06:07 -05:00
|
|
|
it 'does not return anything' do
|
|
|
|
expect(subject).to be_nil
|
|
|
|
end
|
2018-02-06 08:33:18 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|