debian-mirror-gitlab/spec/requests/api/debian_project_packages_spec.rb

66 lines
2.8 KiB
Ruby
Raw Normal View History

2021-01-03 14:25:43 +05:30
# frozen_string_literal: true
require 'spec_helper'
RSpec.describe API::DebianProjectPackages do
include HttpBasicAuthHelpers
include WorkhorseHelpers
2021-06-08 01:23:25 +05:30
include_context 'Debian repository shared context', :project, true do
2021-03-11 19:13:27 +05:30
describe 'GET projects/:id/packages/debian/dists/*distribution/Release.gpg' do
2021-09-04 01:27:46 +05:30
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution.codename}/Release.gpg" }
2021-01-03 14:25:43 +05:30
2021-06-08 01:23:25 +05:30
it_behaves_like 'Debian repository read endpoint', 'GET request', :not_found
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
describe 'GET projects/:id/packages/debian/dists/*distribution/Release' do
2021-09-04 01:27:46 +05:30
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution.codename}/Release" }
2021-01-03 14:25:43 +05:30
2021-09-04 01:27:46 +05:30
it_behaves_like 'Debian repository read endpoint', 'GET request', :success, /^TODO Release$/
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
describe 'GET projects/:id/packages/debian/dists/*distribution/InRelease' do
2021-09-04 01:27:46 +05:30
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution.codename}/InRelease" }
2021-01-03 14:25:43 +05:30
2021-06-08 01:23:25 +05:30
it_behaves_like 'Debian repository read endpoint', 'GET request', :not_found
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
describe 'GET projects/:id/packages/debian/dists/*distribution/:component/binary-:architecture/Packages' do
2021-09-04 01:27:46 +05:30
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution.codename}/#{component}/binary-#{architecture}/Packages" }
2021-01-03 14:25:43 +05:30
2021-09-04 01:27:46 +05:30
it_behaves_like 'Debian repository read endpoint', 'GET request', :success, /^TODO Packages$/
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
describe 'GET projects/:id/packages/debian/pool/:component/:letter/:source_package/:file_name' do
2021-06-08 01:23:25 +05:30
let(:url) { "/projects/#{container.id}/packages/debian/pool/#{component}/#{letter}/#{source_package}/#{package_name}_#{package_version}_#{architecture}.deb" }
2021-01-03 14:25:43 +05:30
2021-09-04 01:27:46 +05:30
it_behaves_like 'Debian repository read endpoint', 'GET request', :success, /^TODO File$/
2021-01-03 14:25:43 +05:30
end
2021-03-11 19:13:27 +05:30
describe 'PUT projects/:id/packages/debian/:file_name' do
2021-01-03 14:25:43 +05:30
let(:method) { :put }
2021-06-08 01:23:25 +05:30
let(:url) { "/projects/#{container.id}/packages/debian/#{file_name}" }
2021-09-04 01:27:46 +05:30
let(:snowplow_gitlab_standard_context) { { project: container, user: user, namespace: container.namespace } }
2021-01-03 14:25:43 +05:30
2021-09-04 01:27:46 +05:30
context 'with a deb' do
let(:file_name) { 'libsample0_1.2.3~alpha2_amd64.deb' }
it_behaves_like 'Debian repository write endpoint', 'upload request', :created
end
context 'with a changes file' do
let(:file_name) { 'sample_1.2.3~alpha2_amd64.changes' }
it_behaves_like 'Debian repository write endpoint', 'upload request', :created
end
2021-01-03 14:25:43 +05:30
end
2021-03-08 18:12:59 +05:30
2021-03-11 19:13:27 +05:30
describe 'PUT projects/:id/packages/debian/:file_name/authorize' do
2021-09-04 01:27:46 +05:30
let(:file_name) { 'libsample0_1.2.3~alpha2_amd64.deb' }
2021-03-08 18:12:59 +05:30
let(:method) { :put }
2021-06-08 01:23:25 +05:30
let(:url) { "/projects/#{container.id}/packages/debian/#{file_name}/authorize" }
2021-03-08 18:12:59 +05:30
2021-06-08 01:23:25 +05:30
it_behaves_like 'Debian repository write endpoint', 'upload authorize request', :created
2021-03-08 18:12:59 +05:30
end
2021-01-03 14:25:43 +05:30
end
end