summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/git/conflict/file_spec.rb
blob: afed6c32af6165d16fda5280f69c98741934803f (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
# coding: utf-8
require 'spec_helper'

describe Gitlab::Git::Conflict::File do
  let(:conflict) { { theirs: { path: 'foo', mode: 33188 }, ours: { path: 'foo', mode: 33188 } } }
  let(:invalid_content) { described_class.new(nil, nil, conflict, "a\xC4\xFC".force_encoding(Encoding::ASCII_8BIT)) }
  let(:valid_content) { described_class.new(nil, nil, conflict, "Espa\xC3\xB1a".force_encoding(Encoding::ASCII_8BIT)) }

  describe '#lines' do
    context 'when the content contains non-UTF-8 characters' do
      it 'raises UnsupportedEncoding' do
        expect { invalid_content.lines }
          .to raise_error(described_class::UnsupportedEncoding)
      end
    end

    context 'when the content can be converted to UTF-8' do
      it 'sets lines to the lines' do
        expect(valid_content.lines).to eq([{
                                             full_line: 'España',
                                             type: nil,
                                             line_obj_index: 0,
                                             line_old: 1,
                                             line_new: 1
                                           }])
      end

      it 'sets the type to text' do
        expect(valid_content.type).to eq('text')
      end
    end
  end

  describe '#content' do
    context 'when the content contains non-UTF-8 characters' do
      it 'raises UnsupportedEncoding' do
        expect { invalid_content.content }
          .to raise_error(described_class::UnsupportedEncoding)
      end
    end

    context 'when the content can be converted to UTF-8' do
      it 'returns a valid UTF-8 string' do
        expect(valid_content.content).to eq('España')
        expect(valid_content.content).to be_valid_encoding
        expect(valid_content.content.encoding).to eq(Encoding::UTF_8)
      end
    end
  end
end