debian-mirror-gitlab/spec/models/dependency_proxy/manifest_spec.rb

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

75 lines
2.3 KiB
Ruby
Raw Normal View History

2021-02-22 17:27:13 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe DependencyProxy::Manifest, type: :model do
2021-11-18 22:05:49 +05:30
it_behaves_like 'ttl_expirable'
2022-03-02 08:16:31 +05:30
it_behaves_like 'destructible', factory: :dependency_proxy_manifest
2021-11-18 22:05:49 +05:30
2022-05-07 20:08:51 +05:30
it_behaves_like 'updates namespace statistics' do
let(:statistic_source) { build(:dependency_proxy_manifest, size: 10) }
end
2021-02-22 17:27:13 +05:30
describe 'relationships' do
it { is_expected.to belong_to(:group) }
end
describe 'validations' do
it { is_expected.to validate_presence_of(:group) }
it { is_expected.to validate_presence_of(:file) }
it { is_expected.to validate_presence_of(:file_name) }
it { is_expected.to validate_presence_of(:digest) }
end
2021-12-11 22:18:48 +05:30
describe 'scopes' do
let_it_be(:manifest_one) { create(:dependency_proxy_manifest) }
let_it_be(:manifest_two) { create(:dependency_proxy_manifest) }
let_it_be(:manifests) { [manifest_one, manifest_two] }
let_it_be(:ids) { manifests.map(&:id) }
it 'order_id_desc' do
expect(described_class.where(id: ids).order_id_desc.to_a).to eq [manifest_two, manifest_one]
end
end
2021-02-22 17:27:13 +05:30
describe 'file is being stored' do
subject { create(:dependency_proxy_manifest) }
context 'when existing object has local store' do
it_behaves_like 'mounted file in local store'
end
context 'when direct upload is enabled' do
before do
stub_dependency_proxy_object_storage(direct_upload: true)
end
it_behaves_like 'mounted file in object store'
end
end
2021-12-11 22:18:48 +05:30
describe '.find_by_file_name_or_digest' do
2021-04-17 20:07:23 +05:30
let_it_be(:file_name) { 'foo' }
let_it_be(:digest) { 'bar' }
2021-02-22 17:27:13 +05:30
2021-12-11 22:18:48 +05:30
subject { DependencyProxy::Manifest.find_by_file_name_or_digest(file_name: file_name, digest: digest) }
2021-02-22 17:27:13 +05:30
2021-04-17 20:07:23 +05:30
context 'no manifest exists' do
2021-12-11 22:18:48 +05:30
it { is_expected.to be_nil }
2021-02-22 17:27:13 +05:30
end
2021-04-17 20:07:23 +05:30
context 'manifest exists and matches file_name' do
2021-02-22 17:27:13 +05:30
let_it_be(:dependency_proxy_manifest) { create(:dependency_proxy_manifest) }
let_it_be(:file_name) { dependency_proxy_manifest.file_name }
it { is_expected.to eq(dependency_proxy_manifest) }
end
2021-04-17 20:07:23 +05:30
context 'manifest exists and matches digest' do
let_it_be(:dependency_proxy_manifest) { create(:dependency_proxy_manifest) }
let_it_be(:digest) { dependency_proxy_manifest.digest }
it { is_expected.to eq(dependency_proxy_manifest) }
end
2021-02-22 17:27:13 +05:30
end
end