debian-mirror-gitlab/spec/requests/api/package_files_spec.rb
2023-07-09 08:55:56 +05:30

264 lines
8.6 KiB
Ruby

# frozen_string_literal: true
require 'spec_helper'
RSpec.describe API::PackageFiles, feature_category: :package_registry do
let(:user) { create(:user) }
let(:project) { create(:project, :public) }
let(:package) { create(:maven_package, project: project) }
describe 'GET /projects/:id/packages/:package_id/package_files' do
let(:url) { "/projects/#{project.id}/packages/#{package.id}/package_files" }
shared_examples 'handling job token and returning' do |status:|
it "returns status #{status}" do
get api(url, job_token: job.token)
expect(response).to have_gitlab_http_status(status)
expect(response).to match_response_schema('public_api/v4/packages/package_files') if status == :ok
end
end
before do
project.add_developer(user)
end
context 'without the need for a license' do
context 'project is public' do
it 'returns 200' do
get api(url)
expect(response).to have_gitlab_http_status(:ok)
end
it 'returns 404 if package does not exist' do
get api("/projects/#{project.id}/packages/0/package_files")
expect(response).to have_gitlab_http_status(:not_found)
end
context 'with JOB-TOKEN auth' do
let(:job) { create(:ci_build, :running, user: user, project: project) }
it_behaves_like 'handling job token and returning', status: :ok
end
end
context 'project is private' do
let(:project) { create(:project, :private) }
it 'returns 404 for non authenticated user' do
get api(url)
expect(response).to have_gitlab_http_status(:not_found)
end
it 'returns 404 for a user without access to the project', :sidekiq_inline do
project.team.truncate
get api(url, user)
expect(response).to have_gitlab_http_status(:not_found)
end
it 'returns 200 and valid response schema' do
get api(url, user)
expect(response).to have_gitlab_http_status(:ok)
expect(response).to match_response_schema('public_api/v4/packages/package_files')
end
context 'with JOB-TOKEN auth' do
let(:job) { create(:ci_build, :running, user: user, project: project) }
context 'a non authenticated user' do
let(:user) { nil }
it_behaves_like 'handling job token and returning', status: :not_found
end
context 'a user without access to the project', :sidekiq_inline do
before do
project.team.truncate
end
it_behaves_like 'handling job token and returning', status: :not_found
end
context 'a user with access to the project' do
it_behaves_like 'handling job token and returning', status: :ok
end
end
end
context 'with pagination params' do
let(:per_page) { 2 }
let!(:package_file_1) { package.package_files[0] }
let!(:package_file_2) { package.package_files[1] }
let!(:package_file_3) { package.package_files[2] }
context 'when viewing the first page' do
it 'returns first 2 packages' do
get api(url, user), params: { page: 1, per_page: per_page }
expect_paginated_array_response([package_file_1.id, package_file_2.id])
end
end
context 'viewing the second page' do
it 'returns the last package' do
get api(url, user), params: { page: 2, per_page: per_page }
expect_paginated_array_response([package_file_3.id])
end
end
end
context 'with package files pending destruction' do
let!(:package_file_pending_destruction) { create(:package_file, :pending_destruction, package: package) }
let(:package_file_ids) { json_response.map { |e| e['id'] } }
it 'does not return them' do
get api(url, user)
expect(package_file_ids).not_to include(package_file_pending_destruction.id)
end
end
end
end
describe 'DELETE /projects/:id/packages/:package_id/package_files/:package_file_id' do
let(:package_file_id) { package.package_files.first.id }
let(:url) { "/projects/#{project.id}/packages/#{package.id}/package_files/#{package_file_id}" }
subject(:api_request) { delete api(url, user) }
shared_examples 'handling job token and returning' do |status:|
it "returns status #{status}", :aggregate_failures do
if status == :no_content
expect { api_request }.to change { package.package_files.pending_destruction.count }.by(1)
else
expect { api_request }.not_to change { package.package_files.pending_destruction.count }
end
expect(response).to have_gitlab_http_status(status)
end
end
context 'project is public' do
context 'without user' do
let(:user) { nil }
it 'returns 403 for non authenticated user', :aggregate_failures do
expect { api_request }.not_to change { package.package_files.pending_destruction.count }
expect(response).to have_gitlab_http_status(:forbidden)
end
end
context 'with JOB-TOKEN auth' do
subject(:api_request) { delete api(url, job_token: job.token) }
let(:job) { create(:ci_build, :running, user: user, project: project) }
it_behaves_like 'handling job token and returning', status: :forbidden
end
it 'returns 403 for a user without access to the project', :aggregate_failures do
expect { api_request }.not_to change { package.package_files.pending_destruction.count }
expect(response).to have_gitlab_http_status(:forbidden)
end
end
context 'project is private' do
let_it_be_with_refind(:project) { create(:project, :private) }
it 'returns 404 for a user without access to the project', :aggregate_failures do
expect { api_request }.not_to change { package.package_files.pending_destruction.count }
expect(response).to have_gitlab_http_status(:not_found)
end
it 'returns 403 for a user without enough permissions', :aggregate_failures do
project.add_developer(user)
expect { api_request }.not_to change { package.package_files.pending_destruction.count }
expect(response).to have_gitlab_http_status(:forbidden)
end
it 'returns 204', :aggregate_failures do
project.add_maintainer(user)
expect { api_request }.to change { package.package_files.pending_destruction.count }.by(1)
expect(response).to have_gitlab_http_status(:no_content)
end
context 'without user' do
let(:user) { nil }
it 'returns 404 for non authenticated user', :aggregate_failures do
expect { api_request }.not_to change { package.package_files.pending_destruction.count }
expect(response).to have_gitlab_http_status(:not_found)
end
end
context 'invalid file' do
let(:url) { "/projects/#{project.id}/packages/#{package.id}/package_files/999999" }
it 'returns 404 when the package file does not exist', :aggregate_failures do
project.add_maintainer(user)
expect { api_request }.not_to change { package.package_files.pending_destruction.count }
expect(response).to have_gitlab_http_status(:not_found)
end
end
context 'with package file pending destruction' do
let!(:package_file_id) { create(:package_file, :pending_destruction, package: package).id }
before do
project.add_maintainer(user)
end
it 'can not be accessed', :aggregate_failures do
expect { api_request }.not_to change { package.package_files.pending_destruction.count }
expect(response).to have_gitlab_http_status(:not_found)
end
end
context 'with JOB-TOKEN auth' do
subject(:api_request) { delete api(url, job_token: job.token) }
let(:job) { create(:ci_build, :running, user: user, project: project) }
let_it_be_with_refind(:project) { create(:project, :private) }
context 'a user without access to the project' do
it_behaves_like 'handling job token and returning', status: :not_found
end
context 'a user without enough permissions' do
before do
project.add_developer(user)
end
it_behaves_like 'handling job token and returning', status: :forbidden
end
context 'a user with the right permissions' do
before do
project.add_maintainer(user)
end
it_behaves_like 'handling job token and returning', status: :no_content
end
end
end
end
end