2016-01-19 10:26:44 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe Gitlab::Highlight, lib: true do
|
|
|
|
include RepoHelpers
|
|
|
|
|
|
|
|
let(:project) { create(:project) }
|
2016-06-16 14:07:22 -04:00
|
|
|
let(:repository) { project.repository }
|
2016-01-19 10:26:44 -05:00
|
|
|
let(:commit) { project.commit(sample_commit.id) }
|
|
|
|
|
|
|
|
describe '.highlight_lines' do
|
|
|
|
let(:lines) do
|
|
|
|
Gitlab::Highlight.highlight_lines(project.repository, commit.id, 'files/ruby/popen.rb')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'should properly highlight all the lines' do
|
|
|
|
expect(lines[4]).to eq(%Q{<span id="LC5" class="line"> <span class="kp">extend</span> <span class="nb">self</span></span>\n})
|
|
|
|
expect(lines[21]).to eq(%Q{<span id="LC22" class="line"> <span class="k">unless</span> <span class="no">File</span><span class="p">.</span><span class="nf">directory?</span><span class="p">(</span><span class="n">path</span><span class="p">)</span></span>\n})
|
|
|
|
expect(lines[26]).to eq(%Q{<span id="LC27" class="line"> <span class="vi">@cmd_status</span> <span class="o">=</span> <span class="mi">0</span></span>\n})
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-10 18:42:43 -04:00
|
|
|
describe 'custom highlighting from .gitattributes' do
|
2016-06-16 14:07:22 -04:00
|
|
|
let(:branch) { 'gitattributes' }
|
|
|
|
let(:blob) { repository.blob_at_branch(branch, path) }
|
|
|
|
|
2016-06-16 14:52:40 -04:00
|
|
|
let(:highlighter) do
|
2016-06-16 14:07:22 -04:00
|
|
|
Gitlab::Highlight.new(blob.path, blob.data, repository: repository)
|
2016-06-16 14:52:40 -04:00
|
|
|
end
|
2016-06-10 18:42:43 -04:00
|
|
|
|
2016-06-16 14:07:22 -04:00
|
|
|
before { project.change_head('gitattributes') }
|
|
|
|
|
2016-06-22 15:53:58 -04:00
|
|
|
describe 'basic language selection' do
|
|
|
|
let(:path) { 'custom-highlighting/test.gitlab-custom' }
|
|
|
|
it 'highlights as ruby' do
|
|
|
|
expect(highlighter.lexer.tag).to eq 'ruby'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'cgi options' do
|
|
|
|
let(:path) { 'custom-highlighting/test.gitlab-cgi' }
|
|
|
|
|
|
|
|
it 'highlights as json with erb' do
|
|
|
|
expect(highlighter.lexer.tag).to eq 'erb'
|
|
|
|
expect(highlighter.lexer.parent.tag).to eq 'json'
|
|
|
|
end
|
2016-06-10 18:42:43 -04:00
|
|
|
end
|
|
|
|
end
|
2016-01-19 10:26:44 -05:00
|
|
|
end
|