summaryrefslogtreecommitdiff
path: root/spec/lib/gitlab/ci/build/credentials/registry_spec.rb
blob: 84e44dd53e2ca81d13f7b290300330ae88265760 (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
require 'spec_helper'

describe Gitlab::Ci::Build::Credentials::Registry do
  let(:build) { create(:ci_build, name: 'spinach', stage: 'test', stage_idx: 0) }
  let(:registry_url) { 'registry.example.com:5005' }

  subject { Gitlab::Ci::Build::Credentials::Registry.new(build) }

  before do
    stub_container_registry_config(host_port: registry_url)
  end

  it 'contains valid DockerRegistry credentials' do
    expect(subject).to be_kind_of(Gitlab::Ci::Build::Credentials::Registry)

    expect(subject.username).to eq 'gitlab-ci-token'
    expect(subject.password).to eq build.token
    expect(subject.url).to eq registry_url
    expect(subject.type).to eq 'registry'
  end

  describe '.valid?' do
    subject { Gitlab::Ci::Build::Credentials::Registry.new(build).valid? }

    context 'when registry is enabled' do
      before do
        stub_container_registry_config(enabled: true)
      end

      it { is_expected.to be_truthy }
    end

    context 'when registry is disabled' do
      before do
        stub_container_registry_config(enabled: false)
      end

      it { is_expected.to be_falsey }
    end
  end
end