2020-03-13 15:44:24 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
RSpec.describe SnippetBlobPresenter do
|
2021-01-03 14:25:43 +05:30
|
|
|
let_it_be(:snippet) { create(:personal_snippet, :repository) }
|
|
|
|
|
|
|
|
let(:branch) { snippet.default_branch }
|
|
|
|
let(:blob) { snippet.blobs.first }
|
|
|
|
|
2020-03-13 15:44:24 +05:30
|
|
|
describe '#rich_data' do
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:data_endpoint_url) { "/-/snippets/#{snippet.id}/raw/#{branch}/#{file}" }
|
2021-11-11 11:23:49 +05:30
|
|
|
let(:data_raw_dir) { "/-/snippets/#{snippet.id}/raw/#{branch}/" }
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
before do
|
|
|
|
allow_next_instance_of(described_class) do |instance|
|
|
|
|
allow(instance).to receive(:current_user).and_return(nil)
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
blob.name = File.basename(file)
|
|
|
|
blob.path = file
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
subject { described_class.new(blob).rich_data }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
context 'with PersonalSnippet' do
|
2020-10-24 23:57:45 +05:30
|
|
|
context 'when blob is binary' do
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:file) { 'files/images/logo-black.png' }
|
|
|
|
let(:blob) { blob_at(file) }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'returns the HTML associated with the binary' do
|
2020-10-24 23:57:45 +05:30
|
|
|
expect(subject).to include('file-content image_file')
|
|
|
|
end
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
context 'with markdown format' do
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:file) { 'README.md' }
|
|
|
|
let(:blob) { blob_at(file) }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
it 'returns rich markdown content' do
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(subject).to include('file-content md')
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
context 'with notebook format' do
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:file) { 'test.ipynb' }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2020-04-08 14:13:33 +05:30
|
|
|
it 'returns rich notebook content' do
|
2021-11-11 11:23:49 +05:30
|
|
|
expect(subject.strip).to eq %Q(<div class="file-content" data-endpoint="#{data_endpoint_url}" data-relative-raw-path="#{data_raw_dir}" id="js-notebook-viewer"></div>)
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with openapi format' do
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:file) { 'openapi.yml' }
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
it 'returns rich openapi content' do
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(subject).to eq %Q(<div class="file-content" data-endpoint="#{data_endpoint_url}" id="js-openapi-viewer"></div>\n)
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with svg format' do
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:file) { 'files/images/wm.svg' }
|
|
|
|
let(:blob) { blob_at(file) }
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
it 'returns rich svg content' do
|
|
|
|
result = Nokogiri::HTML::DocumentFragment.parse(subject)
|
|
|
|
image_tag = result.search('img').first
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
expect(image_tag.attr('src')).to include("data:#{blob.mime_type};base64")
|
|
|
|
expect(image_tag.attr('alt')).to eq(File.basename(file))
|
2020-04-08 14:13:33 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with other format' do
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:file) { 'test' }
|
2020-04-08 14:13:33 +05:30
|
|
|
|
|
|
|
it 'does not return no rich content' do
|
|
|
|
expect(subject).to be_nil
|
|
|
|
end
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
describe 'route helpers' do
|
2020-07-28 23:09:34 +05:30
|
|
|
let_it_be(:project) { create(:project) }
|
|
|
|
let_it_be(:user) { create(:user) }
|
|
|
|
let_it_be(:personal_snippet) { create(:personal_snippet, :repository, author: user) }
|
|
|
|
let_it_be(:project_snippet) { create(:project_snippet, :repository, project: project, author: user) }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
let(:blob) { snippet.blobs.first }
|
|
|
|
|
2020-07-28 23:09:34 +05:30
|
|
|
before do
|
|
|
|
project.add_developer(user)
|
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
describe '#raw_path' do
|
2021-01-03 14:25:43 +05:30
|
|
|
subject { described_class.new(blob, current_user: user).raw_path }
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
it_behaves_like 'snippet blob raw path'
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
context 'with a snippet without a repository' do
|
|
|
|
let(:personal_snippet) { build(:personal_snippet, author: user, id: 1) }
|
|
|
|
let(:project_snippet) { build(:project_snippet, project: project, author: user, id: 1) }
|
|
|
|
let(:blob) { snippet.blob }
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
context 'with ProjectSnippet' do
|
|
|
|
let(:snippet) { project_snippet }
|
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'returns the raw project snippet path' do
|
|
|
|
expect(subject).to eq("/#{project_snippet.project.full_path}/-/snippets/#{project_snippet.id}/raw")
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with PersonalSnippet' do
|
|
|
|
let(:snippet) { personal_snippet }
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
it 'returns the raw personal snippet path' do
|
|
|
|
expect(subject).to eq("/-/snippets/#{personal_snippet.id}/raw")
|
2020-10-24 23:57:45 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2021-09-30 23:02:18 +05:30
|
|
|
describe '#raw_plain_data' do
|
|
|
|
context "with a plain file" do
|
|
|
|
subject { described_class.new(blob, current_user: user) }
|
|
|
|
|
|
|
|
it 'shows raw data for non binary files' do
|
|
|
|
expect(subject.raw_plain_data).to eq(blob.data)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "with a binary file" do
|
|
|
|
let(:file) { 'files/images/logo-black.png' }
|
|
|
|
let(:blob) { blob_at(file) }
|
|
|
|
|
|
|
|
subject { described_class.new(blob, current_user: user) }
|
|
|
|
|
|
|
|
it 'returns nil' do
|
|
|
|
expect(subject.raw_plain_data).to be_nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
describe '#raw_url' do
|
2021-01-03 14:25:43 +05:30
|
|
|
subject { described_class.new(blob, current_user: user).raw_url }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
|
|
|
before do
|
2020-10-24 23:57:45 +05:30
|
|
|
stub_default_url_options(host: 'test.host')
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
it_behaves_like 'snippet blob raw url'
|
2020-03-13 15:44:24 +05:30
|
|
|
|
2021-01-03 14:25:43 +05:30
|
|
|
context 'with a snippet without a repository' do
|
|
|
|
let(:personal_snippet) { build(:personal_snippet, author: user, id: 1) }
|
|
|
|
let(:project_snippet) { build(:project_snippet, project: project, author: user, id: 1) }
|
|
|
|
let(:blob) { snippet.blob }
|
2020-10-24 23:57:45 +05:30
|
|
|
|
|
|
|
context 'with ProjectSnippet' do
|
|
|
|
let(:snippet) { project_snippet }
|
|
|
|
|
|
|
|
it 'returns the raw project snippet url' do
|
|
|
|
expect(subject).to eq("http://test.host/#{project_snippet.project.full_path}/-/snippets/#{project_snippet.id}/raw")
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
context 'with PersonalSnippet' do
|
|
|
|
let(:snippet) { personal_snippet }
|
2020-07-28 23:09:34 +05:30
|
|
|
|
2020-10-24 23:57:45 +05:30
|
|
|
it 'returns the raw personal snippet url' do
|
|
|
|
expect(subject).to eq("http://test.host/-/snippets/#{personal_snippet.id}/raw")
|
|
|
|
end
|
2020-07-28 23:09:34 +05:30
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2021-01-03 14:25:43 +05:30
|
|
|
|
|
|
|
def blob_at(path)
|
|
|
|
snippet.repository.blob_at(branch, path)
|
|
|
|
end
|
2020-03-13 15:44:24 +05:30
|
|
|
end
|