2013-11-27 11:19:24 +00:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2014-11-21 19:05:13 +00:00
|
|
|
# Import Python libs
|
|
|
|
from __future__ import absolute_import
|
|
|
|
|
2013-06-27 10:57:33 +00:00
|
|
|
# Import Salt Testing libs
|
2017-02-27 15:59:04 +00:00
|
|
|
import tests.integration as integration
|
2013-06-14 22:17:06 +00:00
|
|
|
|
|
|
|
|
|
|
|
class DecoratorTest(integration.ModuleCase):
|
|
|
|
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):
|
2013-06-20 17:10:14 +00:00
|
|
|
self.assertIn(
|
|
|
|
'is not available',
|
|
|
|
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'
|
|
|
|
)
|
|
|
|
)
|