FortiManager Plugin Module Conversion: fmgr_script (#52786)

* Auto Commit for: fmgr_script

* Auto Commit for: fmgr_script

* Auto Commit for: fmgr_script
pull/53053/head
ftntcorecse 6 years ago committed by Nilashish Chakraborty
parent bf162e258b
commit fa585151c2

@ -28,6 +28,8 @@ DOCUMENTATION = '''
--- ---
module: fmgr_script module: fmgr_script
version_added: "2.5" version_added: "2.5"
notes:
- Full Documentation at U(https://ftnt-ansible-docs.readthedocs.io/en/latest/).
author: Andrew Welsh (@Ghilli3) author: Andrew Welsh (@Ghilli3)
short_description: Add/Edit/Delete and execute scripts short_description: Add/Edit/Delete and execute scripts
description: Create/edit/delete scripts and execute the scripts on the FortiManager using jsonrpc API description: Create/edit/delete scripts and execute the scripts on the FortiManager using jsonrpc API
@ -37,54 +39,49 @@ options:
description: description:
- The administrative domain (admon) the configuration belongs to - The administrative domain (admon) the configuration belongs to
required: true required: true
vdom: vdom:
description: description:
- The virtual domain (vdom) the configuration belongs to - The virtual domain (vdom) the configuration belongs to
host:
description: mode:
- The FortiManager's Address.
required: true
username:
description:
- The username to log into the FortiManager
required: true
password:
description:
- The password associated with the username account.
required: false
state:
description: description:
- The desired state of the specified object. - The desired mode of the specified object. Execute will run the script.
- present - will create a script.
- execute - execute the scipt.
- delete - delete the script.
required: false required: false
default: present default: "add"
choices: ["present", "execute", "delete"] choices: ["add", "delete", "execute", "set"]
version_added: "2.8"
script_name: script_name:
description: description:
- The name of the script. - The name of the script.
required: True required: True
script_type: script_type:
description: description:
- The type of script (CLI or TCL). - The type of script (CLI or TCL).
required: false required: false
script_target: script_target:
description: description:
- The target of the script to be run. - The target of the script to be run.
required: false required: false
script_description: script_description:
description: description:
- The description of the script. - The description of the script.
required: false required: false
script_content: script_content:
description: description:
- The script content that will be executed. - The script content that will be executed.
required: false required: false
script_scope: script_scope:
description: description:
- (datasource) The devices that the script will run on, can have both device member and device group member. - (datasource) The devices that the script will run on, can have both device member and device group member.
required: false required: false
script_package: script_package:
description: description:
- (datasource) Policy package object to run the script against - (datasource) Policy package object to run the script against
@ -94,9 +91,6 @@ options:
EXAMPLES = ''' EXAMPLES = '''
- name: CREATE SCRIPT - name: CREATE SCRIPT
fmgr_script: fmgr_script:
host: "{{inventory_hostname}}"
username: "{{ username }}"
password: "{{ password }}"
adom: "root" adom: "root"
script_name: "TestScript" script_name: "TestScript"
script_type: "cli" script_type: "cli"
@ -106,22 +100,16 @@ EXAMPLES = '''
- name: EXECUTE SCRIPT - name: EXECUTE SCRIPT
fmgr_script: fmgr_script:
host: "{{inventory_hostname}}"
username: "{{ username }}"
password: "{{ password }}"
adom: "root" adom: "root"
script_name: "TestScript" script_name: "TestScript"
state: "execute" mode: "execute"
script_scope: "FGT1,FGT2" script_scope: "FGT1,FGT2"
- name: DELETE SCRIPT - name: DELETE SCRIPT
fmgr_script: fmgr_script:
host: "{{inventory_hostname}}"
username: "{{ username }}"
password: "{{ password }}"
adom: "root" adom: "root"
script_name: "TestScript" script_name: "TestScript"
state: "delete" mode: "delete"
''' '''
RETURN = """ RETURN = """
@ -132,80 +120,90 @@ api_result:
""" """
from ansible.module_utils.basic import AnsibleModule, env_fallback from ansible.module_utils.basic import AnsibleModule, env_fallback
from ansible.module_utils.network.fortimanager.fortimanager import AnsibleFortiManager from ansible.module_utils.connection import Connection
from ansible.module_utils.network.fortimanager.fortimanager import FortiManagerHandler
# check for pyFMG lib from ansible.module_utils.network.fortimanager.common import FMGBaseException
try: from ansible.module_utils.network.fortimanager.common import FMGRCommon
from pyFMG.fortimgr import FortiManager from ansible.module_utils.network.fortimanager.common import FMGRMethods
HAS_PYFMGR = True from ansible.module_utils.network.fortimanager.common import DEFAULT_RESULT_OBJ
except ImportError: from ansible.module_utils.network.fortimanager.common import FAIL_SOCKET_MSG
HAS_PYFMGR = False
def set_script(fmg, script_name, script_type, script_content, script_desc, script_target, adom): def set_script(fmgr, paramgram):
""" """
This method sets a script. :param fmgr: The fmgr object instance from fortimanager.py
:type fmgr: class object
:param paramgram: The formatted dictionary of options to process
:type paramgram: dict
:return: The response from the FortiManager
:rtype: dict
""" """
datagram = { datagram = {
'content': script_content, 'content': paramgram["script_content"],
'desc': script_desc, 'desc': paramgram["script_description"],
'name': script_name, 'name': paramgram["script_name"],
'target': script_target, 'target': paramgram["script_target"],
'type': script_type, 'type': paramgram["script_type"],
} }
url = '/dvmdb/adom/{adom}/script/'.format(adom=adom) url = '/dvmdb/adom/{adom}/script/'.format(adom=paramgram["adom"])
response = fmg.set(url, datagram) response = fmgr.process_request(url, datagram, FMGRMethods.SET)
return response return response
def delete_script(fmg, script_name, adom): def delete_script(fmgr, paramgram):
""" """
This method deletes a script. :param fmgr: The fmgr object instance from fortimanager.py
:type fmgr: class object
:param paramgram: The formatted dictionary of options to process
:type paramgram: dict
:return: The response from the FortiManager
:rtype: dict
""" """
datagram = { datagram = {
'name': script_name, 'name': paramgram["script_name"],
} }
url = '/dvmdb/adom/{adom}/script/{script_name}'.format(adom=adom, script_name=script_name) url = '/dvmdb/adom/{adom}/script/{script_name}'.format(adom=paramgram["adom"], script_name=paramgram["script_name"])
response = fmg.delete(url, datagram) response = fmgr.process_request(url, datagram, FMGRMethods.DELETE)
return response return response
def execute_script(fmg, script_name, scope, package, adom, vdom): def execute_script(fmgr, paramgram):
""" """
This method will execute a specific script. :param fmgr: The fmgr object instance from fortimanager.py
:type fmgr: class object
:param paramgram: The formatted dictionary of options to process
:type paramgram: dict
:return: The response from the FortiManager
:rtype: dict
""" """
scope_list = list() scope_list = list()
scope = scope.replace(' ', '') scope = paramgram["script_scope"].replace(' ', '')
scope = scope.split(',') scope = scope.split(',')
for dev_name in scope: for dev_name in scope:
scope_list.append({'name': dev_name, 'vdom': vdom}) scope_list.append({'name': dev_name, 'vdom': paramgram["vdom"]})
datagram = { datagram = {
'adom': adom, 'adom': paramgram["adom"],
'script': script_name, 'script': paramgram["script_name"],
'package': package, 'package': paramgram["script_package"],
'scope': scope_list, 'scope': scope_list,
} }
url = '/dvmdb/adom/{adom}/script/execute'.format(adom=adom) url = '/dvmdb/adom/{adom}/script/execute'.format(adom=paramgram["adom"])
response = fmg.execute(url, datagram) response = fmgr.process_request(url, datagram, FMGRMethods.EXEC)
return response return response
def main(): def main():
argument_spec = dict( argument_spec = dict(
adom=dict(required=False, type="str"), adom=dict(required=False, type="str", default="root"),
vdom=dict(required=False, type="str"), vdom=dict(required=False, type="str", default="root"),
host=dict(required=True, type="str"), mode=dict(choices=["add", "execute", "set", "delete"], type="str", default="add"),
password=dict(fallback=(env_fallback, ["ANSIBLE_NET_PASSWORD"]), no_log=True),
username=dict(fallback=(env_fallback, ["ANSIBLE_NET_USERNAME"])),
state=dict(choices=["execute", "delete", "present"], type="str"),
script_name=dict(required=True, type="str"), script_name=dict(required=True, type="str"),
script_type=dict(required=False, type="str"), script_type=dict(required=False, type="str"),
script_target=dict(required=False, type="str"), script_target=dict(required=False, type="str"),
@ -215,58 +213,55 @@ def main():
script_package=dict(required=False, type="str"), script_package=dict(required=False, type="str"),
) )
module = AnsibleModule(argument_spec, supports_check_mode=True,) module = AnsibleModule(argument_spec=argument_spec, supports_check_mode=False, )
paramgram = {
# check if params are set "script_name": module.params["script_name"],
if module.params["host"] is None or module.params["username"] is None: "script_type": module.params["script_type"],
module.fail_json(msg="Host and username are required for connection") "script_target": module.params["script_target"],
"script_description": module.params["script_description"],
# check if login failed "script_content": module.params["script_content"],
fmg = AnsibleFortiManager(module, module.params["host"], module.params["username"], module.params["password"]) "script_scope": module.params["script_scope"],
response = fmg.login() "script_package": module.params["script_package"],
"adom": module.params["adom"],
if "FortiManager instance connnected" not in str(response): "vdom": module.params["vdom"],
module.fail_json(msg="Connection to FortiManager Failed") "mode": module.params["mode"],
}
module.paramgram = paramgram
fmgr = None
if module._socket_path:
connection = Connection(module._socket_path)
fmgr = FortiManagerHandler(connection, module)
fmgr.tools = FMGRCommon()
else: else:
adom = module.params["adom"] module.fail_json(**FAIL_SOCKET_MSG)
if adom is None:
adom = "root" results = DEFAULT_RESULT_OBJ
vdom = module.params["vdom"]
if vdom is None: try:
vdom = "root" if paramgram["mode"] in ['add', 'set']:
state = module.params["state"] results = set_script(fmgr, paramgram)
if state is None: fmgr.govern_response(module=module, results=results, msg="Operation Finished",
state = "present" ansible_facts=fmgr.construct_ansible_facts(results, module.params, module.params))
except Exception as err:
script_name = module.params["script_name"] raise FMGBaseException(err)
script_type = module.params["script_type"]
script_target = module.params["script_target"] try:
script_description = module.params["script_description"] if paramgram["mode"] == "execute":
script_content = module.params["script_content"] results = execute_script(fmgr, paramgram)
script_scope = module.params["script_scope"] fmgr.govern_response(module=module, results=results, msg="Operation Finished",
script_package = module.params["script_package"] ansible_facts=fmgr.construct_ansible_facts(results, module.params, module.params))
except Exception as err:
# if state is present (default), then add the script raise FMGBaseException(err)
if state == "present":
results = set_script(fmg, script_name, script_type, script_content, script_description, script_target, adom) try:
if results[0] != 0: if paramgram["mode"] == "delete":
if isinstance(results[1], list): results = delete_script(fmgr, paramgram)
module.fail_json(msg="Adding Script Failed", **results) fmgr.govern_response(module=module, results=results, msg="Operation Finished",
else: ansible_facts=fmgr.construct_ansible_facts(results, module.params, module.params))
module.fail_json(msg="Adding Script Failed") except Exception as err:
elif state == "execute": raise FMGBaseException(err)
results = execute_script(fmg, script_name, script_scope, script_package, adom, vdom)
if results[0] != 0: return module.exit_json(**results[1])
module.fail_json(msg="Script Execution Failed", **results)
elif state == "delete":
results = delete_script(fmg, script_name, adom)
if results[0] != 0:
module.fail_json(msg="Script Deletion Failed", **results)
fmg.logout()
# results is returned as a tuple
return module.exit_json(**results[1])
if __name__ == "__main__": if __name__ == "__main__":

@ -0,0 +1,92 @@
{
"delete_script": [
{
"raw_response": {
"status": {
"message": "OK",
"code": 0
},
"url": "/dvmdb/adom/ansible/script/TestScript"
},
"datagram_sent": {
"name": "TestScript"
},
"paramgram_used": {
"vdom": "root",
"script_target": null,
"script_content": null,
"adom": "ansible",
"script_description": null,
"script_package": null,
"mode": "delete",
"script_scope": null,
"script_name": "TestScript",
"script_type": null
},
"post_method": "delete"
}
],
"set_script": [
{
"raw_response": {
"status": {
"message": "OK",
"code": 0
},
"url": "/dvmdb/adom/ansible/script/"
},
"datagram_sent": {
"content": "get system status",
"type": "cli",
"target": "remote_device",
"name": "TestScript",
"desc": "Create by Ansible"
},
"paramgram_used": {
"script_content": "get system status",
"adom": "ansible",
"script_scope": null,
"script_name": "TestScript",
"script_target": "remote_device",
"mode": "add",
"script_description": "Create by Ansible",
"script_package": null,
"vdom": "root",
"script_type": "cli"
},
"post_method": "set"
}
],
"execute_script": [
{
"url": "/dvmdb/adom/ansible/script/execute",
"paramgram_used": {
"script_content": null,
"adom": "ansible",
"script_scope": "FGT1",
"script_name": "TestScript",
"script_target": null,
"mode": "execute",
"script_description": null,
"script_package": null,
"vdom": "root",
"script_type": null
},
"datagram_sent": {
"scope": [
{
"name": "FGT1",
"vdom": "root"
}
],
"adom": "ansible",
"script": "TestScript",
"package": null
},
"raw_response": {
"task": 277
},
"post_method": "exec"
}
]
}

@ -1,61 +1,129 @@
# (c) 2016 Red Hat Inc. # Copyright 2018 Fortinet, Inc.
# #
# This file is part of Ansible # This program is free software: you can redistribute it and/or modify
#
# Ansible is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by # it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or # the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version. # (at your option) any later version.
# #
# Ansible is distributed in the hope that it will be useful, # This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of # but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details. # GNU General Public License for more details.
# #
# You should have received a copy of the GNU General Public License # You should have received a copy of the GNU General Public License
# along with Ansible. If not, see <http://www.gnu.org/licenses/>. # along with Ansible. If not, see <https://www.gnu.org/licenses/>.
# Make coding more python3-ish # Make coding more python3-ish
from __future__ import (absolute_import, division, print_function) from __future__ import (absolute_import, division, print_function)
__metaclass__ = type __metaclass__ = type
import os
import json
from ansible.module_utils.network.fortimanager.fortimanager import FortiManagerHandler
import pytest import pytest
pytestmark = []
try: try:
from ansible.modules.network.fortimanager import fmgr_script from ansible.modules.network.fortimanager import fmgr_script
from .fortimanager_module import TestFortimanagerModule
from units.modules.utils import set_module_args
except ImportError: except ImportError:
pytestmark.append(pytest.mark.skip("Could not load required modules for testing")) pytest.skip("Could not load required modules for testing", allow_module_level=True)
try:
from pyFMG.fortimgr import FortiManager
except ImportError:
pytestmark.append(pytest.mark.skip("FortiManager tests require pyFMG package"))
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_script.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_set_script(fixture_data, mocker):
mocker.patch("ansible.module_utils.network.fortimanager.fortimanager.FortiManagerHandler.process_request",
side_effect=fixture_data)
# Fixture sets used:###########################
##################################################
# script_content: get system status
# adom: ansible
# script_scope: None
# script_name: TestScript
# script_target: remote_device
# mode: set
# script_description: Create by Ansible
# script_package: None
# vdom: root
# script_type: cli
##################################################
# Test using fixture 1 #
output = fmgr_script.set_script(fmg_instance, fixture_data[0]['paramgram_used'])
assert output['raw_response']['status']['code'] == 0
def test_delete_script(fixture_data, mocker):
mocker.patch("ansible.module_utils.network.fortimanager.fortimanager.FortiManagerHandler.process_request",
side_effect=fixture_data)
# Fixture sets used:###########################
##################################################
# vdom: root
# script_target: None
# script_content: None
# adom: ansible
# script_description: None
# script_package: None
# mode: delete
# script_scope: None
# script_name: TestScript
# script_type: None
##################################################
class TestFmgrScriptModule(TestFortimanagerModule): # Test using fixture 1 #
output = fmgr_script.delete_script(fmg_instance, fixture_data[0]['paramgram_used'])
assert output['raw_response']['status']['code'] == 0
module = fmgr_script
def test_fmg_script_fail_connect(self): def test_execute_script(fixture_data, mocker):
set_module_args(dict(host='1.1.1.1', username='admin', password='admin', adom='root', script_name='TestScript', mocker.patch("ansible.module_utils.network.fortimanager.fortimanager.FortiManagerHandler.process_request",
script_type='cli', script_target='remote_device', script_description='AnsibleTest', side_effect=fixture_data)
script_content='get system status')) # Fixture sets used:###########################
result = self.execute_module(failed=True)
self.assertEqual(result['msg'], 'Connection to FortiManager Failed')
def test_fmg_script_login_fail_host(self): ##################################################
set_module_args(dict(username='admin', password='admin', adom='root', script_name='TestScript', # script_content: None
script_type='cli', script_target='remote_device', script_description='AnsibleTest', # adom: ansible
script_content='get system status')) # script_scope: FGT1
result = self.execute_module(failed=True) # script_name: TestScript
self.assertEqual(result['msg'], 'missing required arguments: host') # script_target: None
# mode: exec
# script_description: None
# script_package: None
# vdom: root
# script_type: None
##################################################
def test_fmg_script_login_fail_username(self): # Test using fixture 1 #
set_module_args(dict(host='1.1.1.1', password='admin', adom='root', script_name='TestScript', output = fmgr_script.execute_script(fmg_instance, fixture_data[0]['paramgram_used'])
script_type='cli', script_target='remote_device', script_description='AnsibleTest', assert isinstance(output['raw_response'], dict) is True
script_content='get system status'))
result = self.execute_module(failed=True)
self.assertEqual(result['msg'], 'Host and username are required for connection')

Loading…
Cancel
Save