Skip to content

Commit dad7ba3

Browse files
author
Lyra Naeseth
committed
Default to SSH clone URI when private_key is set
Fixes jtarchie#205.
1 parent 37d226d commit dad7ba3

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

assets/lib/commands/in.rb

+3-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,9 @@ def pr
7979
end
8080

8181
def uri
82-
input.source.uri || "https://github.com/#{input.source.repo}"
82+
return input.source.uri if input.source.uri
83+
return "[email protected]:#{input.source.repo}.git" if input.source.private_key
84+
return "https://github.com/#{input.source.repo}"
8385
end
8486

8587
def ref

spec/commands/in_spec.rb

+21-3
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,15 @@ def git_uri
1616

1717
let(:dest_dir) { Dir.mktmpdir }
1818

19-
def get(payload)
19+
def command(payload)
2020
payload['source']['skip_ssl_verification'] = true
2121
Input.instance(payload: payload)
22-
command = Commands::In.new(destination: dest_dir)
23-
command.output
22+
23+
Commands::In.new(destination: dest_dir)
24+
end
25+
26+
def get(payload)
27+
command(payload).output
2428
end
2529

2630
def stub_json(uri, body)
@@ -158,6 +162,20 @@ def dest_dir
158162
end
159163
end
160164

165+
context 'when an SSH key is specified' do
166+
it 'defaults to an SSH clone URI' do
167+
cmd = command('version' => { 'ref' => @ref, 'pr' => '1' }, 'source' => { 'private_key' => '-----BEGIN', 'repo' => 'jtarchie/test' })
168+
expect(cmd.send(:uri)).to eq '[email protected]:jtarchie/test.git'
169+
end
170+
end
171+
172+
context 'when an SSH key is not specified' do
173+
it 'defaults to an HTTPS clone URI' do
174+
cmd = command('version' => { 'ref' => @ref, 'pr' => '1' }, 'source' => { 'repo' => 'jtarchie/test' })
175+
expect(cmd.send(:uri)).to eq 'https://github.com/jtarchie/test'
176+
end
177+
end
178+
161179
context 'when the git clone fails' do
162180
it 'provides a helpful erorr message' do
163181
stub_json('https://api.github.com:443/repos/jtarchie/test/pulls/1', html_url: 'http://example.com', number: 1, head: { ref: 'foo' }, base: { ref: 'master', user: { login: 'jtarchie' } }, user: { login: 'jtarchie-contributor' })

0 commit comments

Comments
 (0)