summaryrefslogtreecommitdiff
path: root/spec/lib/api/entities/ci/job_request/service_spec.rb
blob: 47c2c4e04c904ebf24dc4a86862112e3e4a1ef6c (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
# frozen_string_literal: true

require 'spec_helper'

RSpec.describe API::Entities::Ci::JobRequest::Service do
  let(:ports) { [{ number: 80, protocol: 'http', name: 'name' }]}
  let(:service) do
    instance_double(
      ::Gitlab::Ci::Build::Image,
      name: 'image_name',
      entrypoint: ['foo'],
      ports: ports,
      pull_policy: ['if-not-present'],
      alias: 'alias',
      command: 'command',
      variables: [{ key: 'key', value: 'value' }]
    )
  end

  let(:entity) { described_class.new(service) }

  subject(:result) { entity.as_json }

  it 'exposes attributes' do
    expect(result).to eq(
      name: 'image_name',
      entrypoint: ['foo'],
      ports: ports,
      pull_policy: ['if-not-present'],
      alias: 'alias',
      command: 'command',
      variables: [{ key: 'key', value: 'value' }]
    )
  end

  context 'when the ports param is nil' do
    let(:ports) { nil }

    it 'does not return the ports' do
      expect(subject[:ports]).to be_nil
    end
  end

  context 'when the FF ci_docker_image_pull_policy is disabled' do
    before do
      stub_feature_flags(ci_docker_image_pull_policy: false)
    end

    it { is_expected.not_to have_key(:pull_policy) }
  end
end