summaryrefslogtreecommitdiff
path: root/spec/models/container_repository_spec.rb
blob: 3997c4ca6826f73a4f926e9a9cb76e1dbfa42c53 (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
require 'spec_helper'

describe ContainerRepository do
  let(:group) { create(:group, name: 'group') }
  let(:project) { create(:project, path: 'test', group: group) }

  let(:container_repository) do
    create(:container_repository, name: 'my_image', project: project)
  end

  before do
    stub_container_registry_config(enabled: true,
                                   api_url: 'http://registry.gitlab',
                                   host_port: 'registry.gitlab')

    stub_request(:get, 'http://registry.gitlab/v2/group/test/my_image/tags/list')
      .with(headers: {
        'Accept' => 'application/vnd.docker.distribution.manifest.v2+json' })
      .to_return(
         status: 200,
         body: JSON.dump(tags: ['test_tag']),
         headers: { 'Content-Type' => 'application/json' })
  end

  describe 'associations' do
    it 'belongs to the project' do
      expect(container_repository).to belong_to(:project)
    end
  end

  describe '#tag' do
    it 'has a test tag' do
      expect(container_repository.tag('test')).not_to be_nil
    end
  end

  describe '#path' do
    it 'returns a full path to the repository' do
      expect(container_repository.path).to eq('group/test/my_image')
    end
  end

  describe '#manifest' do
    subject { container_repository.manifest }

    it { is_expected.not_to be_nil }
  end

  describe '#valid?' do
    subject { container_repository.valid? }

    it { is_expected.to be_truthy }
  end

  describe '#tags' do
    subject { container_repository.tags }

    it { is_expected.not_to be_empty }
  end

  # TODO, improve these specs
  #
  describe '#delete_tags' do
    let(:tag) { ContainerRegistry::Tag.new(container_repository, 'tag') }

    before do
      allow(container_repository).to receive(:tags).twice.and_return([tag])
      allow(tag).to receive(:digest)
        .and_return('sha256:4c8e63ca4cb663ce6c688cb06f1c3672a172b088dac5b6d7ad7d49cd620d85cf')
    end

    context 'when action succeeds' do
      before do
        allow(container_repository.client)
          .to receive(:delete_repository_tag)
          .and_return(true)
      end

      it 'returns status that indicates success' do
        expect(container_repository.delete_tags).to be_truthy
      end
    end

    context 'when action fails' do
      before do
        allow(container_repository.client)
          .to receive(:delete_repository_tag)
          .and_return(false)
      end

      it 'returns status that indicates failure' do
        expect(container_repository.delete_tags).to be_falsey
      end
    end
  end
end