debian-mirror-gitlab/spec/lib/container_registry/tag_spec.rb

195 lines
5.6 KiB
Ruby
Raw Normal View History

2019-10-12 21:52:04 +05:30
# frozen_string_literal: true
2016-06-02 11:05:42 +05:30
require 'spec_helper'
describe ContainerRegistry::Tag do
2017-08-17 22:00:37 +05:30
let(:group) { create(:group, name: 'group') }
let(:project) { create(:project, path: 'test', group: group) }
let(:repository) do
create(:container_repository, name: '', project: project)
end
let(:headers) do
2019-09-30 21:07:59 +05:30
{ 'Accept' => ContainerRegistry::Client::ACCEPTED_TYPES.join(', ') }
2017-08-17 22:00:37 +05:30
end
let(:tag) { described_class.new(repository, 'tag') }
before do
stub_container_registry_config(enabled: true,
api_url: 'http://registry.gitlab',
host_port: 'registry.gitlab')
end
2016-06-02 11:05:42 +05:30
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) }
2017-08-17 22:00:37 +05:30
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
it 'returns path to the image' do
expect(tag.path).to eq('group/test:tag')
end
end
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
context 'when tag belongs to first-level repository' do
let(:repository) do
create(:container_repository, name: 'my_image',
tags: %w[tag],
project: project)
end
it 'returns path to the image' do
expect(tag.path).to eq('group/test/my_image:tag')
end
end
end
describe '#location' do
it 'returns a full location of the tag' do
expect(tag.location)
.to eq 'registry.gitlab/group/test:tag'
end
2016-06-02 11:05:42 +05:30
end
context 'manifest processing' do
context 'schema v1' do
before do
2017-09-10 17:25:29 +05:30
stub_request(:get, 'http://registry.gitlab/v2/group/test/manifests/tag')
.with(headers: headers)
.to_return(
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
2016-06-02 11:05:42 +05:30
context '#layers' do
subject { tag.layers }
2016-06-02 11:05:42 +05:30
it { expect(subject.length).to eq(1) }
end
context '#total_size' do
subject { tag.total_size }
2016-06-02 11:05:42 +05:30
it { is_expected.to be_nil }
end
2016-06-02 11:05:42 +05:30
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
2016-06-02 11:05:42 +05:30
end
context 'schema v2' do
2016-06-02 11:05:42 +05:30
before do
2017-09-10 17:25:29 +05:30
stub_request(:get, 'http://registry.gitlab/v2/group/test/manifests/tag')
.with(headers: headers)
.to_return(
2016-06-02 11:05:42 +05:30
status: 200,
body: File.read(Rails.root + 'spec/fixtures/container_registry/tag_manifest.json'),
headers: { 'Content-Type' => 'application/vnd.docker.distribution.manifest.v2+json' })
2016-06-02 11:05:42 +05:30
end
context '#layers' do
subject { tag.layers }
2016-06-02 11:05:42 +05:30
it { expect(subject.length).to eq(1) }
2016-06-02 11:05:42 +05:30
end
context '#total_size' do
subject { tag.total_size }
it { is_expected.to eq(2319870) }
end
context 'config processing' do
2016-08-24 12:49:21 +05:30
shared_examples 'a processable' do
context '#config' do
subject { tag.config }
2016-08-24 12:49:21 +05:30
it { is_expected.not_to be_nil }
end
context '#created_at' do
subject { tag.created_at }
2016-08-24 12:49:21 +05:30
it { is_expected.not_to be_nil }
end
end
2016-08-24 12:49:21 +05:30
context 'when locally stored' do
before do
2017-09-10 17:25:29 +05:30
stub_request(:get, 'http://registry.gitlab/v2/group/test/blobs/sha256:d7a513a663c1a6dcdba9ed832ca53c02ac2af0c333322cd6ca92936d1d9917ac')
.with(headers: { 'Accept' => 'application/octet-stream' })
.to_return(
2016-08-24 12:49:21 +05:30
status: 200,
body: File.read(Rails.root + 'spec/fixtures/container_registry/config_blob.json'))
end
it_behaves_like 'a processable'
end
2016-06-02 11:05:42 +05:30
2016-08-24 12:49:21 +05:30
context 'when externally stored' do
before do
2017-09-10 17:25:29 +05:30
stub_request(:get, 'http://registry.gitlab/v2/group/test/blobs/sha256:d7a513a663c1a6dcdba9ed832ca53c02ac2af0c333322cd6ca92936d1d9917ac')
.with(headers: { 'Accept' => 'application/octet-stream' })
.to_return(
2016-08-24 12:49:21 +05:30
status: 307,
headers: { 'Location' => 'http://external.com/blob/file' })
2017-09-10 17:25:29 +05:30
stub_request(:get, 'http://external.com/blob/file')
.to_return(
2016-08-24 12:49:21 +05:30
status: 200,
body: File.read(Rails.root + 'spec/fixtures/container_registry/config_blob.json'))
end
it_behaves_like 'a processable'
end
2016-06-02 11:05:42 +05:30
end
end
end
2017-08-17 22:00:37 +05:30
context 'with stubbed digest' do
2016-06-02 11:05:42 +05:30
before do
2017-08-17 22:00:37 +05:30
stub_request(:head, 'http://registry.gitlab/v2/group/test/manifests/tag')
.with(headers: headers)
.to_return(status: 200, headers: { 'Docker-Content-Digest' => 'sha256:digest' })
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
describe '#digest' do
it 'returns a correct tag digest' do
expect(tag.digest).to eq 'sha256:digest'
end
2016-06-02 11:05:42 +05:30
end
2019-12-21 20:55:43 +05:30
describe '#unsafe_delete' do
2016-06-02 11:05:42 +05:30
before do
2017-08-17 22:00:37 +05:30
stub_request(:delete, 'http://registry.gitlab/v2/group/test/manifests/sha256:digest')
.with(headers: headers)
.to_return(status: 200)
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
it 'correctly deletes the tag' do
2019-12-21 20:55:43 +05:30
expect(tag.unsafe_delete).to be_truthy
2017-08-17 22:00:37 +05:30
end
2016-06-02 11:05:42 +05:30
end
end
end