mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
77 lines
1.9 KiB
Python
77 lines
1.9 KiB
Python
import integration
|
|
|
|
|
|
class PublishModuleTest(integration.ModuleCase):
|
|
'''
|
|
Validate the publish module
|
|
'''
|
|
def test_publish(self):
|
|
'''
|
|
publish.publish
|
|
'''
|
|
ret = self.run_function('publish.publish', ['minion', 'test.ping'])
|
|
self.assertTrue(ret['minion'])
|
|
|
|
def test_full_data(self):
|
|
'''
|
|
publish.full_data
|
|
'''
|
|
ret = self.run_function(
|
|
'publish.full_data',
|
|
[
|
|
'minion',
|
|
'test.fib',
|
|
['40']
|
|
]
|
|
)
|
|
self.assertEqual(ret['minion']['ret'][0][-1], 34)
|
|
|
|
def test_kwarg(self):
|
|
'''
|
|
Verify that the pub data is making it to the minion functions
|
|
'''
|
|
ret = self.run_function(
|
|
'publish.full_data',
|
|
[
|
|
'minion',
|
|
'test.kwarg',
|
|
'cheese=spam',
|
|
]
|
|
)['minion']['ret']
|
|
check_true = (
|
|
'cheese',
|
|
'__pub_arg',
|
|
'__pub_fun',
|
|
'__pub_id',
|
|
'__pub_jid',
|
|
'__pub_ret',
|
|
'__pub_tgt',
|
|
'__pub_tgt_type',
|
|
)
|
|
for name in check_true:
|
|
self.assertTrue(name in ret)
|
|
|
|
self.assertEqual(ret['cheese'], 'spam')
|
|
self.assertEqual(ret['__pub_arg'], ['cheese=spam'])
|
|
self.assertEqual(ret['__pub_id'], 'minion')
|
|
self.assertEqual(ret['__pub_fun'], 'test.kwarg')
|
|
|
|
def test_reject_minion(self):
|
|
'''
|
|
Test bad authentication
|
|
'''
|
|
ret = self.run_function(
|
|
'publish.publish',
|
|
[
|
|
'minion',
|
|
'cmd.run',
|
|
['echo foo']
|
|
]
|
|
)
|
|
self.assertEqual(ret, {})
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(PublishModuleTest)
|