Fix intermittent error in test_decrypt_dict_invalid_key

Sometimes decryption with the wrong key works but produces garbage data.
This is annoying because it occasionally fails the gate at random.

Change-Id: I1563962aca8efa30773f03792f7cfd6b7774443d
Task: 33482
This commit is contained in:
Zane Bitter 2019-05-23 12:00:13 -04:00
parent 6323b173e8
commit d50ded7395
1 changed files with 6 additions and 1 deletions

View File

@ -125,7 +125,12 @@ def decrypted_dict(data, encryption_key=None):
return return_data
for prop_name, prop_value in data.items():
method, value = prop_value
decrypted_value = decrypt(method, value, encryption_key)
try:
decrypted_value = decrypt(method, value, encryption_key)
except UnicodeDecodeError:
# The dict contained valid JSON on the way in, so if what comes
# out is garbage then the key was incorrect.
raise exception.InvalidEncryptionKey()
prop_string = jsonutils.loads(decrypted_value)
return_data[prop_name] = prop_string
return return_data