2020-09-28 05:09:35 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe API::DebianProjectPackages do
|
|
|
|
include HttpBasicAuthHelpers
|
|
|
|
include WorkhorseHelpers
|
|
|
|
|
2021-05-18 11:10:46 -04:00
|
|
|
include_context 'Debian repository shared context', :project, true do
|
2021-01-22 07:08:52 -05:00
|
|
|
describe 'GET projects/:id/packages/debian/dists/*distribution/Release.gpg' do
|
2021-06-14 14:10:28 -04:00
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution.codename}/Release.gpg" }
|
2020-09-28 05:09:35 -04:00
|
|
|
|
2021-05-18 11:10:46 -04:00
|
|
|
it_behaves_like 'Debian repository read endpoint', 'GET request', :not_found
|
2020-09-28 05:09:35 -04:00
|
|
|
end
|
|
|
|
|
2021-01-22 07:08:52 -05:00
|
|
|
describe 'GET projects/:id/packages/debian/dists/*distribution/Release' do
|
2021-06-14 14:10:28 -04:00
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution.codename}/Release" }
|
2020-09-28 05:09:35 -04:00
|
|
|
|
2021-06-21 23:07:55 -04:00
|
|
|
it_behaves_like 'Debian repository read endpoint', 'GET request', :success, /^Codename: fixture-distribution\n$/
|
2020-09-28 05:09:35 -04:00
|
|
|
end
|
|
|
|
|
2021-01-22 07:08:52 -05:00
|
|
|
describe 'GET projects/:id/packages/debian/dists/*distribution/InRelease' do
|
2021-06-14 14:10:28 -04:00
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution.codename}/InRelease" }
|
2020-09-28 05:09:35 -04:00
|
|
|
|
2021-06-21 23:07:55 -04:00
|
|
|
it_behaves_like 'Debian repository read endpoint', 'GET request', :success, /^Codename: fixture-distribution\n$/
|
2020-09-28 05:09:35 -04:00
|
|
|
end
|
|
|
|
|
2021-01-22 07:08:52 -05:00
|
|
|
describe 'GET projects/:id/packages/debian/dists/*distribution/:component/binary-:architecture/Packages' do
|
2021-06-14 14:10:28 -04:00
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution.codename}/#{component}/binary-#{architecture}/Packages" }
|
2020-09-28 05:09:35 -04:00
|
|
|
|
2021-06-14 14:10:28 -04:00
|
|
|
it_behaves_like 'Debian repository read endpoint', 'GET request', :success, /^TODO Packages$/
|
2020-09-28 05:09:35 -04:00
|
|
|
end
|
|
|
|
|
2021-01-22 07:08:52 -05:00
|
|
|
describe 'GET projects/:id/packages/debian/pool/:component/:letter/:source_package/:file_name' do
|
2021-05-18 11:10:46 -04:00
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/pool/#{component}/#{letter}/#{source_package}/#{package_name}_#{package_version}_#{architecture}.deb" }
|
2020-09-28 05:09:35 -04:00
|
|
|
|
2021-06-14 14:10:28 -04:00
|
|
|
it_behaves_like 'Debian repository read endpoint', 'GET request', :success, /^TODO File$/
|
2020-09-28 05:09:35 -04:00
|
|
|
end
|
|
|
|
|
2021-01-22 07:08:52 -05:00
|
|
|
describe 'PUT projects/:id/packages/debian/:file_name' do
|
2020-09-28 05:09:35 -04:00
|
|
|
let(:method) { :put }
|
2021-05-18 11:10:46 -04:00
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/#{file_name}" }
|
2021-06-07 08:10:00 -04:00
|
|
|
let(:snowplow_gitlab_standard_context) { { project: container, user: user, namespace: container.namespace } }
|
2020-09-28 05:09:35 -04:00
|
|
|
|
2021-05-25 11:10:33 -04:00
|
|
|
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
|
2020-09-28 05:09:35 -04:00
|
|
|
end
|
2021-01-12 22:10:20 -05:00
|
|
|
|
2021-01-22 07:08:52 -05:00
|
|
|
describe 'PUT projects/:id/packages/debian/:file_name/authorize' do
|
2021-05-25 11:10:33 -04:00
|
|
|
let(:file_name) { 'libsample0_1.2.3~alpha2_amd64.deb' }
|
2021-01-12 22:10:20 -05:00
|
|
|
let(:method) { :put }
|
2021-05-18 11:10:46 -04:00
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/#{file_name}/authorize" }
|
2021-01-12 22:10:20 -05:00
|
|
|
|
2021-05-18 11:10:46 -04:00
|
|
|
it_behaves_like 'Debian repository write endpoint', 'upload authorize request', :created
|
2021-01-12 22:10:20 -05:00
|
|
|
end
|
2020-09-28 05:09:35 -04:00
|
|
|
end
|
|
|
|
end
|