# frozen_string_literal: true require 'spec_helper' describe SnippetBlobPresenter do describe '#highlighted_data' do let(:snippet) { build(:personal_snippet) } subject { described_class.new(snippet.blob).highlighted_data } it 'returns nil when the snippet blob is binary' do allow(snippet.blob).to receive(:binary?).and_return(true) expect(subject).to be_nil end it 'returns markdown content when snippet file is markup' do snippet.file_name = 'test.md' snippet.content = '*foo*' expect(subject).to eq '

foo

' end it 'returns syntax highlighted content' do snippet.file_name = 'test.rb' snippet.content = 'class Foo;end' expect(subject) .to eq 'class Foo;end' end it 'returns plain text highlighted content' do snippet.file_name = 'test' snippet.content = 'foo' expect(described_class.new(snippet.blob).highlighted_data).to eq 'foo' end end describe '#raw_path' do subject { described_class.new(snippet.blob).raw_path } context 'with ProjectSnippet' do let!(:project) { create(:project) } let(:snippet) { build(:project_snippet, project: project, id: 1) } it 'returns the raw path' do expect(subject).to eq "/#{snippet.project.full_path}/snippets/1/raw" end end context 'with PersonalSnippet' do let(:snippet) { build(:personal_snippet, id: 1) } it 'returns the raw path' do expect(subject).to eq "/snippets/1/raw" end end end end