Welcome to mirror list, hosted at ThFree Co, Russian Federation.

char_diff_spec.rb « diff « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e4e2a3ba050b9489e1a43f1e61905ca07fe17ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# frozen_string_literal: true

require 'fast_spec_helper'
require 'diff_match_patch'

RSpec.describe Gitlab::Diff::CharDiff do
  let(:old_string) { "Helo \n Worlld" }
  let(:new_string) { "Hello \n World" }

  subject(:diff) { described_class.new(old_string, new_string) }

  describe '#generate_diff' do
    context 'when old string is nil' do
      let(:old_string) { nil }

      it 'does not raise an error' do
        expect { subject.generate_diff }.not_to raise_error
      end

      it 'treats nil values as blank strings' do
        changes = subject.generate_diff

        expect(changes).to eq([
          [:insert, "Hello \n World"]
        ])
      end
    end

    it 'generates an array of changes' do
      changes = subject.generate_diff

      expect(changes).to eq([
        [:equal, "Hel"],
        [:insert, "l"],
        [:equal, "o \n Worl"],
        [:delete, "l"],
        [:equal, "d"]
      ])
    end
  end

  describe '#changed_ranges' do
    subject { diff.changed_ranges }

    context 'when old string is nil' do
      let(:old_string) { nil }

      it 'returns lists of changes' do
        old_diffs, new_diffs = subject

        expect(old_diffs).to eq([])
        expect(new_diffs).to eq([0..12])
      end
    end

    it 'returns ranges of changes' do
      old_diffs, new_diffs = subject

      expect(old_diffs).to eq([11..11])
      expect(new_diffs).to eq([3..3])
    end
  end

  describe '#to_html' do
    it 'returns an HTML representation of the diff' do
      subject.generate_diff

      expect(subject.to_html).to eq(
        '<span class="idiff">Hel</span>' \
        '<span class="idiff addition">l</span>' \
        "<span class=\"idiff\">o \n Worl</span>" \
        '<span class="idiff deletion">l</span>' \
        '<span class="idiff">d</span>'
      )
    end
  end
end