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

shared_example.rb « legacy_reader « json « import_export « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e9bd3fe741de08b77fa11d8d9e0a93747b0cb9f (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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
# frozen_string_literal: true

RSpec.shared_examples 'import/export json legacy reader' do
  let(:relation_names) { [] }

  let(:legacy_reader) do
    described_class.new(
      data,
      relation_names: relation_names,
      allowed_path: "project")
  end

  describe '#consume_attributes' do
    context 'when valid path is passed' do
      subject { legacy_reader.consume_attributes("project") }

      context 'no excluded attributes' do
        let(:relation_names) { [] }

        it 'returns the whole tree from parsed JSON' do
          expect(subject).to eq(json_data)
        end
      end

      context 'some attributes are excluded' do
        let(:relation_names) { %w[milestones labels] }

        it 'returns hash without excluded attributes and relations' do
          expect(subject).not_to include('milestones', 'labels')
        end
      end
    end

    context 'when invalid path is passed' do
      it 'raises an exception' do
        expect { legacy_reader.consume_attributes("invalid-path") }
          .to raise_error(ArgumentError)
      end
    end
  end

  describe '#consume_relation' do
    context 'when valid path is passed' do
      let(:key) { 'labels' }

      subject { legacy_reader.consume_relation("project", key) }

      context 'key has not been consumed' do
        it 'returns an Enumerator' do
          expect(subject).to be_an_instance_of(Enumerator)
        end

        context 'value is nil' do
          before do
            expect(legacy_reader).to receive(:relations).and_return({ key => nil })
          end

          it 'yields nothing to the Enumerator' do
            expect(subject.to_a).to eq([])
          end
        end

        context 'value is an array' do
          before do
            expect(legacy_reader).to receive(:relations).and_return({ key => %w[label1 label2] })
          end

          it 'yields every relation value to the Enumerator' do
            expect(subject.to_a).to eq([['label1', 0], ['label2', 1]])
          end
        end

        context 'value is not array' do
          before do
            expect(legacy_reader).to receive(:relations).and_return({ key => 'non-array value' })
          end

          it 'yields the value with index 0 to the Enumerator' do
            expect(subject.to_a).to eq([['non-array value', 0]])
          end
        end
      end

      context 'key has been consumed' do
        before do
          legacy_reader.consume_relation("project", key).first
        end

        it 'yields nothing to the Enumerator' do
          expect(subject.to_a).to eq([])
        end
      end
    end

    context 'when invalid path is passed' do
      it 'raises an exception' do
        expect { legacy_reader.consume_relation("invalid") }
          .to raise_error(ArgumentError)
      end
    end
  end
end