switch to https by bero request

This commit is contained in:
Alexander Stefanov 2023-05-18 15:32:51 +02:00
parent 732b89b3d7
commit d45ae84d0a
2 changed files with 5 additions and 5 deletions

View File

@ -3,14 +3,14 @@ common: &common
repo_project_name: Openmandriva ABF repo_project_name: Openmandriva ABF
anonymous_access: true anonymous_access: true
preregistration: false preregistration: false
file_store_url: 'http://file-store.openmandriva.org' file_store_url: 'https://file-store.openmandriva.org'
distr_types: ['mdv'] distr_types: ['mdv']
github_organization: 'OpenMandrivaAssociation' github_organization: 'OpenMandrivaAssociation'
allowed_addresses: allowed_addresses:
- 127.0.0.1 - 127.0.0.1
abf_worker: abf_worker:
publish_workers_count: 1 publish_workers_count: 1
downloads_url: 'http://abf-downloads.openmandriva.org/' downloads_url: 'https://abf-downloads.openmandriva.org/'
development: development:
<<: *common <<: *common

View File

@ -6,7 +6,7 @@ describe FileStoreService::File do
context '#exist?' do context '#exist?' do
let(:response) { [ { file_name: 'test.log', sha1_hash: sha1 } ].to_json } let(:response) { [ { file_name: 'test.log', sha1_hash: sha1 } ].to_json }
let(:url) { "http://file-store.rosalinux.ru/api/v1/file_stores.json?hash=#{sha1}" } let(:url) { "https://file-store.rosalinux.ru/api/v1/file_stores.json?hash=#{sha1}" }
subject { FileStoreService::File.new(sha1: sha1) } subject { FileStoreService::File.new(sha1: sha1) }
@ -43,7 +43,7 @@ describe FileStoreService::File do
end end
context 'file does not exist on FS' do context 'file does not exist on FS' do
let(:url) { "http://test-token:@file-store.rosalinux.ru/api/v1/upload" } let(:url) { "https://test-token:@file-store.rosalinux.ru/api/v1/upload" }
let(:response) { { sha1_hash: sha1 }.to_json } let(:response) { { sha1_hash: sha1 }.to_json }
before do before do
@ -70,7 +70,7 @@ describe FileStoreService::File do
end end
context '#destroy' do context '#destroy' do
let(:url) { "http://file-store.rosalinux.ru/api/v1/file_stores/#{sha1}.json" } let(:url) { "https://file-store.rosalinux.ru/api/v1/file_stores/#{sha1}.json" }
it 'not raise errors' do it 'not raise errors' do
stub_request(:delete, url).to_raise(StandardError) stub_request(:delete, url).to_raise(StandardError)