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

31 lines
1 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2016-01-29 22:53:50 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::Diff::InlineDiffMarker do
2017-09-10 17:25:29 +05:30
describe '#mark' do
2018-03-17 18:26:18 +05:30
let(:inline_diffs) { [2..5] }
let(:raw) { "abc 'def'" }
subject { described_class.new(raw, rich).mark(inline_diffs) }
2016-04-02 18:10:28 +05:30
context "when the rich text is html safe" do
let(:rich) { %{<span class="abc">abc</span><span class="space"> </span><span class="def">&#39;def&#39;</span>}.html_safe }
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
2019-02-15 15:39:39 +05:30
context "when the text is not html safe" do
2018-03-17 18:26:18 +05:30
let(:rich) { "abc 'def' differs" }
2016-04-02 18:10:28 +05:30
2017-09-10 17:25:29 +05:30
it 'marks the range' do
2018-03-17 18:26:18 +05:30
expect(subject).to eq(%{ab<span class="idiff left right">c &#39;d</span>ef&#39; differs})
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