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 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517
|
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe 'Getting contributedProjects of the user', feature_category: :groups_and_projects do
include GraphqlHelpers
let(:query) { graphql_query_for(:user, user_params, user_fields) }
let(:user_params) { { username: user.username } }
let(:user_fields) { 'contributedProjects { nodes { id } }' }
let_it_be(:user) { create(:user, :with_namespace) }
let_it_be(:current_user) { create(:user) }
let_it_be(:public_project) { create(:project, :public, name: 'foo') }
let_it_be(:private_project) { create(:project, :private, name: 'bar') }
let_it_be(:internal_project) { create(:project, :internal, name: 'baz') }
let_it_be(:personal_project) { create(:project, namespace: user.namespace, name: 'biz') }
let(:path) { %i[user contributed_projects nodes] }
before_all do
private_project.add_developer(user)
private_project.add_developer(current_user)
personal_project.add_developer(current_user)
travel_to(4.hours.from_now) { create(:push_event, project: private_project, author: user) }
travel_to(3.hours.from_now) { create(:push_event, project: internal_project, author: user) }
travel_to(2.hours.from_now) { create(:push_event, project: public_project, author: user) }
travel_to(2.hours.from_now) { create(:push_event, project: personal_project, author: user) }
end
it_behaves_like 'a working graphql query' do
before do
post_graphql(query, current_user: current_user)
end
end
describe 'sorting' do
let(:user_fields_with_sort) { "contributedProjects(sort: #{sort_parameter}) { nodes { id } }" }
let(:query_with_sort) { graphql_query_for(:user, user_params, user_fields_with_sort) }
context 'when sort parameter is not provided' do
it 'returns contributed projects in default order(LATEST_ACTIVITY_DESC)' do
post_graphql(query, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
public_project.to_global_id.to_s
])
end
end
context 'when sort parameter for id is provided' do
context 'when ID_ASC is provided' do
let(:sort_parameter) { 'ID_ASC' }
it 'returns contributed projects in id ascending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
public_project.to_global_id.to_s,
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s
])
end
end
context 'when ID_DESC is provided' do
let(:sort_parameter) { 'ID_DESC' }
it 'returns contributed projects in id descending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
internal_project.to_global_id.to_s,
private_project.to_global_id.to_s,
public_project.to_global_id.to_s
])
end
end
end
context 'when sort parameter for name is provided' do
before_all do
public_project.update!(name: 'Project A')
internal_project.update!(name: 'Project B')
private_project.update!(name: 'Project C')
end
context 'when NAME_ASC is provided' do
let(:sort_parameter) { 'NAME_ASC' }
it 'returns contributed projects in name ascending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
public_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
private_project.to_global_id.to_s
])
end
end
context 'when NAME_DESC is provided' do
let(:sort_parameter) { 'NAME_DESC' }
it 'returns contributed projects in name descending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
public_project.to_global_id.to_s
])
end
end
end
context 'when sort parameter for path is provided' do
before_all do
public_project.update!(path: 'Project-1')
internal_project.update!(path: 'Project-2')
private_project.update!(path: 'Project-3')
end
context 'when PATH_ASC is provided' do
let(:sort_parameter) { 'PATH_ASC' }
it 'returns contributed projects in path ascending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
public_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
private_project.to_global_id.to_s
])
end
end
context 'when PATH_DESC is provided' do
let(:sort_parameter) { 'PATH_DESC' }
it 'returns contributed projects in path descending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
public_project.to_global_id.to_s
])
end
end
end
context 'when sort parameter for stars is provided' do
before_all do
public_project.update!(star_count: 10)
internal_project.update!(star_count: 20)
private_project.update!(star_count: 30)
end
context 'when STARS_ASC is provided' do
let(:sort_parameter) { 'STARS_ASC' }
it 'returns contributed projects in stars ascending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
public_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
private_project.to_global_id.to_s
])
end
end
context 'when STARS_DESC is provided' do
let(:sort_parameter) { 'STARS_DESC' }
it 'returns contributed projects in stars descending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
public_project.to_global_id.to_s
])
end
end
end
context 'when sort parameter for latest activity is provided' do
context 'when LATEST_ACTIVITY_ASC is provided' do
let(:sort_parameter) { 'LATEST_ACTIVITY_ASC' }
it 'returns contributed projects in latest activity ascending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
public_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
private_project.to_global_id.to_s
])
end
end
context 'when LATEST_ACTIVITY_DESC is provided' do
let(:sort_parameter) { 'LATEST_ACTIVITY_DESC' }
it 'returns contributed projects in latest activity descending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
public_project.to_global_id.to_s
])
end
end
end
context 'when sort parameter for created_at is provided' do
before_all do
public_project.update!(created_at: Time.current + 1.hour)
internal_project.update!(created_at: Time.current + 2.hours)
private_project.update!(created_at: Time.current + 3.hours)
end
context 'when CREATED_ASC is provided' do
let(:sort_parameter) { 'CREATED_ASC' }
it 'returns contributed projects in created_at ascending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
public_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
private_project.to_global_id.to_s
])
end
end
context 'when CREATED_DESC is provided' do
let(:sort_parameter) { 'CREATED_DESC' }
it 'returns contributed projects in created_at descending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
public_project.to_global_id.to_s
])
end
end
end
context 'when sort parameter for updated_at is provided' do
before_all do
public_project.update!(updated_at: Time.current + 1.hour)
internal_project.update!(updated_at: Time.current + 2.hours)
private_project.update!(updated_at: Time.current + 3.hours)
end
context 'when UPDATED_ASC is provided' do
let(:sort_parameter) { 'UPDATED_ASC' }
it 'returns contributed projects in updated_at ascending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
public_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
private_project.to_global_id.to_s
])
end
end
context 'when UPDATED_DESC is provided' do
let(:sort_parameter) { 'UPDATED_DESC' }
it 'returns contributed projects in updated_at descending order' do
post_graphql(query_with_sort, current_user: current_user)
expect(graphql_data_at(*path).pluck('id')).to eq([
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
public_project.to_global_id.to_s
])
end
end
end
end
describe 'min_access_level' do
let_it_be(:project_with_owner_access) { create(:project, :private) }
let(:user_fields_with_min_access_level) do
"contributedProjects(minAccessLevel: #{min_access_level}) { nodes { id } }"
end
let(:query_with_min_access_level) { graphql_query_for(:user, user_params, user_fields_with_min_access_level) }
before_all do
project_with_owner_access.add_owner(user)
project_with_owner_access.add_owner(current_user)
travel_to(4.hours.from_now) { create(:push_event, project: project_with_owner_access, author: user) }
end
context 'when min_access_level is OWNER' do
let(:min_access_level) { :OWNER }
it 'returns only projects user has owner access to' do
post_graphql(query_with_min_access_level, current_user: current_user)
expect(graphql_data_at(*path))
.to contain_exactly(a_graphql_entity_for(project_with_owner_access))
end
end
context 'when min_access_level is DEVELOPER' do
let(:min_access_level) { :DEVELOPER }
it 'returns only projects user has developer or higher access to' do
post_graphql(query_with_min_access_level, current_user: current_user)
expect(graphql_data_at(*path))
.to contain_exactly(
a_graphql_entity_for(project_with_owner_access),
a_graphql_entity_for(private_project)
)
end
end
end
describe 'programming_language_name' do
let_it_be(:ruby) { create(:programming_language, name: 'Ruby') }
let_it_be(:repository_language) do
create(:repository_language, project: internal_project, programming_language: ruby, share: 1)
end
let(:query_with_programming_language_name) do
graphql_query_for(:user, user_params, 'contributedProjects(programmingLanguageName: "ruby") { nodes { id } }')
end
it 'returns only projects with ruby programming language' do
post_graphql(query_with_programming_language_name, current_user: current_user)
expect(graphql_data_at(*path))
.to contain_exactly(
a_graphql_entity_for(internal_project)
)
end
end
describe 'search' do
let(:query_with_search) do
graphql_query_for(:user, user_params, 'contributedProjects(search: "foo") { nodes { id } }')
end
it 'returns only projects that match search query' do
post_graphql(query_with_search, current_user: current_user)
expect(graphql_data_at(*path))
.to contain_exactly(
a_graphql_entity_for(public_project)
)
end
end
describe 'accessible' do
context 'when user profile is public' do
context 'when a logged in user with membership in the private project' do
it 'returns contributed projects with visibility to the logged in user' do
post_graphql(query, current_user: current_user)
expect(graphql_data_at(*path)).to contain_exactly(
a_graphql_entity_for(private_project),
a_graphql_entity_for(internal_project),
a_graphql_entity_for(public_project)
)
end
end
context 'when a logged in user with no visibility to the private project' do
let_it_be(:current_user_2) { create(:user) }
it 'returns contributed projects with visibility to the logged in user' do
post_graphql(query, current_user: current_user_2)
expect(graphql_data_at(*path)).to contain_exactly(
a_graphql_entity_for(internal_project),
a_graphql_entity_for(public_project)
)
end
end
context 'when an anonymous user' do
it 'returns nothing' do
post_graphql(query, current_user: nil)
expect(graphql_data_at(*path)).to be_nil
end
end
end
context 'when user profile is private' do
let(:user_params) { { username: private_user.username } }
let_it_be(:private_user) { create(:user, :private_profile) }
before_all do
private_project.add_developer(private_user)
private_project.add_developer(current_user)
create(:push_event, project: private_project, author: private_user)
create(:push_event, project: internal_project, author: private_user)
create(:push_event, project: public_project, author: private_user)
end
context 'when a logged in user' do
it 'returns no project' do
post_graphql(query, current_user: current_user)
expect(graphql_data_at(*path)).to be_empty
end
end
context 'when an anonymous user' do
it 'returns nothing' do
post_graphql(query, current_user: nil)
expect(graphql_data_at(*path)).to be_nil
end
end
context 'when a logged in user is the user' do
it 'returns the user\'s all contributed projects' do
post_graphql(query, current_user: private_user)
expect(graphql_data_at(*path)).to contain_exactly(
a_graphql_entity_for(private_project),
a_graphql_entity_for(internal_project),
a_graphql_entity_for(public_project)
)
end
end
end
end
context 'when include_personal argument is false' do
it 'does not include personal projects' do
post_graphql(query, current_user: current_user)
expect(graphql_data_at(*path))
.to contain_exactly(
a_graphql_entity_for(private_project),
a_graphql_entity_for(internal_project),
a_graphql_entity_for(public_project)
)
end
end
context 'when include_personal argument is true' do
let(:query_with_include_personal) do
graphql_query_for(:user, user_params, 'contributedProjects(includePersonal: true) { nodes { id } }')
end
it 'includes personal projects' do
post_graphql(query_with_include_personal, current_user: current_user)
expect(graphql_data_at(*path))
.to contain_exactly(
a_graphql_entity_for(private_project),
a_graphql_entity_for(internal_project),
a_graphql_entity_for(public_project),
a_graphql_entity_for(personal_project)
)
end
end
describe 'sorting and pagination' do
let(:data_path) { [:user, :contributed_projects] }
def pagination_query(params)
graphql_query_for(:user, user_params, "contributedProjects(#{params}) { #{page_info} nodes { id } }")
end
context 'when sorting in latest activity ascending order' do
it_behaves_like 'sorted paginated query' do
let(:sort_param) { :LATEST_ACTIVITY_ASC }
let(:first_param) { 1 }
let(:all_records) do
[
public_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
private_project.to_global_id.to_s
]
end
end
end
context 'when sorting in latest activity descending order' do
it_behaves_like 'sorted paginated query' do
let(:sort_param) { :LATEST_ACTIVITY_DESC }
let(:first_param) { 1 }
let(:all_records) do
[
private_project.to_global_id.to_s,
internal_project.to_global_id.to_s,
public_project.to_global_id.to_s
]
end
end
end
end
end
|