diff options
author | ftntcorecse <43451990+ftntcorecse@users.noreply.github.com> | 2019-03-04 11:37:55 +0100 |
---|---|---|
committer | Nilashish Chakraborty <nilashishchakraborty8@gmail.com> | 2019-03-04 11:37:55 +0100 |
commit | 0e9bf838ffa7ba85f6338c735811456189481e37 (patch) | |
tree | 2821a8b648b73738511cf211d3ed00c163440fc9 /test | |
parent | frr: New module for BGP configuration management (#51281) (diff) | |
download | ansible-0e9bf838ffa7ba85f6338c735811456189481e37.tar.xz ansible-0e9bf838ffa7ba85f6338c735811456189481e37.zip |
New FortiManager Module: fmgr_fwobj_ippool6 (#53032)
* Auto Commit for: fmgr_fwobj_ippool6
* Auto Commit for: fmgr_fwobj_ippool6
Diffstat (limited to 'test')
-rw-r--r-- | test/units/modules/network/fortimanager/fixtures/test_fmgr_fwobj_ippool6.json | 57 | ||||
-rw-r--r-- | test/units/modules/network/fortimanager/test_fmgr_fwobj_ippool6.py | 72 |
2 files changed, 129 insertions, 0 deletions
diff --git a/test/units/modules/network/fortimanager/fixtures/test_fmgr_fwobj_ippool6.json b/test/units/modules/network/fortimanager/fixtures/test_fmgr_fwobj_ippool6.json new file mode 100644 index 0000000000..078c97cb4b --- /dev/null +++ b/test/units/modules/network/fortimanager/fixtures/test_fmgr_fwobj_ippool6.json @@ -0,0 +1,57 @@ +{ + "fmgr_fwobj_ippool6_modify": [ + { + "paramgram_used": { + "endip": null, + "name": "IPv6 IPPool", + "adom": "ansible", + "startip": null, + "dynamic_mapping": { + "startip": null, + "endip": null, + "comments": null + }, + "comments": null, + "mode": "delete" + }, + "datagram_sent": {}, + "raw_response": { + "status": { + "message": "OK", + "code": 0 + }, + "url": "/pm/config/adom/ansible/obj/firewall/ippool6/IPv6 IPPool" + }, + "post_method": "delete" + }, + { + "raw_response": { + "status": { + "message": "OK", + "code": 0 + }, + "url": "/pm/config/adom/ansible/obj/firewall/ippool6" + }, + "datagram_sent": { + "startip": "fd30:fc67:cb18:ae44::aaaa:aaaa", + "endip": "fd30:fc67:cb18:ae44::ffff:ffff", + "name": "IPv6 IPPool", + "comments": "Created by Ansible" + }, + "paramgram_used": { + "endip": "fd30:fc67:cb18:ae44::ffff:ffff", + "name": "IPv6 IPPool", + "adom": "ansible", + "startip": "fd30:fc67:cb18:ae44::aaaa:aaaa", + "dynamic_mapping": { + "startip": null, + "endip": null, + "comments": null + }, + "comments": "Created by Ansible", + "mode": "add" + }, + "post_method": "add" + } + ] +} diff --git a/test/units/modules/network/fortimanager/test_fmgr_fwobj_ippool6.py b/test/units/modules/network/fortimanager/test_fmgr_fwobj_ippool6.py new file mode 100644 index 0000000000..eab1cfd1c8 --- /dev/null +++ b/test/units/modules/network/fortimanager/test_fmgr_fwobj_ippool6.py @@ -0,0 +1,72 @@ +# Copyright 2018 Fortinet, Inc. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with Ansible. If not, see <https://www.gnu.org/licenses/>. + +# Make coding more python3-ish +from __future__ import (absolute_import, division, print_function) +__metaclass__ = type + +import os +import json +from ansible.module_utils.network.fortimanager.fortimanager import FortiManagerHandler +import pytest + +try: + from ansible.modules.network.fortimanager import fmgr_fwobj_ippool6 +except ImportError: + pytest.skip("Could not load required modules for testing", allow_module_level=True) + + +def load_fixtures(): + fixture_path = os.path.join(os.path.dirname(__file__), 'fixtures') + "/{filename}.json".format( + filename=os.path.splitext(os.path.basename(__file__))[0]) + try: + with open(fixture_path, "r") as fixture_file: + fixture_data = json.load(fixture_file) + except IOError: + return [] + return [fixture_data] + + +@pytest.fixture(autouse=True) +def module_mock(mocker): + connection_class_mock = mocker.patch('ansible.module_utils.basic.AnsibleModule') + return connection_class_mock + + +@pytest.fixture(autouse=True) +def connection_mock(mocker): + connection_class_mock = mocker.patch('ansible.modules.network.fortimanager.fmgr_fwobj_ippool6.Connection') + return connection_class_mock + + +@pytest.fixture(scope="function", params=load_fixtures()) +def fixture_data(request): + func_name = request.function.__name__.replace("test_", "") + return request.param.get(func_name, None) + + +fmg_instance = FortiManagerHandler(connection_mock, module_mock) + + +def test_fmgr_fwobj_ippool6_modify(fixture_data, mocker): + mocker.patch("ansible.module_utils.network.fortimanager.fortimanager.FortiManagerHandler.process_request", + side_effect=fixture_data) + + # Test using fixture 1 # + output = fmgr_fwobj_ippool6.fmgr_fwobj_ippool6_modify(fmg_instance, fixture_data[0]['paramgram_used']) + assert output['raw_response']['status']['code'] == 0 + # Test using fixture 2 # + output = fmgr_fwobj_ippool6.fmgr_fwobj_ippool6_modify(fmg_instance, fixture_data[1]['paramgram_used']) + assert output['raw_response']['status']['code'] == 0 |