mirror of
https://github.com/python/cpython.git
synced 2025-09-30 12:21:51 +00:00
bpo-25287: Backport new tests for crypt and skip test_crypt on OpenBSD. (#4111)
This commit is contained in:
parent
d5d79545b7
commit
f52dff611c
1 changed files with 21 additions and 9 deletions
|
@ -1,33 +1,45 @@
|
||||||
|
import sys
|
||||||
from test import support
|
from test import support
|
||||||
import unittest
|
import unittest
|
||||||
|
|
||||||
crypt = support.import_module('crypt')
|
crypt = support.import_module('crypt')
|
||||||
|
|
||||||
|
if sys.platform.startswith('openbsd'):
|
||||||
|
raise unittest.SkipTest('The only supported method on OpenBSD is Blowfish')
|
||||||
|
|
||||||
class CryptTestCase(unittest.TestCase):
|
class CryptTestCase(unittest.TestCase):
|
||||||
|
|
||||||
def test_crypt(self):
|
def test_crypt(self):
|
||||||
c = crypt.crypt('mypassword', 'ab')
|
cr = crypt.crypt('mypassword')
|
||||||
if support.verbose:
|
cr2 = crypt.crypt('mypassword', cr)
|
||||||
print('Test encryption: ', c)
|
self.assertEqual(cr2, cr)
|
||||||
|
cr = crypt.crypt('mypassword', 'ab')
|
||||||
|
if cr is not None:
|
||||||
|
cr2 = crypt.crypt('mypassword', cr)
|
||||||
|
self.assertEqual(cr2, cr)
|
||||||
|
|
||||||
def test_salt(self):
|
def test_salt(self):
|
||||||
self.assertEqual(len(crypt._saltchars), 64)
|
self.assertEqual(len(crypt._saltchars), 64)
|
||||||
for method in crypt.methods:
|
for method in crypt.methods:
|
||||||
salt = crypt.mksalt(method)
|
salt = crypt.mksalt(method)
|
||||||
self.assertEqual(len(salt),
|
self.assertIn(len(salt) - method.salt_chars, {0, 1, 3, 4, 6, 7})
|
||||||
method.salt_chars + (3 if method.ident else 0))
|
if method.ident:
|
||||||
|
self.assertIn(method.ident, salt[:len(salt)-method.salt_chars])
|
||||||
|
|
||||||
def test_saltedcrypt(self):
|
def test_saltedcrypt(self):
|
||||||
for method in crypt.methods:
|
for method in crypt.methods:
|
||||||
pw = crypt.crypt('assword', method)
|
cr = crypt.crypt('assword', method)
|
||||||
self.assertEqual(len(pw), method.total_size)
|
self.assertEqual(len(cr), method.total_size)
|
||||||
pw = crypt.crypt('assword', crypt.mksalt(method))
|
cr2 = crypt.crypt('assword', cr)
|
||||||
self.assertEqual(len(pw), method.total_size)
|
self.assertEqual(cr2, cr)
|
||||||
|
cr = crypt.crypt('assword', crypt.mksalt(method))
|
||||||
|
self.assertEqual(len(cr), method.total_size)
|
||||||
|
|
||||||
def test_methods(self):
|
def test_methods(self):
|
||||||
# Guarantee that METHOD_CRYPT is the last method in crypt.methods.
|
# Guarantee that METHOD_CRYPT is the last method in crypt.methods.
|
||||||
self.assertTrue(len(crypt.methods) >= 1)
|
self.assertTrue(len(crypt.methods) >= 1)
|
||||||
self.assertEqual(crypt.METHOD_CRYPT, crypt.methods[-1])
|
self.assertEqual(crypt.METHOD_CRYPT, crypt.methods[-1])
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
unittest.main()
|
unittest.main()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue