1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/tests/unit/modules/network/onyx/test_onyx_username.py
Felix Fontein c012d0fba7
Fix unit test relative imports, and permissions for included collection requirements (#29)
* Fix Hetzner firewall unit test imports.

* Make sure tests can actually access collections.

* Fix more relative imports.

* Fix more relative imports.

* Fix more includes.

* Fix more tests.

* One more.

* Fix syntax error in sanity import tests (invalid escape sequence "\$" caused by non-raw docs block)

* Fix permissions of ansible-test parts for sanity tests.

* Revert "Fix permissions of ansible-test parts for sanity tests."

This reverts commit c2713f0a12.
2020-03-24 08:27:28 +00:00

99 lines
4 KiB
Python

#
# Copyright: Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
# Make coding more python3-ish
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type
from ansible_collections.community.general.tests.unit.compat.mock import patch
from ansible_collections.community.general.plugins.modules.network.onyx import onyx_username
from ansible_collections.community.general.tests.unit.modules.utils import set_module_args
from .onyx_module import TestOnyxModule, load_fixture
class TestOnyxUsernameModule(TestOnyxModule):
module = onyx_username
def setUp(self):
self.enabled = False
super(TestOnyxUsernameModule, self).setUp()
self.mock_get_config = patch.object(
onyx_username.OnyxUsernameModule, "_get_username_config")
self.get_config = self.mock_get_config.start()
self.mock_load_config = patch(
'ansible_collections.community.general.plugins.module_utils.network.onyx.onyx.load_config')
self.load_config = self.mock_load_config.start()
def tearDown(self):
super(TestOnyxUsernameModule, self).tearDown()
self.mock_get_config.stop()
self.mock_load_config.stop()
def load_fixtures(self, commands=None, transport='cli'):
config_file = 'onyx_username_show.cfg'
self.get_config.return_value = load_fixture(config_file)
self.load_config.return_value = None
def test_new_username(self):
set_module_args(dict(username='test'))
commands = ['username test']
self.execute_module(changed=True, commands=commands)
def test_change_full_username(self):
set_module_args(dict(username='anass', full_name="anasshami"))
commands = ['username anass full-name anasshami']
self.execute_module(changed=True, commands=commands)
def test_change_username_password(self):
set_module_args(dict(username='anass', password="12345"))
commands = ['username anass password 12345']
self.execute_module(changed=True, commands=commands)
def test_change_username_password_encrypted(self):
set_module_args(dict(username='anass', password="12345", encrypted_password=True))
commands = ['username anass password 7 12345']
self.execute_module(changed=True, commands=commands)
def test_disable_username(self):
set_module_args(dict(username='anass', disabled="all"))
commands = ['username anass disable']
self.execute_module(changed=True, commands=commands)
def test_disable_username_login(self):
set_module_args(dict(username='anass', disabled="login"))
commands = ['username anass disable login']
self.execute_module(changed=True, commands=commands)
def test_disable_username_password(self):
set_module_args(dict(username='anass', disabled="password"))
commands = ['username anass disable password']
self.execute_module(changed=True, commands=commands)
def test_change_username_capability(self):
set_module_args(dict(username='anass', capability="monitor"))
commands = ['username anass capability monitor']
self.execute_module(changed=True, commands=commands)
def test_disconnect_username(self):
set_module_args(dict(username='anass', disconnected=True))
commands = ['username anass disconnect']
self.execute_module(changed=True, commands=commands)
def test_no_change_username_capability(self):
set_module_args(dict(username='anass', capability="admin"))
self.execute_module(changed=False)
def test_no_change_username_disabled(self):
set_module_args(dict(username='anassh', disabled="all"))
self.execute_module(changed=False)
def test_no_change_username_nopass(self):
set_module_args(dict(username='admin', nopassword=True))
self.execute_module(changed=False)
def test_no_change_full_username(self):
set_module_args(dict(username='admin', full_name="System Administrator"))
self.execute_module(changed=False)