mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-02-04 07:51:50 +00:00
* Resolve E713 and E714 (not in/is tests). * Address UP018 (unnecessary str call). * UP045 requires Python 3.10+. * Address UP007 (X | Y for type annotations). * Address UP035 (import Callable from collections.abc). * Address UP006 (t.Dict -> dict). * Address UP009 (UTF-8 encoding comment). * Address UP034 (extraneous parantheses). * Address SIM910 (dict.get() with None default). * Address F401 (unused import). * Address UP020 (use builtin open). * Address B009 and B010 (getattr/setattr with constant name). * Address SIM300 (Yoda conditions). * UP029 isn't in use anyway. * Address FLY002 (static join). * Address B034 (re.sub positional args). * Address B020 (loop variable overrides input). * Address B017 (assert raise Exception). * Address SIM211 (if expression with false/true). * Address SIM113 (enumerate for loop). * Address UP036 (sys.version_info checks). * Remove unnecessary UP039. * Address SIM201 (not ==). * Address SIM212 (if expr with twisted arms). * Add changelog fragment. * Reformat.
187 lines
6.4 KiB
Python
187 lines
6.4 KiB
Python
# Copyright (c) 2021 Florian Dambrine <android.florian@gmail.com>
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
from __future__ import annotations
|
|
|
|
from unittest.mock import patch
|
|
|
|
from ansible.module_utils.common.dict_transformations import dict_merge
|
|
from ansible_collections.community.general.plugins.modules import (
|
|
pritunl_user,
|
|
)
|
|
from ansible_collections.community.general.tests.unit.plugins.module_utils.net_tools.pritunl.test_api import (
|
|
PritunlDeleteUserMock,
|
|
PritunlListOrganizationMock,
|
|
PritunlListUserMock,
|
|
PritunlPostUserMock,
|
|
PritunlPutUserMock,
|
|
)
|
|
from ansible_collections.community.internal_test_tools.tests.unit.plugins.modules.utils import (
|
|
AnsibleExitJson,
|
|
AnsibleFailJson,
|
|
ModuleTestCase,
|
|
set_module_args,
|
|
)
|
|
|
|
|
|
def mock_pritunl_api(func, **kwargs):
|
|
def wrapped(self=None):
|
|
with self.patch_get_pritunl_organizations(side_effect=PritunlListOrganizationMock):
|
|
with self.patch_get_pritunl_users(side_effect=PritunlListUserMock):
|
|
with self.patch_add_pritunl_users(side_effect=PritunlPostUserMock):
|
|
with self.patch_delete_pritunl_users(side_effect=PritunlDeleteUserMock):
|
|
func(self, **kwargs)
|
|
|
|
return wrapped
|
|
|
|
|
|
class TestPritunlUser(ModuleTestCase):
|
|
def setUp(self):
|
|
super().setUp()
|
|
self.module = pritunl_user
|
|
|
|
def tearDown(self):
|
|
super().tearDown()
|
|
|
|
def patch_get_pritunl_users(self, **kwds):
|
|
return patch(
|
|
"ansible_collections.community.general.plugins.module_utils.net_tools.pritunl.api._get_pritunl_users",
|
|
autospec=True,
|
|
**kwds,
|
|
)
|
|
|
|
def patch_add_pritunl_users(self, **kwds):
|
|
return patch(
|
|
"ansible_collections.community.general.plugins.module_utils.net_tools.pritunl.api._post_pritunl_user",
|
|
autospec=True,
|
|
**kwds,
|
|
)
|
|
|
|
def patch_update_pritunl_users(self, **kwds):
|
|
return patch(
|
|
"ansible_collections.community.general.plugins.module_utils.net_tools.pritunl.api._put_pritunl_user",
|
|
autospec=True,
|
|
**kwds,
|
|
)
|
|
|
|
def patch_delete_pritunl_users(self, **kwds):
|
|
return patch(
|
|
"ansible_collections.community.general.plugins.module_utils.net_tools.pritunl.api._delete_pritunl_user",
|
|
autospec=True,
|
|
**kwds,
|
|
)
|
|
|
|
def patch_get_pritunl_organizations(self, **kwds):
|
|
return patch(
|
|
"ansible_collections.community.general.plugins.module_utils.net_tools.pritunl.api._get_pritunl_organizations",
|
|
autospec=True,
|
|
**kwds,
|
|
)
|
|
|
|
def test_without_parameters(self):
|
|
"""Test without parameters"""
|
|
with set_module_args({}):
|
|
with self.assertRaises(AnsibleFailJson):
|
|
self.module.main()
|
|
|
|
@mock_pritunl_api
|
|
def test_present(self):
|
|
"""Test Pritunl user creation and update."""
|
|
user_params = {
|
|
"user_name": "alice",
|
|
"user_email": "alice@company.com",
|
|
}
|
|
with set_module_args(
|
|
dict_merge(
|
|
{
|
|
"pritunl_api_token": "token",
|
|
"pritunl_api_secret": "secret",
|
|
"pritunl_url": "https://pritunl.domain.com",
|
|
"organization": "GumGum",
|
|
},
|
|
user_params,
|
|
)
|
|
):
|
|
with self.patch_update_pritunl_users(side_effect=PritunlPostUserMock) as post_mock:
|
|
with self.assertRaises(AnsibleExitJson) as create_result:
|
|
self.module.main()
|
|
|
|
create_exc = create_result.exception.args[0]
|
|
|
|
self.assertTrue(create_exc["changed"])
|
|
self.assertEqual(create_exc["response"]["name"], user_params["user_name"])
|
|
self.assertEqual(create_exc["response"]["email"], user_params["user_email"])
|
|
self.assertFalse(create_exc["response"]["disabled"])
|
|
|
|
# Changing user from alice to bob should update certain fields only
|
|
|
|
new_user_params = {
|
|
"user_name": "bob",
|
|
"user_email": "bob@company.com",
|
|
"user_disabled": True,
|
|
}
|
|
with set_module_args(
|
|
dict_merge(
|
|
{
|
|
"pritunl_api_token": "token",
|
|
"pritunl_api_secret": "secret",
|
|
"pritunl_url": "https://pritunl.domain.com",
|
|
"organization": "GumGum",
|
|
},
|
|
new_user_params,
|
|
)
|
|
):
|
|
with self.patch_update_pritunl_users(side_effect=PritunlPutUserMock) as put_mock:
|
|
with self.assertRaises(AnsibleExitJson) as update_result:
|
|
self.module.main()
|
|
|
|
update_exc = update_result.exception.args[0]
|
|
|
|
# Ensure only certain settings changed and the rest remained untouched.
|
|
for k, v in update_exc.items():
|
|
if k in new_user_params:
|
|
assert update_exc[k] == v
|
|
else:
|
|
assert update_exc[k] == create_exc[k]
|
|
|
|
@mock_pritunl_api
|
|
def test_absent(self):
|
|
"""Test user removal from Pritunl."""
|
|
with set_module_args(
|
|
{
|
|
"state": "absent",
|
|
"pritunl_api_token": "token",
|
|
"pritunl_api_secret": "secret",
|
|
"pritunl_url": "https://pritunl.domain.com",
|
|
"organization": "GumGum",
|
|
"user_name": "florian",
|
|
}
|
|
):
|
|
with self.assertRaises(AnsibleExitJson) as result:
|
|
self.module.main()
|
|
|
|
exc = result.exception.args[0]
|
|
|
|
self.assertTrue(exc["changed"])
|
|
self.assertEqual(exc["response"], {})
|
|
|
|
@mock_pritunl_api
|
|
def test_absent_failure(self):
|
|
"""Test user removal from a non existing organization."""
|
|
with set_module_args(
|
|
{
|
|
"state": "absent",
|
|
"pritunl_api_token": "token",
|
|
"pritunl_api_secret": "secret",
|
|
"pritunl_url": "https://pritunl.domain.com",
|
|
"organization": "Unknown",
|
|
"user_name": "floria@company.com",
|
|
}
|
|
):
|
|
with self.assertRaises(AnsibleFailJson) as result:
|
|
self.module.main()
|
|
|
|
exc = result.exception.args[0]
|
|
|
|
self.assertRegex(exc["msg"], "Can not remove user")
|