debian-mirror-gitlab/qa/spec/git/repository_spec.rb

70 lines
2 KiB
Ruby
Raw Normal View History

2018-11-08 19:23:39 +05:30
describe QA::Git::Repository do
2018-12-13 13:39:08 +05:30
include Support::StubENV
2018-11-08 19:23:39 +05:30
let(:repository) { described_class.new }
before do
2018-12-13 13:39:08 +05:30
stub_env('GITLAB_USERNAME', 'root')
2018-11-08 19:23:39 +05:30
cd_empty_temp_directory
set_bad_uri
repository.use_default_credentials
end
describe '#clone' do
2018-12-13 13:39:08 +05:30
it 'is unable to resolve host' do
expect(repository.clone).to include("fatal: unable to access 'http://root@foo/bar.git/'")
2018-11-08 19:23:39 +05:30
end
end
describe '#push_changes' do
before do
`git init` # need a repo to push from
end
2018-12-13 13:39:08 +05:30
it 'fails to push changes' do
expect(repository.push_changes).to include("error: failed to push some refs to 'http://root@foo/bar.git'")
end
end
describe '#git_protocol=' do
[0, 1, 2].each do |version|
it "configures git to use protocol version #{version}" do
expect(repository).to receive(:run).with("git config protocol.version #{version}")
repository.git_protocol = version
end
end
it 'raises an error if the version is unsupported' do
expect { repository.git_protocol = 'foo' }.to raise_error(ArgumentError, "Please specify the protocol you would like to use: 0, 1, or 2")
end
end
describe '#fetch_supported_git_protocol' do
it "reports the detected version" do
expect(repository).to receive(:run).and_return("packet: git< version 2")
expect(repository.fetch_supported_git_protocol).to eq('2')
end
it 'reports unknown if version is unknown' do
expect(repository).to receive(:run).and_return("packet: git< version -1")
expect(repository.fetch_supported_git_protocol).to eq('unknown')
end
2018-11-08 19:23:39 +05:30
2018-12-13 13:39:08 +05:30
it 'reports unknown if content does not identify a version' do
expect(repository).to receive(:run).and_return("foo")
expect(repository.fetch_supported_git_protocol).to eq('unknown')
2018-11-08 19:23:39 +05:30
end
end
def cd_empty_temp_directory
tmp_dir = 'tmp/git-repository-spec/'
2018-11-20 20:47:30 +05:30
FileUtils.rm_rf(tmp_dir) if ::File.exist?(tmp_dir)
2018-11-08 19:23:39 +05:30
FileUtils.mkdir_p tmp_dir
FileUtils.cd tmp_dir
end
def set_bad_uri
repository.uri = 'http://foo/bar.git'
end
end