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 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Query.ciCatalogResource', feature_category: :pipeline_composition do
include GraphqlHelpers
let_it_be(:user) { create(:user) }
let_it_be(:namespace) { create(:group, developers: user) }
let_it_be(:project) do
create(
:project, :with_avatar, :custom_repo,
name: 'Component Repository',
description: 'A simple component',
namespace: namespace,
star_count: 1,
files: {
'README.md' => '[link](README.md)',
'templates/secret-detection.yml' => "spec:\n inputs:\n website:\n---\nimage: alpine_1"
}
)
end
let_it_be_with_reload(:resource) do
create(:ci_catalog_resource, :published, project: project, last_30_day_usage_count: 15)
end
let(:query) do
<<~GQL
query {
ciCatalogResource(id: "#{resource.to_global_id}") {
#{all_graphql_fields_for('CiCatalogResource', max_depth: 1)}
}
}
GQL
end
subject(:post_query) { post_graphql(query, current_user: user) }
context 'when the current user has permission to read the namespace catalog' do
it 'returns the resource with the expected data' do
post_query
expect(graphql_data_at(:ciCatalogResource)).to match(
a_graphql_entity_for(
resource, :name, :description,
icon: project.avatar_path,
fullPath: project.full_path,
webPath: "/#{project.full_path}",
verificationLevel: "UNVERIFIED",
starCount: project.star_count,
last30DayUsageCount: resource.last_30_day_usage_count
)
)
end
end
context 'when the current user does not have permission to read the namespace catalog' do
it 'returns nil' do
namespace.add_guest(user)
post_query
expect(graphql_data_at(:ciCatalogResource)).to be_nil
end
end
describe 'visibilityLevel' do
let(:query) do
<<~GQL
query {
ciCatalogResource(id: "#{resource.to_global_id}") {
visibilityLevel
}
}
GQL
end
it 'returns the visibility level for a catalog resource' do
post_query
expect(graphql_data['ciCatalogResource']['visibilityLevel']).to eq('private')
end
end
describe 'components' do
let_it_be(:version) do
create(:release, :with_catalog_resource_version, project: project).catalog_resource_version
end
let_it_be(:inputs) do
{
access_token: nil,
environment: {
default: 'test'
},
tags: {
type: 'array'
},
website: {
description: 'The website',
regex: '^https'
}
}
end
let_it_be(:components) do
create_list(
:ci_catalog_resource_component, 2, version: version, spec: { inputs: inputs }
)
end
let(:query) do
<<~GQL
query {
ciCatalogResource(id: "#{resource.to_global_id}") {
id
versions {
nodes {
id
components {
nodes {
id
name
includePath
inputs {
default
description
name
regex
required
type
}
}
}
}
}
}
}
GQL
end
it 'returns the components' do
post_query
expect(graphql_data_at(:ciCatalogResource)).to match(a_graphql_entity_for(resource))
expect(graphql_data_at(:ciCatalogResource, :versions, :nodes, :components, :nodes)).to contain_exactly(
a_graphql_entity_for(
components.first,
name: components.first.name,
include_path: components.first.include_path,
inputs: contain_exactly(
a_graphql_entity_for(
name: 'access_token',
required: true,
type: 'STRING'
),
a_graphql_entity_for(
name: 'tags',
required: true,
type: 'ARRAY'
),
a_graphql_entity_for(
name: 'website',
required: true,
description: 'The website',
regex: '^https',
type: 'STRING'
),
a_graphql_entity_for(
name: 'environment',
default: 'test',
required: false,
type: 'STRING'
)
)
),
a_graphql_entity_for(
components.last,
name: components.last.name,
include_path: components.last.include_path
)
)
end
end
describe 'versions' do
before_all do
project.repository.create_branch('branch_v2', project.default_branch)
project.repository.update_file(
user, 'README.md', 'Readme v2', message: 'Update readme', branch_name: 'branch_v2')
project.repository.add_tag(user, '1.0.0', project.default_branch)
project.repository.add_tag(user, '2.0.0', 'branch_v2')
end
let_it_be(:version1) do
release = create(:release,
project: project,
tag: '1.0.0',
sha: project.commit('1.0.0').sha,
released_at: Date.yesterday
)
create(:ci_catalog_resource_version, semver: '1.0.0', catalog_resource: resource, release: release)
end
let_it_be(:version2) do
release = create(:release,
project: project,
tag: '2.0.0',
sha: project.commit('2.0.0').sha,
released_at: Date.today
)
create(:ci_catalog_resource_version, semver: '2.0.0', catalog_resource: resource, release: release)
end
let(:query) do
<<~GQL
query {
ciCatalogResource(id: "#{resource.to_global_id}") {
id
versions {
nodes {
id
name
path
releasedAt
}
}
}
}
GQL
end
it 'returns the resource with the versions data' do
post_query
expect(graphql_data_at(:ciCatalogResource)).to match(
a_graphql_entity_for(resource)
)
expect(graphql_data_at(:ciCatalogResource, :versions, :nodes)).to contain_exactly(
a_graphql_entity_for(
version1,
name: version1.name,
path: project_tag_path(project, version1.name),
releasedAt: version1.released_at
),
a_graphql_entity_for(
version2,
name: version2.name,
path: project_tag_path(project, version2.name),
releasedAt: version2.released_at
)
)
end
context 'when the readme field is requested on more than one version' do
let(:query) do
<<~GQL
query {
ciCatalogResource(fullPath: "#{resource.project.full_path}") {
versions {
nodes {
readme
}
}
}
}
GQL
end
it 'limits the request to 1 version at a time' do
post_query
expect_graphql_errors_to_include \
[/"readme" field can be requested only for 1 CiCatalogResourceVersion\(s\) at a time./]
end
end
context 'when the name argument is provided' do
let(:name) { '1.0.0' }
let(:query) do
<<~GQL
query {
ciCatalogResource(fullPath: "#{resource.project.full_path}") {
versions(name: "#{name}") {
nodes {
id
name
path
releasedAt
readmeHtml
readme
}
}
}
}
GQL
end
it 'returns the version that matches the name',
quarantine: 'https://gitlab.com/gitlab-org/gitlab/-/issues/465564' do
post_query
expect(graphql_data_at(:ciCatalogResource, :versions, :nodes)).to contain_exactly(
a_graphql_entity_for(
version1,
name: version1.name,
path: project_tag_path(project, version1.name),
releasedAt: version1.released_at,
readme: version1.readme,
readmeHtml: "<p data-sourcepos=\"1:1-1:17\" dir=\"auto\"><a data-sourcepos=\"1:1-1:17\" " \
"href=\"/group1/project-1/-/blob/master/README.md\" class=\"gfm\">link</a></p>"
)
)
end
context 'when no version matches the name' do
let(:name) { 'does_not_exist' }
it 'returns an empty array' do
post_query
expect(graphql_data_at(:ciCatalogResource, :versions, :nodes)).to eq([])
end
end
end
context 'when the resource does not have a version' do
it 'returns an empty array' do
resource.versions.delete_all(:delete_all)
post_query
expect(graphql_data_at(:ciCatalogResource, :versions, :nodes)).to eq([])
end
end
end
end
|