salt/tests/integration/states/compiler.py
Mathieu Le Marec - Pasquet 688abda402 display full jinja traceback when applicable
This fixes #10010
2014-01-29 02:04:12 +01:00

41 lines
1.0 KiB
Python

# -*- coding: utf-8 -*-
'''
tests for host state
'''
# Import Salt Testing libs
from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../../')
# Import salt libs
import integration
class CompileTest(integration.ModuleCase):
'''
Validate the state compiler
'''
def test_multi_state(self):
'''
Test the error with multiple states of the same type
'''
ret = self.run_function('state.sls', mods='fuzz.multi_state')
# Verify that the return is a list, aka, an error
self.assertIsInstance(ret, list)
def test_jinja_deep_error(self):
'''
Test when we have an error in a execution module
called by jinja
'''
ret = self.run_function('state.sls', ['issue-10010'])
self.assertTrue(
', in jinja_error' in ret[0].strip())
self.assertTrue(
ret[0].strip().endswith('Exception: hehehe'))
if __name__ == '__main__':
from integration import run_tests
run_tests(CompileTest)