summaryrefslogtreecommitdiff
path: root/test/test_key_factory.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_key_factory.rb')
-rw-r--r--test/test_key_factory.rb15
1 files changed, 9 insertions, 6 deletions
diff --git a/test/test_key_factory.rb b/test/test_key_factory.rb
index 2254f33..b0ba6f5 100644
--- a/test/test_key_factory.rb
+++ b/test/test_key_factory.rb
@@ -131,9 +131,10 @@ class TestKeyFactory < NetSSHTest
end
def test_load_should_parse_openssh_format_private_ecdsa_sha2_nistp256_key
+ return if ENV['NET_SSH_NO_ED25519']
+
File.expects(:read).with(@key_file).returns(ecdsa_sha2_nistp256_key_openssh)
- assert_equal ecdsa_sha2_nistp256_key.to_blob,
- Net::SSH::KeyFactory.load_private_key('/key-file').to_blob
+ assert_equal ecdsa_sha2_nistp256_key.to_blob, Net::SSH::KeyFactory.load_private_key('/key-file').to_blob
end
def test_load_unencrypted_private_ecdsa_sha2_nistp384_key_should_have_fp_md5
@@ -147,9 +148,10 @@ class TestKeyFactory < NetSSHTest
end
def test_load_should_parse_openssh_format_private_ecdsa_sha2_nistp384_key
+ return if ENV['NET_SSH_NO_ED25519']
+
File.expects(:read).with(@key_file).returns(ecdsa_sha2_nistp384_key_openssh)
- assert_equal ecdsa_sha2_nistp384_key.to_blob,
- Net::SSH::KeyFactory.load_private_key('/key-file').to_blob
+ assert_equal ecdsa_sha2_nistp384_key.to_blob, Net::SSH::KeyFactory.load_private_key('/key-file').to_blob
end
def test_load_unencrypted_private_ecdsa_sha2_nistp521_key_should_have_fp_md5
@@ -163,9 +165,10 @@ class TestKeyFactory < NetSSHTest
end
def test_load_should_parse_openssh_format_private_ecdsa_sha2_nistp521_key
+ return if ENV['NET_SSH_NO_ED25519']
+
File.expects(:read).with(@key_file).returns(ecdsa_sha2_nistp521_key_openssh)
- assert_equal ecdsa_sha2_nistp521_key.to_blob,
- Net::SSH::KeyFactory.load_private_key('/key-file').to_blob
+ assert_equal ecdsa_sha2_nistp521_key.to_blob, Net::SSH::KeyFactory.load_private_key('/key-file').to_blob
end
def test_load_public_ecdsa_sha2_nistp256_key_should_return_key