|
|
@ -19,7 +19,7 @@
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
|
|
__metaclass__ = type
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
|
|
|
|
from six import PY2
|
|
|
|
from six import PY3
|
|
|
|
from yaml.scanner import ScannerError
|
|
|
|
from yaml.scanner import ScannerError
|
|
|
|
|
|
|
|
|
|
|
|
from ansible.compat.tests import unittest
|
|
|
|
from ansible.compat.tests import unittest
|
|
|
@ -81,10 +81,10 @@ class TestDataLoaderWithVault(unittest.TestCase):
|
|
|
|
3135306561356164310a343937653834643433343734653137383339323330626437313562306630
|
|
|
|
3135306561356164310a343937653834643433343734653137383339323330626437313562306630
|
|
|
|
3035
|
|
|
|
3035
|
|
|
|
"""
|
|
|
|
"""
|
|
|
|
if PY2:
|
|
|
|
if PY3:
|
|
|
|
builtins_name = '__builtin__'
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
builtins_name = 'builtins'
|
|
|
|
builtins_name = 'builtins'
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
builtins_name = '__builtin__'
|
|
|
|
|
|
|
|
|
|
|
|
with patch(builtins_name + '.open', mock_open(read_data=vaulted_data)):
|
|
|
|
with patch(builtins_name + '.open', mock_open(read_data=vaulted_data)):
|
|
|
|
output = self._loader.load_from_file('dummy_vault.txt')
|
|
|
|
output = self._loader.load_from_file('dummy_vault.txt')
|
|
|
|