debian-mirror-gitlab/spec/lib/gitlab/diff/inline_diff_marker_spec.rb

29 lines
1.1 KiB
Ruby
Raw Normal View History

2016-01-29 22:53:50 +05:30
require 'spec_helper'
2017-09-10 17:25:29 +05:30
describe Gitlab::Diff::InlineDiffMarker do
describe '#mark' do
2016-04-02 18:10:28 +05:30
context "when the rich text is html safe" do
2017-09-10 17:25:29 +05:30
let(:raw) { "abc 'def'" }
2016-04-02 18:10:28 +05:30
let(:rich) { %{<span class="abc">abc</span><span class="space"> </span><span class="def">&#39;def&#39;</span>}.html_safe }
let(:inline_diffs) { [2..5] }
2017-09-10 17:25:29 +05:30
let(:subject) { described_class.new(raw, rich).mark(inline_diffs) }
2016-01-29 22:53:50 +05:30
2017-09-10 17:25:29 +05:30
it 'marks the range' do
expect(subject).to eq(%{<span class="abc">ab<span class="idiff left">c</span></span><span class="space"><span class="idiff"> </span></span><span class="def"><span class="idiff right">&#39;d</span>ef&#39;</span>})
2016-04-02 18:10:28 +05:30
expect(subject).to be_html_safe
end
end
context "when the text text is not html safe" do
2017-09-10 17:25:29 +05:30
let(:raw) { "abc 'def'" }
2016-04-02 18:10:28 +05:30
let(:inline_diffs) { [2..5] }
2017-09-10 17:25:29 +05:30
let(:subject) { described_class.new(raw).mark(inline_diffs) }
2016-04-02 18:10:28 +05:30
2017-09-10 17:25:29 +05:30
it 'marks the range' do
expect(subject).to eq(%{ab<span class="idiff left right">c &#39;d</span>ef&#39;})
2016-04-02 18:10:28 +05:30
expect(subject).to be_html_safe
end
2016-01-29 22:53:50 +05:30
end
end
end