mirror of
https://github.com/ansible/awx.git
synced 2026-03-14 07:27:28 -02:30
54 lines
1.8 KiB
Python
54 lines
1.8 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Copyright (c) 2017 Ansible, Inc.
|
|
# All Rights Reserved.
|
|
from awx.conf.models import Setting
|
|
from awx.main.utils import encryption
|
|
|
|
|
|
def test_encrypt_field():
|
|
field = Setting(pk=123, value='ANSIBLE')
|
|
encrypted = field.value = encryption.encrypt_field(field, 'value')
|
|
assert encryption.decrypt_field(field, 'value') == 'ANSIBLE'
|
|
assert encrypted.startswith('$encrypted$AESCBC$')
|
|
|
|
|
|
def test_encrypt_field_without_pk():
|
|
field = Setting(value='ANSIBLE')
|
|
encrypted = field.value = encryption.encrypt_field(field, 'value')
|
|
assert encryption.decrypt_field(field, 'value') == 'ANSIBLE'
|
|
assert encrypted.startswith('$encrypted$AESCBC$')
|
|
|
|
|
|
def test_encrypt_field_with_unicode_string():
|
|
value = u'Iñtërnâtiônàlizætiøn'
|
|
field = Setting(value=value)
|
|
encrypted = field.value = encryption.encrypt_field(field, 'value')
|
|
assert encryption.decrypt_field(field, 'value') == value
|
|
assert encrypted.startswith('$encrypted$UTF8$AESCBC$')
|
|
|
|
|
|
def test_encrypt_field_force_disable_unicode():
|
|
value = u"NothingSpecial"
|
|
field = Setting(value=value)
|
|
encrypted = field.value = encryption.encrypt_field(field, 'value', skip_utf8=True)
|
|
assert "UTF8" not in encrypted
|
|
assert encryption.decrypt_field(field, 'value') == value
|
|
|
|
|
|
def test_encrypt_subfield():
|
|
field = Setting(value={'name': 'ANSIBLE'})
|
|
encrypted = field.value = encryption.encrypt_field(field, 'value', subfield='name')
|
|
assert encryption.decrypt_field(field, 'value', subfield='name') == 'ANSIBLE'
|
|
assert encrypted.startswith('$encrypted$AESCBC$')
|
|
|
|
|
|
def test_encrypt_field_with_ask():
|
|
encrypted = encryption.encrypt_field(Setting(value='ASK'), 'value', ask=True)
|
|
assert encrypted == 'ASK'
|
|
|
|
|
|
def test_encrypt_field_with_empty_value():
|
|
encrypted = encryption.encrypt_field(Setting(value=None), 'value')
|
|
assert encrypted is None
|