Fix unit tests on Python 3.10.

pull/74628/head
Matt Clay 4 years ago
parent 2f7e0b8489
commit d4413dac08

@ -104,6 +104,8 @@ class TestAnsibleModuleExitJson:
if sys.version_info < (3,): if sys.version_info < (3,):
error_msg = "fail_json() takes exactly 2 arguments (1 given)" error_msg = "fail_json() takes exactly 2 arguments (1 given)"
elif sys.version_info >= (3, 10):
error_msg = "AnsibleModule.fail_json() missing 1 required positional argument: 'msg'"
else: else:
error_msg = "fail_json() missing 1 required positional argument: 'msg'" error_msg = "fail_json() missing 1 required positional argument: 'msg'"

@ -543,6 +543,7 @@ class TestVaultCipherAes256(unittest.TestCase):
self.assertIsInstance(b_key_2, six.binary_type) self.assertIsInstance(b_key_2, six.binary_type)
self.assertEqual(b_key_1, b_key_2) self.assertEqual(b_key_1, b_key_2)
if vault.HAS_PYCRYPTO:
# And again with pycrypto # And again with pycrypto
b_key_3 = self.vault_cipher._create_key_pycrypto(b_password, b_salt, key_length=32, iv_length=16) b_key_3 = self.vault_cipher._create_key_pycrypto(b_password, b_salt, key_length=32, iv_length=16)
self.assertIsInstance(b_key_3, six.binary_type) self.assertIsInstance(b_key_3, six.binary_type)
@ -555,6 +556,8 @@ class TestVaultCipherAes256(unittest.TestCase):
self.assertEqual(b_key_3, b_key_4) self.assertEqual(b_key_3, b_key_4)
self.assertEqual(b_key_1, b_key_4) self.assertEqual(b_key_1, b_key_4)
@pytest.mark.skipif(not vault.HAS_PYCRYPTO,
reason='PyCrypto is not installed')
def test_create_key_known_pycrypto(self): def test_create_key_known_pycrypto(self):
b_password = b'hunter42' b_password = b'hunter42'

@ -1,4 +1,4 @@
pycrypto pycrypto ; python_version < '3.10' # pycrypto is not compatible with Python 3.10
passlib passlib
pywinrm pywinrm
pytz pytz

Loading…
Cancel
Save