def test_to_python_dict_invalid_ciphertext_base64(self): field = SecureField(name='asdf') with pytest.raises(ValueError): field.to_python(StubConfig(), { 'method': 'xor', 'ciphertext': 'hello' })
def test_to_python_dict_invalid_ciphertext_int(self): cfg = StubConfig() field = SecureField(name='asdf') cfg._keyfile.decrypt.side_effect = EncryptionError() cfg._keyfile.__exit__.return_value = False with pytest.raises(ValueError): field.to_python(cfg, {'method': 'test', 'ciphertext': 10})
def test_to_python_dict_invalid_ciphertext(self): cfg = StubConfig() field = SecureField(name='asdf') cfg._keyfile.decrypt.side_effect = EncryptionError() cfg._keyfile.__exit__.return_value = False with pytest.raises(ValueError): field.to_python(cfg, {'method': 'test', 'ciphertext': 'aGVsbG8='}) cfg._keyfile.decrypt.assert_called_once_with( SecureValue('test', b'hello'))
def test_to_python_dict_valid(self): cfg = StubConfig() field = SecureField(name='asdf') assert field.to_python(cfg, { 'method': 'test', 'ciphertext': 'aGVsbG8=' }) == 'plaintext'
def test_to_python_str(self): field = SecureField() assert field.to_python(StubConfig(), 'hello') == 'hello'
def test_to_python_empty_string(self): field = SecureField() assert field.to_python(None, "") == ""
def test_to_python_none(self): field = SecureField() assert field.to_python(StubConfig(), None) is None
def test_to_python_invalid_type(self): field = SecureField() with pytest.raises(ValueError): field.to_python(StubConfig(), 100)
def test_to_python_dict_invalid_method(self): field = SecureField(name='asdf') with pytest.raises(ValueError): field.to_python(None, {'method': None, 'ciphertext': b'hello'})
def test_to_python_str(self): field = SecureField() assert field.to_python(None, 'hello') == 'hello'
def test_to_python_none(self): field = SecureField() assert field.to_python(None, None) is None