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

collection_spec.rb « variables « ci « gitlab « lib « spec - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0ded8581a8631c07890b8a3c39a69533c9209187 (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
require 'spec_helper'

describe Gitlab::Ci::Variables::Collection do
  describe '.new' do
    it 'can be initialized with an array' do
      variable = { key: 'SOME_VAR', value: 'Some Value'}
      collection = described_class.new([variable])

      expect(collection.first.to_h).to include variable
    end

    it 'can be initialized without an argument' do
      expect(subject).to be_none
    end
  end

  describe '#append' do
    it 'appends a hash' do
      subject.append(key: 'VARIABLE', value: 'something')

      expect(subject).to be_one
    end

    it 'appends a Ci::Variable' do
      subject.append(build(:ci_variable))

      expect(subject).to be_one
    end

    it 'appends an internal resource' do
      collection = described_class.new([{ key: 'TEST', value: 1 }])

      subject.append(collection.first)

      expect(subject).to be_one
    end
  end

  describe '#+' do
    it 'makes it possible to combine with an array' do
      collection = described_class.new([{ key: 'TEST', value: 1 }])
      variables = [{ key: 'TEST', value: 'something'}]

      expect((collection + variables).count).to eq 2
    end

    it 'makes it possible to combine with another collection' do
      collection = described_class.new([{ key: 'TEST', value: 1 }])
      other = described_class.new([{ key: 'TEST', value: 2 }])

      expect((collection + other).count).to eq 2
    end
  end

  describe '#to_hash' do
    it 'creates a hash / value mapping' do
      collection = described_class.new([{ key: 'TEST', value: 1 }])

      expect(collection.to_hash)
        .to eq [{ key: 'TEST', value: 1, public: false }]
    end
  end
end