item_spec.rb 1.5 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
require 'spec_helper'

describe Gitlab::Ci::Variables::Collection::Item do
  let(:variable) do
    { key: 'VAR', value: 'something', public: true }
  end

  describe '.fabricate' do
    it 'supports using a hash' do
      resource = described_class.fabricate(variable)

      expect(resource).to be_a(described_class)
      expect(resource).to eq variable
    end

    it 'supports using an active record resource' do
17 18
      variable = create(:ci_variable, key: 'CI_VAR', value: '123')
      resource = described_class.fabricate(variable)
19 20

      expect(resource).to be_a(described_class)
21
      expect(resource).to eq(key: 'CI_VAR', value: '123', public: false)
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
    end

    it 'supports using another collection item' do
      item = described_class.new(**variable)

      resource = described_class.fabricate(item)

      expect(resource).to be_a(described_class)
      expect(resource).to eq variable
      expect(resource.object_id).not_to eq item.object_id
    end
  end

  describe '#==' do
    it 'compares a hash representation of a variable' do
      expect(described_class.new(**variable) == variable).to be true
    end
  end

41 42 43 44 45 46 47 48
  describe '#[]' do
    it 'behaves like a hash accessor' do
      item = described_class.new(**variable)

      expect(item[:key]).to eq 'VAR'
    end
  end

49 50 51 52 53 54 55
  describe '#to_runner_variable' do
    it 'returns a runner-compatible hash representation' do
      runner_variable = described_class
        .new(**variable)
        .to_runner_variable

      expect(runner_variable).to eq variable
56 57 58
    end
  end
end