summaryrefslogtreecommitdiff
path: root/spec/ldiff_spec.rb
blob: 74bb92d641242392cb58a415dd384c55f17b8970 (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
78
79
80
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe 'bin/ldiff' do
  include CaptureSubprocessIO

  let(:output_diff) { read_fixture }
  let(:output_diff_c) { read_fixture('-c') }
  let(:output_diff_e) { read_fixture('-e') }
  let(:output_diff_f) { read_fixture('-f') }
  let(:output_diff_u) { read_fixture('-u') }
  let(:output_diff_chef) { read_fixture('-u', base: 'output.diff.chef') }

  specify do
    expect(run_ldiff('-u', left: 'old-chef', right: 'new-chef')).to eq(output_diff_chef)
  end

  specify do
    expect(run_ldiff).to eq(output_diff)
  end

  specify do
    expect(run_ldiff('-c')).to eq(output_diff_c)
  end

  specify do
    expect(run_ldiff('-e')).to eq(output_diff_e)
  end

  specify do
    expect(run_ldiff('-f')).to eq(output_diff_f)
  end

  specify do
    expect(run_ldiff('-u')).to eq(output_diff_u)
  end

  def read_fixture(flag = nil, base: 'output.diff')
    clean_data(IO.binread("spec/fixtures/ldiff/#{base}#{flag}"), flag)
  end

  def clean_data(data, flag)
    data =
      case flag
      when '-c', '-u'
        clean_output_timestamp(data)
      else
        data
      end
    data.gsub(/\r\n?/, "\n")
  end

  def clean_output_timestamp(data)
    data.gsub(
      %r{
        ^
        [-+*]{3}
        \s*
        spec/fixtures/(\S+)
        \s*
        \d{4}-\d\d-\d\d
        \s*
        \d\d:\d\d:\d\d(?:\.\d+)
        \s*
        (?:[-+]\d{4}|Z)
      }x,
      '*** spec/fixtures/\1	0000-00-00 00:00:00.000000000 -0000'
    )
  end

  def run_ldiff(flag = nil, left: 'aX', right: 'bXaX')
    stdout, stderr = capture_subprocess_io do
      system("ruby -Ilib bin/ldiff #{flag} spec/fixtures/#{left} spec/fixtures/#{right}")
    end
    expect(stderr).to be_empty
    expect(stdout).not_to be_empty
    clean_data(stdout, flag)
  end
end