mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-30 21:09:09 -07:00
Adds new module to manage and create ha groups (#53967)
This commit is contained in:
parent
41be7851cb
commit
2b00cb592d
2 changed files with 1046 additions and 0 deletions
232
test/units/modules/network/f5/test_bigip_device_ha_group.py
Normal file
232
test/units/modules/network/f5/test_bigip_device_ha_group.py
Normal file
|
@ -0,0 +1,232 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Copyright: (c) 2018, F5 Networks Inc.
|
||||
# GNU General Public License v3.0 (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import os
|
||||
import json
|
||||
import pytest
|
||||
import sys
|
||||
|
||||
if sys.version_info < (2, 7):
|
||||
pytestmark = pytest.mark.skip("F5 Ansible modules require Python >= 2.7")
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
|
||||
try:
|
||||
from library.modules.bigip_device_ha_group import ApiParameters
|
||||
from library.modules.bigip_device_ha_group import ModuleParameters
|
||||
from library.modules.bigip_device_ha_group import ModuleManager
|
||||
from library.modules.bigip_device_ha_group import ArgumentSpec
|
||||
|
||||
# In Ansible 2.8, Ansible changed import paths.
|
||||
from test.units.compat import unittest
|
||||
from test.units.compat.mock import Mock
|
||||
from test.units.compat.mock import patch
|
||||
|
||||
from test.units.modules.utils import set_module_args
|
||||
except ImportError:
|
||||
from ansible.modules.network.f5.bigip_device_ha_group import ApiParameters
|
||||
from ansible.modules.network.f5.bigip_device_ha_group import ModuleParameters
|
||||
from ansible.modules.network.f5.bigip_device_ha_group import ModuleManager
|
||||
from ansible.modules.network.f5.bigip_device_ha_group import ArgumentSpec
|
||||
|
||||
# Ansible 2.8 imports
|
||||
from units.compat import unittest
|
||||
from units.compat.mock import Mock
|
||||
from units.compat.mock import patch
|
||||
|
||||
from units.modules.utils import set_module_args
|
||||
|
||||
|
||||
fixture_path = os.path.join(os.path.dirname(__file__), 'fixtures')
|
||||
fixture_data = {}
|
||||
|
||||
|
||||
def load_fixture(name):
|
||||
path = os.path.join(fixture_path, name)
|
||||
|
||||
if path in fixture_data:
|
||||
return fixture_data[path]
|
||||
|
||||
with open(path) as f:
|
||||
data = f.read()
|
||||
|
||||
try:
|
||||
data = json.loads(data)
|
||||
except Exception:
|
||||
pass
|
||||
|
||||
fixture_data[path] = data
|
||||
return data
|
||||
|
||||
|
||||
class TestParameters(unittest.TestCase):
|
||||
def test_module_parameters_v13(self):
|
||||
args = dict(
|
||||
name='foobar',
|
||||
description='baz',
|
||||
active_bonus=20,
|
||||
enable='yes',
|
||||
state='present',
|
||||
pools=[
|
||||
dict(
|
||||
pool_name='fakepool',
|
||||
attribute='percent-up-members',
|
||||
weight=30,
|
||||
minimum_threshold=2,
|
||||
partition='Common'
|
||||
)
|
||||
],
|
||||
trunks=[
|
||||
dict(
|
||||
trunk_name='faketrunk',
|
||||
attribute='percent-up-members',
|
||||
weight=30,
|
||||
minimum_threshold=2
|
||||
)
|
||||
]
|
||||
)
|
||||
|
||||
try:
|
||||
self.p1 = patch('library.modules.bigip_device_ha_group.tmos_version')
|
||||
self.m1 = self.p1.start()
|
||||
self.m1.return_value = '13.1.0'
|
||||
except Exception:
|
||||
self.p1 = patch('ansible.modules.network.f5.bigip_device_ha_group.tmos_version')
|
||||
self.m1 = self.p1.start()
|
||||
self.m1.return_value = '13.1.0'
|
||||
|
||||
p = ModuleParameters(params=args)
|
||||
|
||||
assert p.name == 'foobar'
|
||||
assert p.state == 'present'
|
||||
assert p.active_bonus == 20
|
||||
assert p.enabled is True
|
||||
assert p.pools == [{'name': '/Common/fakepool', 'attribute': 'percent-up-members',
|
||||
'weight': 30, 'minimumThreshold': 2}]
|
||||
assert p.trunks == [{'name': 'faketrunk', 'attribute': 'percent-up-members',
|
||||
'weight': 30, 'minimumThreshold': 2}]
|
||||
|
||||
self.p1.stop()
|
||||
|
||||
def test_module_parameters_v12(self):
|
||||
args = dict(
|
||||
name='foobar',
|
||||
description='baz',
|
||||
active_bonus=20,
|
||||
enable='yes',
|
||||
state='present',
|
||||
pools=[
|
||||
dict(
|
||||
pool_name='fakepool',
|
||||
attribute='percent-up-members',
|
||||
weight=30,
|
||||
minimum_threshold=2,
|
||||
partition='Common'
|
||||
)
|
||||
],
|
||||
trunks=[
|
||||
dict(
|
||||
trunk_name='faketrunk',
|
||||
attribute='percent-up-members',
|
||||
weight=20,
|
||||
minimum_threshold=1
|
||||
)
|
||||
]
|
||||
)
|
||||
|
||||
try:
|
||||
self.p1 = patch('library.modules.bigip_device_ha_group.tmos_version')
|
||||
self.m1 = self.p1.start()
|
||||
self.m1.return_value = '12.1.0'
|
||||
except Exception:
|
||||
self.p1 = patch('ansible.modules.network.f5.bigip_device_ha_group.tmos_version')
|
||||
self.m1 = self.p1.start()
|
||||
self.m1.return_value = '12.1.0'
|
||||
|
||||
p = ModuleParameters(params=args)
|
||||
|
||||
assert p.name == 'foobar'
|
||||
assert p.state == 'present'
|
||||
assert p.active_bonus == 20
|
||||
assert p.enabled is True
|
||||
assert p.pools == [{'name': '/Common/fakepool', 'attribute': 'percent-up-members',
|
||||
'weight': 30, 'threshold': 2}]
|
||||
assert p.trunks == [{'name': 'faketrunk', 'attribute': 'percent-up-members',
|
||||
'weight': 20, 'threshold': 1}]
|
||||
|
||||
self.p1.stop()
|
||||
|
||||
|
||||
class TestManager(unittest.TestCase):
|
||||
def setUp(self):
|
||||
self.spec = ArgumentSpec()
|
||||
|
||||
try:
|
||||
self.p1 = patch('library.modules.bigip_device_ha_group.tmos_version')
|
||||
self.m1 = self.p1.start()
|
||||
self.m1.return_value = '13.1.0'
|
||||
except Exception:
|
||||
self.p1 = patch('ansible.modules.network.f5.bigip_device_ha_group.tmos_version')
|
||||
self.m1 = self.p1.start()
|
||||
self.m1.return_value = '13.1.0'
|
||||
|
||||
def tearDown(self):
|
||||
self.p1.stop()
|
||||
|
||||
def test_create_ha_group(self, *args):
|
||||
set_module_args(dict(
|
||||
name='fake_group',
|
||||
state='present',
|
||||
description='baz',
|
||||
active_bonus=20,
|
||||
enable='yes',
|
||||
pools=[
|
||||
dict(
|
||||
pool_name='fakepool',
|
||||
attribute='percent-up-members',
|
||||
weight=30,
|
||||
minimum_threshold=2,
|
||||
partition='Common'
|
||||
)
|
||||
],
|
||||
trunks=[
|
||||
dict(
|
||||
trunk_name='faketrunk',
|
||||
attribute='percent-up-members',
|
||||
weight=20,
|
||||
minimum_threshold=1
|
||||
)
|
||||
],
|
||||
provider=dict(
|
||||
server='localhost',
|
||||
password='password',
|
||||
user='admin'
|
||||
)
|
||||
))
|
||||
|
||||
module = AnsibleModule(
|
||||
argument_spec=self.spec.argument_spec,
|
||||
supports_check_mode=self.spec.supports_check_mode
|
||||
)
|
||||
|
||||
# Override methods to force specific logic in the module to happen
|
||||
mm = ModuleManager(module=module)
|
||||
mm.exists = Mock(return_value=False)
|
||||
mm.create_on_device = Mock(return_value=True)
|
||||
|
||||
results = mm.exec_module()
|
||||
|
||||
assert results['changed'] is True
|
||||
assert results['name'] == 'fake_group'
|
||||
assert results['description'] == 'baz'
|
||||
assert results['active_bonus'] == 20
|
||||
assert results['enable'] == 'yes'
|
||||
assert results['pools'] == [{'pool_name': '/Common/fakepool', 'attribute': 'percent-up-members',
|
||||
'weight': 30, 'minimum_threshold': 2}]
|
||||
assert results['trunks'] == [{'trunk_name': 'faketrunk', 'attribute': 'percent-up-members',
|
||||
'weight': 20, 'minimum_threshold': 1}]
|
Loading…
Add table
Add a link
Reference in a new issue