mirror of
https://github.com/valitydev/salt.git
synced 2024-11-07 08:58:59 +00:00
3273bbdab7
Conflicts: - doc/ref/configuration/master.rst - doc/ref/modules/all/index.rst - doc/topics/grains/index.rst - doc/topics/releases/2016.3.4.rst - doc/topics/spm/spm_formula.rst - doc/topics/tutorials/cron.rst - doc/topics/tutorials/index.rst - doc/topics/tutorials/stormpath.rst - salt/engines/slack.py - salt/log/handlers/fluent_mod.py - salt/modules/cyg.py - salt/modules/junos.py - salt/modules/namecheap_dns.py - salt/modules/namecheap_domains.py - salt/modules/namecheap_ns.py - salt/modules/namecheap_ssl.py - salt/modules/namecheap_users.py - salt/modules/reg.py - salt/modules/tomcat.py - salt/modules/vault.py - salt/modules/win_file.py - salt/modules/zpool.py - salt/output/highstate.py - salt/renderers/pass.py - salt/runners/cache.py - salt/states/boto_apigateway.py - salt/states/boto_iam.py - salt/states/boto_route53.py - salt/states/msteams.py - salt/states/reg.py - salt/states/win_iis.py - tests/integration/modules/test_cmdmod.py - tests/integration/states/test_user.py - tests/support/helpers.py - tests/unit/cloud/clouds/test_openstack.py - tests/unit/fileserver/test_gitfs.py - tests/unit/modules/test_junos.py - tests/unit/pillar/test_git.py - tests/unit/states/test_win_path.py - tests/unit/test_pillar.py - tests/unit/utils/test_format_call.py - tests/unit/utils/test_utils.py - tests/unit/utils/test_warnings.py
229 lines
7.9 KiB
Python
229 lines
7.9 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
:codeauthor: Jayesh Kariya <jayeshk@saltstack.com>
|
|
'''
|
|
|
|
# Import Python Libs
|
|
from __future__ import absolute_import, print_function, unicode_literals
|
|
|
|
# Import Salt Testing Libs
|
|
from tests.support.unit import TestCase, skipIf
|
|
from tests.support.mock import (
|
|
patch,
|
|
NO_MOCK,
|
|
NO_MOCK_REASON
|
|
)
|
|
|
|
# Import Salt Libs
|
|
import salt.modules.modjk as modjk
|
|
|
|
|
|
@skipIf(NO_MOCK, NO_MOCK_REASON)
|
|
class ModjkTestCase(TestCase):
|
|
'''
|
|
Test cases for salt.modules.modjk
|
|
'''
|
|
# 'version' function tests: 1
|
|
|
|
def test_version(self):
|
|
'''
|
|
Test for return the modjk version
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.jk_version': 'mod_jk/1.2.37'}):
|
|
self.assertEqual(modjk.version(), '1.2.37')
|
|
|
|
# 'get_running' function tests: 1
|
|
|
|
def test_get_running(self):
|
|
'''
|
|
Test for get the current running config (not from disk)
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value={}):
|
|
self.assertDictEqual(modjk.get_running(), {})
|
|
|
|
# 'dump_config' function tests: 1
|
|
|
|
def test_dump_config(self):
|
|
'''
|
|
Test for dump the original configuration that was loaded from disk
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value={}):
|
|
self.assertDictEqual(modjk.dump_config(), {})
|
|
|
|
# 'list_configured_members' function tests: 1
|
|
|
|
def test_list_configured_members(self):
|
|
'''
|
|
Test for return a list of member workers from the configuration files
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value={}):
|
|
self.assertListEqual(modjk.list_configured_members('loadbalancer1'),
|
|
[])
|
|
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.loadbalancer1.balance_workers': 'SALT'}):
|
|
self.assertListEqual(modjk.list_configured_members('loadbalancer1'),
|
|
['SALT'])
|
|
|
|
# 'workers' function tests: 1
|
|
|
|
def test_workers(self):
|
|
'''
|
|
Test for return a list of member workers and their status
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.list': 'Salt1,Salt2'}):
|
|
self.assertDictEqual(modjk.workers(), {})
|
|
|
|
# 'recover_all' function tests: 1
|
|
|
|
def test_recover_all(self):
|
|
'''
|
|
Test for set the all the workers in lbn to recover and
|
|
activate them if they are not
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value={}):
|
|
self.assertDictEqual(modjk.recover_all('loadbalancer1'), {})
|
|
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.loadbalancer1.balance_workers': 'SALT'}):
|
|
with patch.object(modjk, 'worker_status',
|
|
return_value={'activation': 'ACT',
|
|
'state': 'OK'}):
|
|
self.assertDictEqual(modjk.recover_all('loadbalancer1'),
|
|
{'SALT': {'activation': 'ACT',
|
|
'state': 'OK'}})
|
|
|
|
# 'reset_stats' function tests: 1
|
|
|
|
def test_reset_stats(self):
|
|
'''
|
|
Test for reset all runtime statistics for the load balancer
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.reset_stats('loadbalancer1'))
|
|
|
|
# 'lb_edit' function tests: 1
|
|
|
|
def test_lb_edit(self):
|
|
'''
|
|
Test for edit the loadbalancer settings
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.lb_edit('loadbalancer1', {'vlr': 1,
|
|
'vlt': 60}))
|
|
|
|
# 'bulk_stop' function tests: 1
|
|
|
|
def test_bulk_stop(self):
|
|
'''
|
|
Test for stop all the given workers in the specific load balancer
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.bulk_stop(["node1", "node2", "node3"],
|
|
'loadbalancer1'))
|
|
|
|
# 'bulk_activate' function tests: 1
|
|
|
|
def test_bulk_activate(self):
|
|
'''
|
|
Test for activate all the given workers in the specific load balancer
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.bulk_activate(["node1", "node2", "node3"],
|
|
'loadbalancer1'))
|
|
|
|
# 'bulk_disable' function tests: 1
|
|
|
|
def test_bulk_disable(self):
|
|
'''
|
|
Test for disable all the given workers in the specific load balancer
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.bulk_disable(["node1", "node2", "node3"],
|
|
'loadbalancer1'))
|
|
|
|
# 'bulk_recover' function tests: 1
|
|
|
|
def test_bulk_recover(self):
|
|
'''
|
|
Test for recover all the given workers in the specific load balancer
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.bulk_recover(["node1", "node2", "node3"],
|
|
'loadbalancer1'))
|
|
|
|
# 'worker_status' function tests: 1
|
|
|
|
def test_worker_status(self):
|
|
'''
|
|
Test for return the state of the worker
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.node1.activation': 'ACT',
|
|
'worker.node1.state': 'OK'}):
|
|
self.assertDictEqual(modjk.worker_status("node1"),
|
|
{'activation': 'ACT', 'state': 'OK'})
|
|
|
|
with patch.object(modjk, '_do_http', return_value={}):
|
|
self.assertFalse(modjk.worker_status("node1"))
|
|
|
|
# 'worker_recover' function tests: 1
|
|
|
|
def test_worker_recover(self):
|
|
'''
|
|
Test for set the worker to recover this module will fail
|
|
if it is in OK state
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value={}):
|
|
self.assertDictEqual(modjk.worker_recover("node1", 'loadbalancer1'),
|
|
{})
|
|
|
|
# 'worker_disable' function tests: 1
|
|
|
|
def test_worker_disable(self):
|
|
'''
|
|
Test for set the worker to disable state in the lbn load balancer
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.worker_disable('node1', 'loadbalancer1'))
|
|
|
|
# 'worker_activate' function tests: 1
|
|
|
|
def test_worker_activate(self):
|
|
'''
|
|
Test for set the worker to activate state in the lbn load balancer
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.worker_activate('node1', 'loadbalancer1'))
|
|
|
|
# 'worker_stop' function tests: 1
|
|
|
|
def test_worker_stop(self):
|
|
'''
|
|
Test for set the worker to stopped state in the lbn load balancer
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.worker_stop('node1', 'loadbalancer1'))
|
|
|
|
# 'worker_edit' function tests: 1
|
|
|
|
def test_worker_edit(self):
|
|
'''
|
|
Test for edit the worker settings
|
|
'''
|
|
with patch.object(modjk, '_do_http', return_value=
|
|
{'worker.result.type': 'OK'}):
|
|
self.assertTrue(modjk.worker_edit('node1', 'loadbalancer1',
|
|
{'vwf': 500, 'vwd': 60}))
|