debian-mirror-gitlab/spec/lib/gitlab/gitaly_client/remote_service_spec.rb

67 lines
2.6 KiB
Ruby
Raw Normal View History

2019-12-26 22:10:19 +05:30
# frozen_string_literal: true
2018-03-17 18:26:18 +05:30
require 'spec_helper'
2020-07-28 23:09:34 +05:30
RSpec.describe Gitlab::GitalyClient::RemoteService do
2018-03-17 18:26:18 +05:30
let(:project) { create(:project) }
let(:storage_name) { project.repository_storage }
let(:relative_path) { project.disk_path + '.git' }
let(:client) { described_class.new(project.repository) }
2018-11-20 20:47:30 +05:30
describe '#find_remote_root_ref' do
2021-06-08 01:23:25 +05:30
let(:url) { 'http://git.example.com/my-repo.git' }
let(:auth) { 'Basic secret' }
2021-09-04 01:27:46 +05:30
let(:expected_params) { { remote_url: url, http_authorization_header: auth } }
2021-06-08 01:23:25 +05:30
2021-09-04 01:27:46 +05:30
it 'sends an find_remote_root_ref message and returns the root ref' do
expect_any_instance_of(Gitaly::RemoteService::Stub)
.to receive(:find_remote_root_ref)
.with(gitaly_request_with_path(storage_name, relative_path), kind_of(Hash))
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
.and_return(double(ref: 'master'))
2021-06-08 01:23:25 +05:30
2021-10-27 15:23:28 +05:30
expect(client.find_remote_root_ref(url, auth)).to eq 'master'
2021-06-08 01:23:25 +05:30
end
2021-09-04 01:27:46 +05:30
it 'ensure ref is a valid UTF-8 string' do
expect_any_instance_of(Gitaly::RemoteService::Stub)
.to receive(:find_remote_root_ref)
.with(gitaly_request_with_path(storage_name, relative_path), kind_of(Hash))
.with(gitaly_request_with_params(expected_params), kind_of(Hash))
.and_return(double(ref: "an_invalid_ref_\xE5"))
2018-11-20 20:47:30 +05:30
2021-10-27 15:23:28 +05:30
expect(client.find_remote_root_ref(url, auth)).to eq "an_invalid_ref_å"
2018-11-20 20:47:30 +05:30
end
end
2018-03-17 18:26:18 +05:30
describe '#update_remote_mirror' do
2020-03-13 15:44:24 +05:30
let(:only_branches_matching) { %w[my-branch master] }
2019-02-15 15:39:39 +05:30
let(:ssh_key) { 'KEY' }
let(:known_hosts) { 'KNOWN HOSTS' }
2021-10-27 15:23:28 +05:30
let(:url) { 'http:://git.example.com/my-repo.git' }
let(:expected_params) { { remote: Gitaly::UpdateRemoteMirrorRequest::Remote.new(url: url) } }
2018-03-17 18:26:18 +05:30
2021-10-27 15:23:28 +05:30
it 'sends an update_remote_mirror message' do
expect_any_instance_of(Gitaly::RemoteService::Stub)
.to receive(:update_remote_mirror)
.with(array_including(gitaly_request_with_params(expected_params)), kind_of(Hash))
.and_return(double(:update_remote_mirror_response))
2018-03-17 18:26:18 +05:30
2021-10-27 15:23:28 +05:30
client.update_remote_mirror(url, only_branches_matching, ssh_key: ssh_key, known_hosts: known_hosts, keep_divergent_refs: true)
2018-03-17 18:26:18 +05:30
end
end
2018-05-09 12:01:36 +05:30
describe '.exists?' do
context "when the remote doesn't exist" do
let(:url) { 'https://gitlab.com/gitlab-org/ik-besta-niet-of-ik-word-geplaagd.git' }
2020-07-28 23:09:34 +05:30
let(:storage_name) { 'default' }
2018-05-09 12:01:36 +05:30
it 'returns false' do
2020-07-28 23:09:34 +05:30
expect(Gitaly::FindRemoteRepositoryRequest).to receive(:new).with(remote: url, storage_name: storage_name).and_call_original
2018-05-09 12:01:36 +05:30
expect(described_class.exists?(url)).to be(false)
end
end
end
2018-03-17 18:26:18 +05:30
end