123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- # coding: utf-8
- '''
- Integration tests for renderer functions
- '''
- # Import Python Libs
- from __future__ import absolute_import, unicode_literals, print_function
- # Import Salt Testing libs
- from tests.support.case import ModuleCase
- from tests.support.helpers import flaky
- from tests.support.unit import skipIf
- # Import Salt libs
- import salt.utils.platform
- # Import 3rd-party libs
- from salt.ext import six
- import pytest
- @pytest.mark.windows_whitelisted
- class TestJinjaRenderer(ModuleCase):
- '''
- Validate that ordering works correctly
- '''
- def test_dot_notation(self):
- '''
- Test the Jinja dot-notation syntax for calling execution modules
- '''
- ret = self.run_function('state.sls', ['jinja_dot_notation'])
- for state_ret in ret.values():
- self.assertTrue(state_ret['result'])
- @flaky
- @skipIf(salt.utils.platform.is_darwin() and six.PY2, 'This test hangs on OS X on Py2')
- def test_salt_contains_function(self):
- '''
- Test if we are able to check if a function exists inside the "salt"
- wrapper (AliasLoader) which is available on Jinja templates.
- '''
- ret = self.run_function('state.sls', ['jinja_salt_contains_function'])
- for state_ret in ret.values():
- self.assertTrue(state_ret['result'])
|