mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
96 lines
2.2 KiB
Python
96 lines
2.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
# Import Python libs
|
|
from __future__ import absolute_import
|
|
|
|
# Import Salt Testing libs
|
|
from tests.support.case import ModuleCase
|
|
from tests.support.mixins import AdaptedConfigurationTestCaseMixin
|
|
|
|
# Import salt libs
|
|
import salt.version
|
|
import salt.config
|
|
|
|
|
|
class TestModuleTest(ModuleCase, AdaptedConfigurationTestCaseMixin):
|
|
'''
|
|
Validate the test module
|
|
'''
|
|
def test_ping(self):
|
|
'''
|
|
test.ping
|
|
'''
|
|
self.assertTrue(self.run_function('test.ping'))
|
|
|
|
def test_echo(self):
|
|
'''
|
|
test.echo
|
|
'''
|
|
self.assertEqual(self.run_function('test.echo', ['text']), 'text')
|
|
|
|
def test_version(self):
|
|
'''
|
|
test.version
|
|
'''
|
|
self.assertEqual(self.run_function('test.version'),
|
|
salt.version.__saltstack_version__.string)
|
|
|
|
def test_conf_test(self):
|
|
'''
|
|
test.conf_test
|
|
'''
|
|
self.assertEqual(self.run_function('test.conf_test'), 'baz')
|
|
|
|
def test_get_opts(self):
|
|
'''
|
|
test.get_opts
|
|
'''
|
|
opts = salt.config.minion_config(
|
|
self.get_config_file_path('minion')
|
|
)
|
|
self.assertEqual(
|
|
self.run_function('test.get_opts')['cachedir'],
|
|
opts['cachedir']
|
|
)
|
|
|
|
def test_cross_test(self):
|
|
'''
|
|
test.cross_test
|
|
'''
|
|
self.assertTrue(
|
|
self.run_function(
|
|
'test.cross_test',
|
|
['test.ping']
|
|
)
|
|
)
|
|
|
|
def test_fib(self):
|
|
'''
|
|
test.fib
|
|
'''
|
|
self.assertEqual(
|
|
self.run_function(
|
|
'test.fib',
|
|
['20'],
|
|
)[0],
|
|
6765
|
|
)
|
|
|
|
def test_collatz(self):
|
|
'''
|
|
test.collatz
|
|
'''
|
|
self.assertEqual(
|
|
self.run_function(
|
|
'test.collatz',
|
|
['40'],
|
|
)[0][-1],
|
|
2
|
|
)
|
|
|
|
def test_outputter(self):
|
|
'''
|
|
test.outputter
|
|
'''
|
|
self.assertEqual(self.run_function('test.outputter', ['text']), 'text')
|