Skip to content

Commit

Permalink
Test proving paramiko#853, fails on Python 3 but not 2
Browse files Browse the repository at this point in the history
  • Loading branch information
bitprophet committed Feb 21, 2017
1 parent 448f800 commit dd7679b
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_pkey.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@

x1234 = b'\x01\x02\x03\x04'

TEST_KEY_BYTES = b'\x00\x00\x00\x07ssh-rsa\x00\x00\x00\x01#\x00\x00\x00\x81\x00\xd3\x8fV\xea\x07\x85\xa6k%\x8d<\x1f\xbc\x8dT\x98\xa5\x96$\xf3E#\xbe>\xbc\xd2\x93\x93\x87f\xceD\x18\xdb \x0c\xb3\xa1a\x96\xf8e#\xcc\xacS\x8a#\xefVlE\x83\x1epv\xc1o\x17M\xef\xdf\x89DUXL\xa6\x8b\xaa<\x06\x10\xd7\x93w\xec\xaf\xe2\xaf\x95\xd8\xfb\xd9\xbfw\xcb\x9f0)#y{\x10\x90\xaa\x85l\tPru\x8c\t\x19\xce\xa0\xf1\xd2\xdc\x8e/\x8b\xa8f\x9c0\xdey\x84\xd2F\xf7\xcbmm\x1f\x87'


class KeyTest (unittest.TestCase):

Expand Down Expand Up @@ -427,3 +429,7 @@ def test_salt_size(self):
self.assertEqual(key, key2)
finally:
os.remove(newfile)

def test_stringification(self):
key = RSAKey.from_private_key_file(test_path('test_rsa.key'))
self.assertEqual(str(key), TEST_KEY_BYTES)

0 comments on commit dd7679b

Please sign in to comment.