mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Adding unit tests for safe_eval
This commit is contained in:
parent
41da8de094
commit
45aac6a739
1 changed files with 26 additions and 0 deletions
|
@ -19,3 +19,29 @@
|
|||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
from collections import defaultdict
|
||||
|
||||
from ansible.compat.tests import unittest
|
||||
from ansible.compat.tests.mock import patch, MagicMock
|
||||
|
||||
from ansible.template.safe_eval import safe_eval
|
||||
|
||||
class TestSafeEval(unittest.TestCase):
|
||||
|
||||
def setUp(self):
|
||||
pass
|
||||
|
||||
def tearDown(self):
|
||||
pass
|
||||
|
||||
def test_safe_eval_usage(self):
|
||||
# test safe eval calls with different possible types for the
|
||||
# locals dictionary, to ensure we don't run into problems like
|
||||
# ansible/ansible/issues/12206 again
|
||||
for locals_vars in (dict(), defaultdict(dict)):
|
||||
self.assertEqual(safe_eval('True', locals=locals_vars), True)
|
||||
self.assertEqual(safe_eval('False', locals=locals_vars), False)
|
||||
self.assertEqual(safe_eval('0', locals=locals_vars), 0)
|
||||
self.assertEqual(safe_eval('[]', locals=locals_vars), [])
|
||||
self.assertEqual(safe_eval('{}', locals=locals_vars), {})
|
||||
|
||||
|
|
Loading…
Reference in a new issue