tag_spec.rb 5.5 KB
Newer Older
1 2 3
require 'spec_helper'

describe ContainerRegistry::Tag do
A
Andre Guedes 已提交
4
  let(:group) { create(:group, name: 'group') }
5
  let(:project) { create(:project, path: 'test', group: group) }
6 7

  let(:repository) do
8
    create(:container_repository, name: '', project: project)
9 10 11 12 13 14 15
  end

  let(:headers) do
    { 'Accept' => 'application/vnd.docker.distribution.manifest.v2+json' }
  end

  let(:tag) { described_class.new(repository, 'tag') }
16

A
Andre Guedes 已提交
17
  before do
18 19 20
    stub_container_registry_config(enabled: true,
                                   api_url: 'http://registry.gitlab',
                                   host_port: 'registry.gitlab')
A
Andre Guedes 已提交
21 22
  end

23 24 25 26
  it { expect(tag).to respond_to(:repository) }
  it { expect(tag).to delegate_method(:registry).to(:repository) }
  it { expect(tag).to delegate_method(:client).to(:repository) }

27 28 29 30 31 32 33
  describe '#path' do
    context 'when tag belongs to zero-level repository' do
      let(:repository) do
        create(:container_repository, name: '',
                                      tags: %w[rc1],
                                      project: project)
      end
34

35 36 37 38 39 40 41 42
      it 'returns path to the image' do
        expect(tag.path).to eq('group/test:tag')
      end
    end

    context 'when tag belongs to first-level repository' do
      let(:repository) do
        create(:container_repository, name: 'my_image',
43
                                      tags: %w[tag],
44 45 46 47 48 49 50
                                      project: project)
      end

      it 'returns path to the image' do
        expect(tag.path).to eq('group/test/my_image:tag')
      end
    end
51 52
  end

53 54 55 56 57 58 59
  describe '#location' do
    it 'returns a full location of the tag' do
      expect(tag.location)
        .to eq 'registry.gitlab/group/test:tag'
    end
  end

60
  context 'manifest processing' do
61 62
    context 'schema v1' do
      before do
63 64 65
        stub_request(:get, 'http://registry.gitlab/v2/group/test/manifests/tag')
          .with(headers: headers)
          .to_return(
66 67 68 69
            status: 200,
            body: File.read(Rails.root + 'spec/fixtures/container_registry/tag_manifest_1.json'),
            headers: { 'Content-Type' => 'application/vnd.docker.distribution.manifest.v1+prettyjws' })
      end
70

71 72
      context '#layers' do
        subject { tag.layers }
73

74 75 76 77 78
        it { expect(subject.length).to eq(1) }
      end

      context '#total_size' do
        subject { tag.total_size }
79

80 81
        it { is_expected.to be_nil }
      end
82

83 84 85 86 87 88 89 90 91 92 93 94 95
      context 'config processing' do
        context '#config' do
          subject { tag.config }

          it { is_expected.to be_nil }
        end

        context '#created_at' do
          subject { tag.created_at }

          it { is_expected.to be_nil }
        end
      end
96 97
    end

98
    context 'schema v2' do
99
      before do
100 101 102
        stub_request(:get, 'http://registry.gitlab/v2/group/test/manifests/tag')
          .with(headers: headers)
          .to_return(
103
            status: 200,
104 105
            body: File.read(Rails.root + 'spec/fixtures/container_registry/tag_manifest.json'),
            headers: { 'Content-Type' => 'application/vnd.docker.distribution.manifest.v2+json' })
106 107
      end

108 109
      context '#layers' do
        subject { tag.layers }
110

111
        it { expect(subject.length).to eq(1) }
112 113
      end

114 115 116 117 118 119 120
      context '#total_size' do
        subject { tag.total_size }

        it { is_expected.to eq(2319870) }
      end

      context 'config processing' do
121 122 123
        shared_examples 'a processable' do
          context '#config' do
            subject { tag.config }
124

125 126 127 128 129
            it { is_expected.not_to be_nil }
          end

          context '#created_at' do
            subject { tag.created_at }
130

131 132
            it { is_expected.not_to be_nil }
          end
133 134
        end

135 136
        context 'when locally stored' do
          before do
137 138 139
            stub_request(:get, 'http://registry.gitlab/v2/group/test/blobs/sha256:d7a513a663c1a6dcdba9ed832ca53c02ac2af0c333322cd6ca92936d1d9917ac')
              .with(headers: { 'Accept' => 'application/octet-stream' })
              .to_return(
140 141 142 143 144 145
                status: 200,
                body: File.read(Rails.root + 'spec/fixtures/container_registry/config_blob.json'))
          end

          it_behaves_like 'a processable'
        end
146

147 148
        context 'when externally stored' do
          before do
149 150 151
            stub_request(:get, 'http://registry.gitlab/v2/group/test/blobs/sha256:d7a513a663c1a6dcdba9ed832ca53c02ac2af0c333322cd6ca92936d1d9917ac')
              .with(headers: { 'Accept' => 'application/octet-stream' })
              .to_return(
152 153 154
                status: 307,
                headers: { 'Location' => 'http://external.com/blob/file' })

155 156
            stub_request(:get, 'http://external.com/blob/file')
              .to_return(
157 158 159 160 161
                status: 200,
                body: File.read(Rails.root + 'spec/fixtures/container_registry/config_blob.json'))
          end

          it_behaves_like 'a processable'
162
        end
163 164 165 166
      end
    end
  end

167
  context 'with stubbed digest' do
168
    before do
169 170 171
      stub_request(:head, 'http://registry.gitlab/v2/group/test/manifests/tag')
        .with(headers: headers)
        .to_return(status: 200, headers: { 'Docker-Content-Digest' => 'sha256:digest' })
172 173
    end

174 175 176 177
    describe '#digest' do
      it 'returns a correct tag digest' do
        expect(tag.digest).to eq 'sha256:digest'
      end
178 179
    end

180
    describe '#delete' do
181
      before do
182 183 184
        stub_request(:delete, 'http://registry.gitlab/v2/group/test/manifests/sha256:digest')
          .with(headers: headers)
          .to_return(status: 200)
185 186
      end

187 188 189
      it 'correctly deletes the tag' do
        expect(tag.delete).to be_truthy
      end
190 191 192
    end
  end
end