salt/tests/integration/cli/custom_module.py
Colton Myers 0b7ac988cc Merge remote-tracking branch 'upstream/2015.2' into merge-forward-develop
Conflicts:
    .pylintrc
    salt/beacons/service.py
    salt/beacons/sh.py
    salt/modules/cassandra_cql.py
    salt/returners/cassandra_cql_return.py
2015-04-01 14:22:33 -06:00

86 lines
2.3 KiB
Python

# -*- coding: utf-8 -*-
'''
:codeauthor: :email:`Daniel Mizyrycki (mzdaniel@glidelink.net)`
tests.integration.cli.custom_module
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Test salt-ssh sls with a custom module work.
$ cat srv/custom_module.sls
custom-module:
module.run:
- name: test.recho
- text: hello
$ cat srv/_modules/override_test.py
__virtualname__ = 'test'
def __virtual__():
return __virtualname__
def recho(text):
return text[::-1]
$ salt-ssh localhost state.sls custom_module
localhost:
olleh
This test can be run in a small test suite with:
$ python tests/runtests.py -C --ssh
'''
# Import Python libs
from __future__ import absolute_import
# Import Salt Libs
import integration
class SSHCustomModuleTest(integration.SSHCase):
'''
Test sls with custom module functionality using ssh
'''
def test_ssh_regular_module(self):
'''
Test regular module work using SSHCase environment
'''
expected = 'hello'
cmd = self.run_function('test.echo', arg=['hello'])
self.assertEqual(expected, cmd)
def test_ssh_custom_module(self):
'''
Test custom module work using SSHCase environment
'''
expected = 'hello'[::-1]
cmd = self.run_function('test.recho', arg=['hello'])
self.assertEqual(expected, cmd)
def test_ssh_sls_with_custom_module(self):
'''
Test sls with custom module work using SSHCase environment
'''
expected = {
"module_|-regular-module_|-test.echo_|-run": 'hello',
"module_|-custom-module_|-test.recho_|-run": 'olleh'}
cmd = self.run_function('state.sls', arg=['custom_module'])
for key in cmd:
if not isinstance(cmd, dict) or not isinstance(cmd[key], dict):
raise AssertionError('{0} is not a proper state return'
.format(cmd))
elif not cmd[key]['result']:
raise AssertionError(cmd[key]['comment'])
cmd_ret = cmd[key]['changes'].get('ret', None)
self.assertEqual(cmd_ret, expected[key])
if __name__ == '__main__':
from integration import run_tests
run_tests(SSHCustomModuleTest)