1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
|
require_relative '../common'
require 'net/ssh/authentication/key_manager'
module Authentication
class TestKeyManager < NetSSHTest
def test_key_files_and_known_identities_are_empty_by_default
assert manager.key_files.empty?
assert manager.known_identities.empty?
end
def test_keycert_files_are_empty_by_default
assert manager.keycert_files.empty?
end
def test_assume_agent_is_available_by_default
assert manager.use_agent?
end
def test_add_ensures_list_is_unique
manager.add "/first"
manager.add "/second"
manager.add "/third"
manager.add "/second"
assert_equal 3, manager.key_files.length
final_files = manager.key_files.map {|item| item.split('/').last}
assert_equal %w[first second third], final_files
end
def test_add_ensures_keycert_list_is_unique
manager.add_keycert "/first"
manager.add_keycert "/second"
manager.add_keycert "/third"
manager.add_keycert "/second"
assert_equal 3, manager.keycert_files.length
final_files = manager.keycert_files.map {|item| item.split('/').last}
assert_equal %w[first second third], final_files
end
def test_use_agent_should_be_set_to_false_if_agent_could_not_be_found
Net::SSH::Authentication::Agent.expects(:connect).raises(Net::SSH::Authentication::AgentNotAvailable)
assert manager.use_agent?
assert_nil manager.agent
assert !manager.use_agent?
end
def test_agent_should_be_used_by_default
assert manager.use_agent?
end
def test_agent_should_not_be_used_with_no_agent
assert !manager(use_agent: false).use_agent?
end
def test_each_identity_should_load_from_key_files
manager.stubs(:agent).returns(nil)
first = File.expand_path("/first")
second = File.expand_path("/second")
stub_file_private_key first, rsa, rsa_pk
stub_file_private_key second, dsa, dsa_pk
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal 2, identities.length
assert_equal rsa.to_blob, identities.first.to_blob
assert_equal dsa.to_blob, identities.last.to_blob
assert_equal({ from: :file, file: first, key: rsa }, manager.known_identities[rsa_pk])
assert_equal({ from: :file, file: second, key: dsa }, manager.known_identities[dsa_pk])
end
def test_each_identity_should_load_from_implicit_cert_file
manager.stubs(:agent).returns(nil)
first = File.expand_path("/first")
stub_implicit_file_cert first, rsa, rsa_cert
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal 1, identities.length
assert_equal rsa_cert.to_blob, identities.first.to_blob
assert_equal({ from: :file, file: first }, manager.known_identities[rsa_cert])
end
def test_each_identity_should_load_from_explicit_cert_file_given_matching_key_is_loaded
manager.stubs(:agent).returns(nil)
stub_explicit_file_cert File.expand_path("/rsa-cert"), rsa_cert
first = File.expand_path("/first")
stub_file_private_key first, rsa, rsa_pk
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal 2, identities.length
assert_equal rsa.to_blob, identities.first.to_blob
assert_equal rsa_cert.to_blob, identities.last.to_blob
assert_equal({ from: :file, file: first, key: rsa }, manager.known_identities[rsa_pk])
assert_equal({ from: :file, file: first, key: rsa }, manager.known_identities[rsa_cert])
end
def test_each_identity_should_ignore_explicit_cert_file_unless_matching_key_is_avaiable
manager.stubs(:agent).returns(nil)
stub_explicit_file_cert File.expand_path("/rsa-cert"), rsa_cert
first = File.expand_path("/first")
stub_file_private_key first, dsa, dsa_pk
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal 1, identities.length
assert_equal dsa.to_blob, identities.first.to_blob
assert_equal({ from: :file, file: first, key: dsa }, manager.known_identities[dsa_pk])
end
def test_each_identity_should_not_prompt_for_passphrase_in_non_interactive_mode
manager(non_interactive: true).stubs(:agent).returns(nil)
first = File.expand_path("/first")
stub_file_private_key first, rsa, rsa_pk, passphrase: :should_not_be_asked
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal(identities, [])
end
def test_identities_should_load_from_agent
manager.stubs(:agent).returns(agent)
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal 2, identities.length
assert_equal rsa_pk.to_blob, identities.first.to_blob
assert_equal dsa_pk.to_blob, identities.last.to_blob
assert_equal({ from: :agent, identity: rsa_pk }, manager.known_identities[rsa_pk])
assert_equal({ from: :agent, identity: dsa_pk }, manager.known_identities[dsa_pk])
end
def test_each_identity_should_match_explicit_keycert_with_agent_provided_identity
manager.stubs(:agent).returns(agent)
stub_explicit_file_cert File.expand_path("/cert"), rsa_cert
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal 3, identities.length
assert_equal rsa_pk.to_blob, identities[0].to_blob
assert_equal dsa_pk.to_blob, identities[1].to_blob
assert_equal rsa_cert.to_blob, identities[2].to_blob
assert_equal({ from: :agent, identity: rsa_pk }, manager.known_identities[rsa_pk])
assert_equal({ from: :agent, identity: dsa_pk }, manager.known_identities[dsa_pk])
assert_equal({ from: :agent, identity: rsa_pk }, manager.known_identities[rsa_cert])
end
def test_identities_with_ecdsa_should_load_from_agent
manager.stubs(:agent).returns(agent_with_ecdsa_keys)
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal 5, identities.length
assert_equal rsa_pk.to_blob, identities[0].to_blob
assert_equal dsa_pk.to_blob, identities[1].to_blob
assert_equal ecdsa_sha2_nistp256_pk.to_blob, identities[2].to_blob
assert_equal ecdsa_sha2_nistp384_pk.to_blob, identities[3].to_blob
assert_equal ecdsa_sha2_nistp521_pk.to_blob, identities[4].to_blob
assert_equal({ from: :agent, identity: rsa_pk }, manager.known_identities[rsa_pk])
assert_equal({ from: :agent, identity: dsa_pk }, manager.known_identities[dsa_pk])
assert_equal({ from: :agent, identity: ecdsa_sha2_nistp256_pk }, manager.known_identities[ecdsa_sha2_nistp256_pk])
assert_equal({ from: :agent, identity: ecdsa_sha2_nistp384_pk }, manager.known_identities[ecdsa_sha2_nistp384_pk])
assert_equal({ from: :agent, identity: ecdsa_sha2_nistp521_pk }, manager.known_identities[ecdsa_sha2_nistp521_pk])
end
def test_only_identities_with_key_files_should_load_from_agent_of_keys_only_set
manager(keys_only: true).stubs(:agent).returns(agent)
first = File.expand_path("/first")
stub_file_private_key first, rsa, rsa_pk
identities = []
manager.each_identity { |identity| identities << identity }
assert_equal 1, identities.length
assert_equal rsa_pk.to_blob, identities.first.to_blob
assert_equal({ from: :agent, identity: rsa_pk }, manager.known_identities[rsa_pk])
assert manager.use_agent?
end
def test_identities_without_public_key_files_should_not_be_touched_if_identity_loaded_from_agent
manager.stubs(:agent).returns(agent)
first = File.expand_path("/first")
stub_file_private_key first, rsa, rsa_pk
second = File.expand_path("/second")
stub_file_private_key second, dsa, dsa_pk, passphrase: :should_not_be_asked
identities = []
manager.each_identity do |identity|
identities << identity
break if manager.known_identities[identity][:from] == :agent
end
assert_equal 1, identities.length
assert_equal rsa_pk.to_blob, identities.first.to_blob
end
def test_sign_with_agent_originated_key_should_request_signature_from_agent
manager.stubs(:agent).returns(agent)
manager.each_identity { |identity| } # preload the known_identities
agent.expects(:sign).with(rsa_pk, "hello, world").returns("abcxyz123")
assert_equal "abcxyz123", manager.sign(rsa_pk, "hello, world")
end
def test_sign_with_agent_originated_key_should_be_signable_through_explicitly_loaded_cert
stub_explicit_file_cert File.expand_path("/cert"), rsa_cert
manager.stubs(:agent).returns(agent)
manager.each_identity { |identity| } # preload the known_identities
agent.expects(:sign).with(rsa_pk, "hello, world").returns("abcxyz123")
assert_equal "abcxyz123", manager.sign(rsa_cert, "hello, world")
end
def test_sign_with_file_originated_key_should_load_private_key_and_sign_with_it
manager.stubs(:agent).returns(nil)
first = File.expand_path("/first")
stub_file_private_key first, rsa(512), rsa_pk
rsa.expects(:ssh_do_sign).with("hello, world").returns("abcxyz123")
manager.each_identity { |identity| } # preload the known_identities
assert_equal "\0\0\0\assh-rsa\0\0\0\011abcxyz123", manager.sign(rsa_pk, "hello, world")
end
def test_sign_with_file_originated_key_should_raise_key_manager_error_if_unloadable
manager.known_identities[rsa] = { from: :file, file: "/first" }
Net::SSH::KeyFactory.expects(:load_private_key).raises(OpenSSL::PKey::RSAError)
assert_raises Net::SSH::Authentication::KeyManagerError do
manager.sign(rsa, "hello, world")
end
end
def test_sign_passes_password_prompt_to_key_factory
manager.known_identities[rsa] = { from: :file, file: "/first" }
Net::SSH::KeyFactory.expects(:load_private_key).with('/first', nil, true, prompt).returns(rsa)
manager.sign(rsa, "hello, world")
end
private
def stub_file_private_key(name, key, public_key, options = {})
manager.add(name)
File.stubs(:file?).with(name).returns(true)
File.stubs(:readable?).with(name).returns(true)
File.stubs(:file?).with(name + ".pub").returns(true)
File.stubs(:readable?).with(name + ".pub").returns(false)
File.stubs(:file?).with(name + "-cert.pub").returns(false)
case options.fetch(:passphrase, :indifferently)
when :should_be_asked
Net::SSH::KeyFactory.expects(:load_private_key).with(name, nil, false, prompt).raises(OpenSSL::PKey::RSAError).at_least_once
Net::SSH::KeyFactory.expects(:load_private_key).with(name, nil, true, prompt).returns(key).at_least_once
when :should_not_be_asked
Net::SSH::KeyFactory.expects(:load_private_key).with(name, nil, false, prompt).raises(OpenSSL::PKey::RSAError).at_least_once
Net::SSH::KeyFactory.expects(:load_private_key).with(name, nil, true, prompt).never
else # :indifferently
Net::SSH::KeyFactory.expects(:load_private_key).with(name, nil, any_of(true, false), prompt).returns(key).at_least_once
end
# We need to stub #public_key as we rely on object identity to
# access #known_identities by private_key
key.stubs(:public_key).returns(public_key)
end
def stub_file_public_key(name, key)
manager.add(name)
File.stubs(:file?).with(name).returns(true)
File.stubs(:readable?).with(name).returns(true)
File.stubs(:file?).with(name + ".pub").returns(true)
File.stubs(:readable?).with(name + ".pub").returns(true)
File.stubs(:file?).with(name + "-cert.pub").returns(false)
Net::SSH::KeyFactory.expects(:load_public_key).with(name + ".pub").returns(key).at_least_once
end
def stub_implicit_file_cert(name, key, cert)
manager.add(name)
File.stubs(:file?).with(name).returns(true)
File.stubs(:readable?).with(name).returns(true)
File.stubs(:file?).with(name + ".pub").returns(true)
File.stubs(:readable?).with(name + ".pub").returns(true)
File.stubs(:file?).with(name + "-cert.pub").returns(true)
File.stubs(:readable?).with(name + "-cert.pub").returns(true)
Net::SSH::KeyFactory.expects(:load_public_key).with(name + "-cert.pub").returns(cert).at_least_once
end
def stub_explicit_file_cert(name, cert)
manager.add_keycert(name)
File.stubs(:file?).with(name).returns(true)
File.stubs(:readable?).with(name).returns(true)
Net::SSH::KeyFactory.expects(:load_public_key).with(name).returns(cert).at_least_once
end
def rsa_cert
@cert ||= begin
cert = Net::SSH::Authentication::Certificate.new
cert.type = :user
cert.key = rsa_pk
cert.serial = 1
cert.key_id = "test key"
cert.valid_principals = %w[test user]
cert.valid_before = Time.now - 86400
cert.valid_after = Time.now + 86400
cert.critical_options = {}
cert.extensions = {}
cert.reserved = ''
cert.sign!(OpenSSL::PKey::DSA.new(512))
cert
end
end
def rsa(size=512)
@rsa ||= OpenSSL::PKey::RSA.new(size)
end
def dsa
@dsa ||= OpenSSL::PKey::DSA.new(512)
end
def ecdsa_sha2_nistp256
@ecdsa_sha2_nistp256 ||= OpenSSL::PKey::EC.new('prime256v1').generate_key
end
def ecdsa_sha2_nistp384
@ecdsa_sha2_nistp384 ||= OpenSSL::PKey::EC.new('secp384r1').generate_key
end
def ecdsa_sha2_nistp521
@ecdsa_sha2_nistp521 ||= OpenSSL::PKey::EC.new('secp521r1').generate_key
end
def rsa_pk
@rsa_pk ||= rsa.public_key
end
def dsa_pk
@dsa_pk ||= dsa.public_key
end
def ecdsa_sha2_nistp256_pk
@ecdsa_sha2_nistp256_pk ||= ecdsa_sha2_nistp256.public_key
end
def ecdsa_sha2_nistp384_pk
@ecdsa_sha2_nistp384_pk ||= ecdsa_sha2_nistp521.public_key
end
def ecdsa_sha2_nistp521_pk
@ecdsa_sha2_nistp521_pk ||= ecdsa_sha2_nistp521.public_key
end
def agent
@agent ||= stub("agent", identities: [rsa_pk, dsa_pk])
end
def agent_with_ecdsa_keys
@agent ||= stub("agent", identities: [rsa_pk, dsa_pk,
ecdsa_sha2_nistp256_pk,
ecdsa_sha2_nistp384_pk,
ecdsa_sha2_nistp521_pk])
end
def prompt
@promp ||= MockPrompt.new
end
def manager(options = {})
@manager ||= Net::SSH::Authentication::KeyManager.new(nil, { password_prompt: prompt }.merge(options))
end
end
end
|