2013-11-27 11:19:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2014-11-21 19:05:13 +00:00
|
|
|
# Import Python libs
|
2018-01-21 20:08:08 +00:00
|
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
2014-11-21 19:05:13 +00:00
|
|
|
|
2013-06-27 10:57:33 +00:00
|
|
|
# Import Salt Testing libs
|
2017-04-03 16:04:09 +00:00
|
|
|
from tests.support.case import ModuleCase
|
2013-06-14 22:17:06 +00:00
|
|
|
|
|
|
|
|
2017-04-03 16:04:09 +00:00
|
|
|
class DecoratorTest(ModuleCase):
|
2013-06-14 22:17:06 +00:00
|
|
|
def test_module(self):
|
2013-06-20 17:10:14 +00:00
|
|
|
self.assertTrue(
|
|
|
|
self.run_function(
|
|
|
|
'runtests_decorators.working_function'
|
|
|
|
)
|
|
|
|
)
|
2013-06-14 22:17:06 +00:00
|
|
|
|
2015-10-23 14:06:35 +00:00
|
|
|
def test_depends(self):
|
2013-06-20 17:10:14 +00:00
|
|
|
ret = self.run_function('runtests_decorators.depends')
|
2015-10-23 14:06:35 +00:00
|
|
|
self.assertTrue(isinstance(ret, dict))
|
2013-06-20 17:10:14 +00:00
|
|
|
self.assertTrue(ret['ret'])
|
2015-04-21 13:02:17 +00:00
|
|
|
self.assertTrue(isinstance(ret['time'], float))
|
2013-06-14 22:17:06 +00:00
|
|
|
|
|
|
|
def test_missing_depends(self):
|
2017-07-26 16:03:19 +00:00
|
|
|
self.assertEqual(
|
|
|
|
{'runtests_decorators.missing_depends_will_fallback': '\n CLI Example:\n\n ',
|
|
|
|
'runtests_decorators.missing_depends': "'runtests_decorators.missing_depends' is not available."},
|
2013-06-20 17:10:14 +00:00
|
|
|
self.run_function('runtests_decorators.missing_depends'
|
|
|
|
)
|
|
|
|
)
|
2013-06-14 22:17:06 +00:00
|
|
|
|
2015-03-06 05:59:10 +00:00
|
|
|
def test_bool_depends(self):
|
|
|
|
# test True
|
|
|
|
self.assertTrue(
|
|
|
|
self.run_function(
|
|
|
|
'runtests_decorators.booldependsTrue'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
# test False
|
|
|
|
self.assertIn(
|
|
|
|
'is not available',
|
|
|
|
self.run_function('runtests_decorators.booldependsFalse'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
2015-10-23 14:06:35 +00:00
|
|
|
def test_depends_will_not_fallback(self):
|
|
|
|
ret = self.run_function('runtests_decorators.depends_will_not_fallback')
|
|
|
|
self.assertTrue(isinstance(ret, dict))
|
2013-06-20 17:10:14 +00:00
|
|
|
self.assertTrue(ret['ret'])
|
2015-04-21 13:02:17 +00:00
|
|
|
self.assertTrue(isinstance(ret['time'], float))
|
2013-06-14 22:17:06 +00:00
|
|
|
|
2015-10-23 14:06:35 +00:00
|
|
|
def test_missing_depends_will_fallback(self):
|
|
|
|
self.assertListEqual(
|
|
|
|
[False, 'fallback'],
|
2013-06-20 17:10:14 +00:00
|
|
|
self.run_function(
|
|
|
|
'runtests_decorators.missing_depends_will_fallback'
|
|
|
|
)
|
|
|
|
)
|