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-06-08 01:23:25 +05:30
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution}/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-06-08 01:23:25 +05:30
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution}/Release" }
|
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', :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-06-08 01:23:25 +05:30
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution}/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-06-08 01:23:25 +05:30
|
|
|
let(:url) { "/projects/#{container.id}/packages/debian/dists/#{distribution}/#{component}/binary-#{architecture}/Packages" }
|
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', :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-06-08 01:23:25 +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-01-03 14:25:43 +05:30
|
|
|
|
2021-06-08 01:23:25 +05:30
|
|
|
it_behaves_like 'Debian repository write endpoint', 'upload request', :created
|
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-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
|