blob: b6546a2eaf397b6e2dbba4df25175ddff782934e (
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe PackagesHelper, feature_category: :package_registry do
using RSpec::Parameterized::TableSyntax
let_it_be_with_reload(:project) { create(:project) }
let_it_be(:base_url) { "#{Gitlab.config.gitlab.url}/api/v4/" }
describe '#package_registry_instance_url' do
it 'returns conan instance url when registry_type is conant' do
url = helper.package_registry_instance_url(:conan)
expect(url).to eq("#{base_url}packages/conan")
end
it 'returns npm instance url when registry_type is npm' do
url = helper.package_registry_instance_url(:npm)
expect(url).to eq("#{base_url}packages/npm")
end
end
describe '#package_registry_project_url' do
it 'returns maven registry url when registry_type is not provided' do
url = helper.package_registry_project_url(1)
expect(url).to eq("#{base_url}projects/1/packages/maven")
end
it 'returns specified registry url when registry_type is provided' do
url = helper.package_registry_project_url(1, :npm)
expect(url).to eq("#{base_url}projects/1/packages/npm")
end
end
describe '#pypi_registry_url' do
let_it_be(:base_url_with_token) { base_url.sub('://', '://__token__:<your_personal_token>@') }
let_it_be(:public_project) { create(:project, :public) }
it 'returns the pypi registry url with token when project is private' do
url = helper.pypi_registry_url(project)
expect(url).to eq("#{base_url_with_token}projects/#{project.id}/packages/pypi/simple")
end
it 'returns the pypi registry url without token when project is public' do
url = helper.pypi_registry_url(public_project)
expect(url).to eq("#{base_url}projects/#{public_project.id}/packages/pypi/simple")
end
end
describe '#composer_registry_url' do
it 'return the composer registry url' do
url = helper.composer_registry_url(1)
expect(url).to eq("#{base_url}group/1/-/packages/composer/packages.json")
end
end
describe '#composer_config_repository_name' do
let(:host) { Gitlab.config.gitlab.host }
let(:group_id) { 1 }
it 'return global unique composer registry id' do
id = helper.composer_config_repository_name(group_id)
expect(id).to eq("#{host}/#{group_id}")
end
end
describe '#show_cleanup_policy_link' do
let_it_be(:user) { create(:user) }
let_it_be_with_reload(:container_repository) { create(:container_repository) }
subject { helper.show_cleanup_policy_link(project.reload) }
where(:com, :config_registry, :project_registry, :nil_policy, :container_repositories_exist, :expected_result) do
false | false | false | false | false | false
false | false | false | false | true | false
false | false | false | true | false | false
false | false | false | true | true | false
false | false | true | false | false | false
false | false | true | false | true | false
false | false | true | true | false | false
false | false | true | true | true | false
false | true | false | false | false | false
false | true | false | false | true | false
false | true | false | true | false | false
false | true | false | true | true | false
false | true | true | false | false | false
false | true | true | false | true | false
false | true | true | true | false | false
false | true | true | true | true | false
true | false | false | false | false | false
true | false | false | false | true | false
true | false | false | true | false | false
true | false | false | true | true | false
true | false | true | false | false | false
true | false | true | false | true | false
true | false | true | true | false | false
true | false | true | true | true | false
true | true | false | false | false | false
true | true | false | false | true | false
true | true | false | true | false | false
true | true | false | true | true | false
true | true | true | false | false | false
true | true | true | false | true | false
true | true | true | true | false | false
true | true | true | true | true | true
end
with_them do
before do
allow(helper).to receive(:current_user).and_return(user)
allow(Gitlab).to receive(:com?).and_return(com)
stub_config(registry: { enabled: config_registry })
allow(project).to receive(:feature_available?).with(:container_registry, user).and_return(project_registry)
project.container_expiration_policy.destroy! if nil_policy
container_repository.update!(project_id: project.id) if container_repositories_exist
end
it { is_expected.to eq(expected_result) }
end
end
end
|