salt/tests/integration/modules/test.py
2013-11-27 11:19:24 +00:00

104 lines
2.3 KiB
Python

# -*- coding: utf-8 -*-
# Import python libs
import os
# Import Salt Testing libs
from salttesting.helpers import ensure_in_syspath
ensure_in_syspath('../../')
# Import salt libs
import integration
class TestModuleTest(integration.ModuleCase):
'''
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
'''
import salt
self.assertEqual(self.run_function('test.version'), salt.__version__)
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
'''
import salt.config
opts = salt.config.minion_config(
os.path.join(
integration.INTEGRATION_TEST_DIR,
'files/conf/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',
['40'],
)[0][-1],
34
)
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')
if __name__ == '__main__':
from integration import run_tests
run_tests(TestModuleTest)