2018-02-12 10:25:18 -05:00
|
|
|
describe QA::Git::Repository::Location do
|
|
|
|
describe '.parse' do
|
2018-02-12 03:43:32 -05:00
|
|
|
context 'when URI starts with ssh://' do
|
|
|
|
context 'when URI has port' do
|
|
|
|
it 'parses correctly' do
|
|
|
|
uri = described_class
|
2018-02-12 10:25:18 -05:00
|
|
|
.parse('ssh://git@qa.test:2222/sandbox/qa/repo.git')
|
2018-02-12 03:43:32 -05:00
|
|
|
|
|
|
|
expect(uri.user).to eq('git')
|
|
|
|
expect(uri.host).to eq('qa.test')
|
|
|
|
expect(uri.port).to eq(2222)
|
|
|
|
expect(uri.path).to eq('/sandbox/qa/repo.git')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when URI does not have port' do
|
|
|
|
it 'parses correctly' do
|
|
|
|
uri = described_class
|
2018-02-12 10:25:18 -05:00
|
|
|
.parse('ssh://git@qa.test/sandbox/qa/repo.git')
|
2018-02-12 03:43:32 -05:00
|
|
|
|
|
|
|
expect(uri.user).to eq('git')
|
|
|
|
expect(uri.host).to eq('qa.test')
|
2018-02-12 10:25:18 -05:00
|
|
|
expect(uri.port).to eq(22)
|
2018-02-12 03:43:32 -05:00
|
|
|
expect(uri.path).to eq('/sandbox/qa/repo.git')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when URI does not start with ssh://' do
|
|
|
|
context 'when host does not have colons' do
|
|
|
|
it 'parses correctly' do
|
|
|
|
uri = described_class
|
2018-02-12 10:25:18 -05:00
|
|
|
.parse('git@qa.test:sandbox/qa/repo.git')
|
2018-02-12 03:43:32 -05:00
|
|
|
|
|
|
|
expect(uri.user).to eq('git')
|
|
|
|
expect(uri.host).to eq('qa.test')
|
2018-02-12 10:25:18 -05:00
|
|
|
expect(uri.port).to eq(22)
|
2018-02-12 03:43:32 -05:00
|
|
|
expect(uri.path).to eq('/sandbox/qa/repo.git')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when host has a colon' do
|
|
|
|
it 'parses correctly' do
|
|
|
|
uri = described_class
|
2018-02-12 10:25:18 -05:00
|
|
|
.parse('[git@qa:test]:sandbox/qa/repo.git')
|
2018-02-12 03:43:32 -05:00
|
|
|
|
|
|
|
expect(uri.user).to eq('git')
|
|
|
|
expect(uri.host).to eq('qa%3Atest')
|
2018-02-12 10:25:18 -05:00
|
|
|
expect(uri.port).to eq(22)
|
2018-02-12 03:43:32 -05:00
|
|
|
expect(uri.path).to eq('/sandbox/qa/repo.git')
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|