modules: network: ingate: Add module ig_store_edit (#47675)
* modules: network: ingate: Add module ig_store_edit * modules: network: ingate: Add module ig_config Manage the configuration database on an Ingate SBC.
This commit is contained in:
parent
308e4c31c6
commit
5671ff983d
13 changed files with 901 additions and 4 deletions
566
lib/ansible/modules/network/ingate/ig_config.py
Normal file
566
lib/ansible/modules/network/ingate/ig_config.py
Normal file
|
@ -0,0 +1,566 @@
|
|||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright (c) 2018, Ingate Systems AB
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible 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.
|
||||
#
|
||||
# Ansible 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 <http://www.gnu.org/licenses/>.
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
|
||||
ANSIBLE_METADATA = {'status': ['preview'],
|
||||
'supported_by': 'community',
|
||||
'metadata_version': '1.1'}
|
||||
|
||||
DOCUMENTATION = '''
|
||||
---
|
||||
module: ig_config
|
||||
short_description: Manage the configuration database on an Ingate SBC.
|
||||
description:
|
||||
- Manage the configuration database on an Ingate SBC.
|
||||
version_added: 2.8
|
||||
extends_documentation_fragment: ingate
|
||||
options:
|
||||
add:
|
||||
description:
|
||||
- Add a row to a table.
|
||||
type: bool
|
||||
delete:
|
||||
description:
|
||||
- Delete all rows in a table or a specific row.
|
||||
type: bool
|
||||
get:
|
||||
description:
|
||||
- Return all rows in a table or a specific row.
|
||||
type: bool
|
||||
modify:
|
||||
description:
|
||||
- Modify a row in a table.
|
||||
type: bool
|
||||
revert:
|
||||
description:
|
||||
- Reset the preliminary configuration.
|
||||
type: bool
|
||||
factory:
|
||||
description:
|
||||
- Reset the preliminary configuration to its factory defaults.
|
||||
type: bool
|
||||
store:
|
||||
description:
|
||||
- Store the preliminary configuration.
|
||||
type: bool
|
||||
no_response:
|
||||
description:
|
||||
- Expect no response when storing the preliminary configuration.
|
||||
Refer to the C(store) option.
|
||||
type: bool
|
||||
return_rowid:
|
||||
description:
|
||||
- Get rowid(s) from a table where the columns match.
|
||||
type: bool
|
||||
download:
|
||||
description:
|
||||
- Download the configuration database from the unit.
|
||||
type: bool
|
||||
store_download:
|
||||
description:
|
||||
- If the downloaded configuration should be stored on disk.
|
||||
Refer to the C(download) option.
|
||||
type: bool
|
||||
default: false
|
||||
path:
|
||||
description:
|
||||
- Where in the filesystem to store the downloaded configuration.
|
||||
Refer to the C(download) option.
|
||||
filename:
|
||||
description:
|
||||
- The name of the file to store the downloaded configuration in.
|
||||
Refer to the C(download) option.
|
||||
table:
|
||||
description:
|
||||
- The name of the table.
|
||||
rowid:
|
||||
description:
|
||||
- A row id.
|
||||
type: int
|
||||
columns:
|
||||
description:
|
||||
- A dict containing column names/values.
|
||||
notes:
|
||||
- If C(store_download) is set to True, and C(path) and C(filename) is omitted,
|
||||
the file will be stored in the current directory with an automatic filename.
|
||||
author:
|
||||
- Ingate Systems AB (@ingatesystems)
|
||||
'''
|
||||
|
||||
EXAMPLES = '''
|
||||
- name: Add/remove DNS servers
|
||||
hosts: 192.168.1.1
|
||||
connection: local
|
||||
vars:
|
||||
client_rw:
|
||||
version: v1
|
||||
address: "{{ inventory_hostname }}"
|
||||
scheme: http
|
||||
username: alice
|
||||
password: foobar
|
||||
tasks:
|
||||
|
||||
- name: Load factory defaults
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
factory: true
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Revert to last known applied configuration
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
revert: true
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Change the unit name
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
modify: true
|
||||
table: misc.unitname
|
||||
columns:
|
||||
unitname: "Test Ansible"
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Add a DNS server
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
add: true
|
||||
table: misc.dns_servers
|
||||
columns:
|
||||
server: 192.168.1.21
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Add a DNS server
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
add: true
|
||||
table: misc.dns_servers
|
||||
columns:
|
||||
server: 192.168.1.22
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Add a DNS server
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
add: true
|
||||
table: misc.dns_servers
|
||||
columns:
|
||||
server: 192.168.1.23
|
||||
register: last_dns
|
||||
- debug:
|
||||
var: last_dns
|
||||
|
||||
- name: Modify the last added DNS server
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
modify: true
|
||||
table: misc.dns_servers
|
||||
rowid: "{{ last_dns['add'][0]['id'] }}"
|
||||
columns:
|
||||
server: 192.168.1.24
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Return the last added DNS server
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
get: true
|
||||
table: misc.dns_servers
|
||||
rowid: "{{ last_dns['add'][0]['id'] }}"
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Remove last added DNS server
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
delete: true
|
||||
table: misc.dns_servers
|
||||
rowid: "{{ last_dns['add'][0]['id'] }}"
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Return the all rows from table misc.dns_servers
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
get: true
|
||||
table: misc.dns_servers
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Remove remaining DNS servers
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
delete: true
|
||||
table: misc.dns_servers
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Get rowid for interface eth0
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
return_rowid: true
|
||||
table: network.local_nets
|
||||
columns:
|
||||
interface: eth0
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Store the preliminary configuration
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
store: true
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
|
||||
- name: Do backup of the configuration database
|
||||
ig_config:
|
||||
client: "{{ client_rw }}"
|
||||
download: true
|
||||
store_download: true
|
||||
register: result
|
||||
- debug:
|
||||
var: result
|
||||
'''
|
||||
|
||||
RETURN = '''
|
||||
add:
|
||||
description: A list containing information about the added row
|
||||
returned: when C(add) is yes and success
|
||||
type: complex
|
||||
contains:
|
||||
href:
|
||||
description: The REST API URL to the added row
|
||||
returned: success
|
||||
type: string
|
||||
sample: http://192.168.1.1/api/v1/misc/dns_servers/2
|
||||
data:
|
||||
description: Column names/values
|
||||
returned: success
|
||||
type: complex
|
||||
sample: {'number': '2', 'server': '10.48.254.33'}
|
||||
id:
|
||||
description: The row id
|
||||
returned: success
|
||||
type: int
|
||||
sample: 22
|
||||
delete:
|
||||
description: A list containing information about the deleted row(s)
|
||||
returned: when C(delete) is yes and success
|
||||
type: complex
|
||||
contains:
|
||||
table:
|
||||
description: The name of the table
|
||||
returned: success
|
||||
type: string
|
||||
sample: misc.dns_servers
|
||||
data:
|
||||
description: Column names/values
|
||||
returned: success
|
||||
type: complex
|
||||
sample: {'number': '2', 'server': '10.48.254.33'}
|
||||
id:
|
||||
description: The row id
|
||||
returned: success
|
||||
type: int
|
||||
sample: 22
|
||||
get:
|
||||
description: A list containing information about the row(s)
|
||||
returned: when C(get) is yes and success
|
||||
type: complex
|
||||
contains:
|
||||
table:
|
||||
description: The name of the table
|
||||
returned: success
|
||||
type: string
|
||||
sample: Testname
|
||||
href:
|
||||
description: The REST API URL to the row
|
||||
returned: success
|
||||
type: string
|
||||
sample: http://192.168.1.1/api/v1/misc/dns_servers/1
|
||||
data:
|
||||
description: Column names/values
|
||||
returned: success
|
||||
type: complex
|
||||
sample: {'number': '2', 'server': '10.48.254.33'}
|
||||
id:
|
||||
description: The row id
|
||||
returned: success
|
||||
type: int
|
||||
sample: 1
|
||||
modify:
|
||||
description: A list containing information about the modified row
|
||||
returned: when C(modify) is yes and success
|
||||
type: complex
|
||||
contains:
|
||||
table:
|
||||
description: The name of the table
|
||||
returned: success
|
||||
type: string
|
||||
sample: Testname
|
||||
href:
|
||||
description: The REST API URL to the modified row
|
||||
returned: success
|
||||
type: string
|
||||
sample: http://192.168.1.1/api/v1/misc/dns_servers/1
|
||||
data:
|
||||
description: Column names/values
|
||||
returned: success
|
||||
type: complex
|
||||
gsample: {'number': '2', 'server': '10.48.254.33'}
|
||||
id:
|
||||
description: The row id
|
||||
returned: success
|
||||
type: int
|
||||
sample: 10
|
||||
revert:
|
||||
description: A command status message
|
||||
returned: when C(revert) is yes and success
|
||||
type: complex
|
||||
contains:
|
||||
msg:
|
||||
description: The command status message
|
||||
returned: success
|
||||
type: string
|
||||
sample: reverted the configuration to the last applied configuration.
|
||||
factory:
|
||||
description: A command status message
|
||||
returned: when C(factory) is yes and success
|
||||
type: complex
|
||||
contains:
|
||||
msg:
|
||||
description: The command status message
|
||||
returned: success
|
||||
type: string
|
||||
sample: reverted the configuration to the factory configuration.
|
||||
store:
|
||||
description: A command status message
|
||||
returned: when C(store) is yes and success
|
||||
type: complex
|
||||
contains:
|
||||
msg:
|
||||
description: The command status message
|
||||
returned: success
|
||||
type: string
|
||||
sample: Successfully applied and saved the configuration.
|
||||
return_rowid:
|
||||
description: The matched row id(s).
|
||||
returned: when C(return_rowid) is yes and success
|
||||
type: list
|
||||
sample: [1, 3]
|
||||
download:
|
||||
description: Configuraton database and meta data
|
||||
returned: when C(download) is yes and success
|
||||
type: complex
|
||||
contains:
|
||||
config:
|
||||
description: The configuration database
|
||||
returned: success
|
||||
type: string
|
||||
filename:
|
||||
description: A suggested name for the configuration
|
||||
returned: success
|
||||
type: string
|
||||
sample: testname_2018-10-01T214040.cfg
|
||||
mimetype:
|
||||
description: The mimetype
|
||||
returned: success
|
||||
type: string
|
||||
sample: application/x-config-database
|
||||
'''
|
||||
|
||||
from ansible.module_utils.basic import AnsibleModule
|
||||
from ansible.module_utils.network.ingate.common import (ingate_argument_spec,
|
||||
ingate_create_client)
|
||||
|
||||
try:
|
||||
from ingate import ingatesdk
|
||||
HAS_INGATESDK = True
|
||||
except ImportError:
|
||||
HAS_INGATESDK = False
|
||||
|
||||
|
||||
def make_request(module):
|
||||
# Create client and authenticate.
|
||||
api_client = ingate_create_client(**module.params)
|
||||
|
||||
if module.params.get('add'):
|
||||
# Add a row to a table.
|
||||
table = module.params['table']
|
||||
columns = module.params['columns']
|
||||
response = api_client.add_row(table, **columns)
|
||||
return True, 'add', response
|
||||
elif module.params.get('delete'):
|
||||
# Delete a row/table.
|
||||
changed = False
|
||||
table = module.params['table']
|
||||
rowid = module.params.get('rowid')
|
||||
if rowid:
|
||||
response = api_client.delete_row(table, rowid=rowid)
|
||||
else:
|
||||
response = api_client.delete_table(table)
|
||||
if response:
|
||||
changed = True
|
||||
return changed, 'delete', response
|
||||
elif module.params.get('get'):
|
||||
# Get the contents of a table/row.
|
||||
table = module.params['table']
|
||||
rowid = module.params.get('rowid')
|
||||
if rowid:
|
||||
response = api_client.dump_row(table, rowid=rowid)
|
||||
else:
|
||||
response = api_client.dump_table(table)
|
||||
if response:
|
||||
changed = True
|
||||
return changed, 'get', response
|
||||
elif module.params.get('modify'):
|
||||
# Modify a table row.
|
||||
table = module.params['table']
|
||||
columns = module.params['columns']
|
||||
rowid = module.params.get('rowid')
|
||||
if rowid:
|
||||
response = api_client.modify_row(table, rowid=rowid, **columns)
|
||||
else:
|
||||
response = api_client.modify_single_row(table, **columns)
|
||||
if response:
|
||||
changed = True
|
||||
return changed, 'modify', response
|
||||
elif module.params.get('revert'):
|
||||
# Revert edits.
|
||||
response = api_client.revert_edits()
|
||||
if response:
|
||||
response = response[0]['revert-edits']
|
||||
return True, 'revert', response
|
||||
elif module.params.get('factory'):
|
||||
# Load factory defaults.
|
||||
response = api_client.load_factory()
|
||||
if response:
|
||||
response = response[0]['load-factory']
|
||||
return True, 'factory', response
|
||||
elif module.params.get('store'):
|
||||
# Store edit.
|
||||
no_response = module.params.get('no_response')
|
||||
response = api_client.store_edit(no_response=no_response)
|
||||
if response:
|
||||
response = response[0]['store-edit']
|
||||
return True, 'store', response
|
||||
elif module.params.get('return_rowid'):
|
||||
# Find matching rowid(s) in a table.
|
||||
table = module.params['table']
|
||||
columns = module.params['columns']
|
||||
response = api_client.dump_table(table)
|
||||
rowids = []
|
||||
for row in response:
|
||||
match = False
|
||||
for (name, value) in columns.items():
|
||||
if name not in row['data']:
|
||||
continue
|
||||
if not row['data'][name] == value:
|
||||
match = False
|
||||
break
|
||||
else:
|
||||
match = True
|
||||
if match:
|
||||
rowids.append(row['id'])
|
||||
return False, 'return_rowid', rowids
|
||||
elif module.params.get('download'):
|
||||
# Download the configuration database.
|
||||
store = module.params.get('store_download')
|
||||
path = module.params.get('path')
|
||||
filename = module.params.get('filename')
|
||||
response = api_client.download_config(store=store, path=path,
|
||||
filename=filename)
|
||||
if response:
|
||||
response = response[0]['download-config']
|
||||
return False, 'download', response
|
||||
return False, '', {}
|
||||
|
||||
|
||||
def main():
|
||||
argument_spec = ingate_argument_spec(
|
||||
add=dict(type='bool'),
|
||||
delete=dict(type='bool'),
|
||||
get=dict(type='bool'),
|
||||
modify=dict(type='bool'),
|
||||
revert=dict(type='bool'),
|
||||
factory=dict(type='bool'),
|
||||
store=dict(type='bool'),
|
||||
no_response=dict(type='bool', default=False),
|
||||
return_rowid=dict(type='bool'),
|
||||
download=dict(type='bool'),
|
||||
store_download=dict(type='bool', default=False),
|
||||
path=dict(),
|
||||
filename=dict(),
|
||||
table=dict(),
|
||||
rowid=dict(type='int'),
|
||||
columns=dict(type='dict'),
|
||||
)
|
||||
|
||||
mutually_exclusive = [('add', 'delete', 'get', 'modify', 'revert',
|
||||
'factory', 'store', 'return_rowid', 'download')]
|
||||
required_one_of = [['add', 'delete', 'get', 'modify', 'revert', 'factory',
|
||||
'store', 'return_rowid', 'download']]
|
||||
required_if = [('add', True, ['table', 'columns']),
|
||||
('delete', True, ['table']),
|
||||
('get', True, ['table']),
|
||||
('modify', True, ['table', 'columns']),
|
||||
('return_rowid', True, ['table', 'columns'])]
|
||||
|
||||
module = AnsibleModule(argument_spec=argument_spec,
|
||||
mutually_exclusive=mutually_exclusive,
|
||||
required_if=required_if,
|
||||
required_one_of=required_one_of,
|
||||
supports_check_mode=False)
|
||||
if not HAS_INGATESDK:
|
||||
module.fail_json(msg='The Ingate Python SDK module is required')
|
||||
|
||||
result = dict(changed=False)
|
||||
try:
|
||||
changed, command, response = make_request(module)
|
||||
if response and command:
|
||||
result[command] = response
|
||||
result['changed'] = changed
|
||||
except ingatesdk.SdkError as e:
|
||||
module.fail_json(msg=str(e))
|
||||
module.exit_json(**result)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
|
@ -0,0 +1,10 @@
|
|||
[
|
||||
{
|
||||
"href": "http://192.168.1.1/api/v1/misc/dns_servers/1",
|
||||
"data": {
|
||||
"number": "1",
|
||||
"server": "192.168.1.20"
|
||||
},
|
||||
"id": 1
|
||||
}
|
||||
]
|
|
@ -0,0 +1,18 @@
|
|||
[
|
||||
{
|
||||
"table": "misc.dns_servers",
|
||||
"data": {
|
||||
"number": "1",
|
||||
"server": "192.168.1.20"
|
||||
},
|
||||
"id": 1
|
||||
},
|
||||
{
|
||||
"table": "misc.dns_servers",
|
||||
"data": {
|
||||
"number": "2",
|
||||
"server": "192.168.1.30"
|
||||
},
|
||||
"id": 2
|
||||
}
|
||||
]
|
File diff suppressed because one or more lines are too long
|
@ -0,0 +1,7 @@
|
|||
[
|
||||
{
|
||||
"load-factory": {
|
||||
"msg": "reverted the configuration to the factory configuration."
|
||||
}
|
||||
}
|
||||
]
|
|
@ -0,0 +1,20 @@
|
|||
[
|
||||
{
|
||||
"table": "misc.dns_servers",
|
||||
"href": "http://10.48.28.78/api/v1/misc/dns_servers/1",
|
||||
"data": {
|
||||
"number": "1",
|
||||
"server": "192.168.1.20"
|
||||
},
|
||||
"id": 1
|
||||
},
|
||||
{
|
||||
"table": "misc.dns_servers",
|
||||
"href": "http://10.48.28.78/api/v1/misc/dns_servers/2",
|
||||
"data": {
|
||||
"number": "2",
|
||||
"server": "192.168.1.30"
|
||||
},
|
||||
"id": 2
|
||||
}
|
||||
]
|
|
@ -0,0 +1,10 @@
|
|||
[
|
||||
{
|
||||
"table": "misc.unitname",
|
||||
"href": "http://10.48.28.78/api/v1/misc/unitname/1",
|
||||
"data": {
|
||||
"unitname": "\"Testapi - 1541699806\""
|
||||
},
|
||||
"id": 1
|
||||
}
|
||||
]
|
|
@ -0,0 +1 @@
|
|||
[1]
|
|
@ -0,0 +1,7 @@
|
|||
[
|
||||
{
|
||||
"revert-edits": {
|
||||
"msg": "reverted the configuration to the last applied configuration."
|
||||
}
|
||||
}
|
||||
]
|
|
@ -0,0 +1,7 @@
|
|||
[
|
||||
{
|
||||
"store-edit": {
|
||||
"msg": "Successfully applied and saved the configuration."
|
||||
}
|
||||
}
|
||||
]
|
|
@ -50,9 +50,10 @@ def load_fixture(name):
|
|||
|
||||
class TestIngateModule(ModuleTestCase):
|
||||
|
||||
def execute_module(self, failed=False, changed=False, fixture=None):
|
||||
def execute_module(self, failed=False, changed=False, fixture=None,
|
||||
command=None):
|
||||
|
||||
self.load_fixtures(fixture)
|
||||
self.load_fixtures(fixture, command, changed)
|
||||
|
||||
if failed:
|
||||
result = self.failed()
|
||||
|
@ -79,5 +80,5 @@ class TestIngateModule(ModuleTestCase):
|
|||
self.assertEqual(result['changed'], changed, result)
|
||||
return result
|
||||
|
||||
def load_fixtures(self, module_name=None):
|
||||
def load_fixtures(self, fixture=None, command=None, changed=False):
|
||||
pass
|
||||
|
|
241
test/units/modules/network/ingate/test_ig_config.py
Normal file
241
test/units/modules/network/ingate/test_ig_config.py
Normal file
|
@ -0,0 +1,241 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
|
||||
# Copyright (c) 2018, Ingate Systems AB
|
||||
#
|
||||
# This file is part of Ansible
|
||||
#
|
||||
# Ansible 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.
|
||||
#
|
||||
# Ansible 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 <http://www.gnu.org/licenses/>.
|
||||
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import os
|
||||
|
||||
from units.compat.mock import patch
|
||||
from ansible.modules.network.ingate import ig_config
|
||||
from units.modules.utils import set_module_args
|
||||
from .ingate_module import TestIngateModule, load_fixture
|
||||
|
||||
|
||||
class TestConfigModule(TestIngateModule):
|
||||
|
||||
module = ig_config
|
||||
|
||||
def setUp(self):
|
||||
super(TestConfigModule, self).setUp()
|
||||
|
||||
self.mock_make_request = patch('ansible.modules.network.ingate.'
|
||||
'ig_config.make_request')
|
||||
self.make_request = self.mock_make_request.start()
|
||||
# ATM the Ingate Python SDK is not needed in this unit test.
|
||||
self.module.HAS_INGATESDK = True
|
||||
|
||||
def tearDown(self):
|
||||
super(TestConfigModule, self).tearDown()
|
||||
self.mock_make_request.stop()
|
||||
|
||||
def load_fixtures(self, fixture=None, command=None, changed=False):
|
||||
self.make_request.side_effect = [(changed, command,
|
||||
load_fixture(fixture))]
|
||||
|
||||
def test_ig_config_add(self):
|
||||
"""Test adding a row to a table.
|
||||
"""
|
||||
command = 'add'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
add=True,
|
||||
table='misc.dns_servers',
|
||||
columns=dict(
|
||||
server='192.168.1.23'
|
||||
)))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
||||
|
||||
def test_ig_config_delete(self):
|
||||
"""Test deleting all rows in a table.
|
||||
"""
|
||||
command = 'delete'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
delete=True,
|
||||
table='misc.dns_servers',
|
||||
))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
||||
|
||||
def test_ig_config_get(self):
|
||||
"""Test returning all rows in a table.
|
||||
"""
|
||||
command = 'get'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
get=True,
|
||||
table='misc.dns_servers',
|
||||
))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
||||
|
||||
def test_ig_config_modify(self):
|
||||
"""Test modifying a row.
|
||||
"""
|
||||
command = 'modify'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
modify=True,
|
||||
table='misc.unitname',
|
||||
columns=dict(
|
||||
unitname='"Testapi - 1541699806"'
|
||||
)))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
||||
|
||||
def test_ig_config_revert(self):
|
||||
"""Test reverting the preliminary configuration.
|
||||
"""
|
||||
command = 'revert'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
revert=True
|
||||
))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
||||
|
||||
def test_ig_config_factory(self):
|
||||
"""Test loading factory defaults.
|
||||
"""
|
||||
command = 'factory'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
factory=True
|
||||
))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
||||
|
||||
def test_ig_config_store(self):
|
||||
"""Test storing the preliminary configuration.
|
||||
"""
|
||||
command = 'store'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
store=True
|
||||
))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
||||
|
||||
def test_ig_config_download(self):
|
||||
"""Test doing backup of configuration database.
|
||||
"""
|
||||
command = 'store'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
download=True
|
||||
))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
||||
|
||||
def test_ig_config_return_rowid(self):
|
||||
"""Test retrieving a row id.
|
||||
"""
|
||||
command = 'return_rowid'
|
||||
set_module_args(dict(
|
||||
client=dict(
|
||||
version='v1',
|
||||
address='127.0.0.1',
|
||||
scheme='http',
|
||||
username='alice',
|
||||
password='foobar'
|
||||
),
|
||||
return_rowid=True,
|
||||
table='network.local_nets',
|
||||
columns=dict(
|
||||
interface='eth0'
|
||||
)))
|
||||
fixture = '%s_%s.%s' % (os.path.basename(__file__).split('.')[0],
|
||||
command, 'json')
|
||||
result = self.execute_module(changed=True, fixture=fixture,
|
||||
command=command)
|
||||
self.assertTrue(command in result)
|
|
@ -34,7 +34,7 @@ class TestUnitInformationModule(TestIngateModule):
|
|||
self.mock_make_request.stop()
|
||||
self.mock_is_ingatesdk_installed.stop()
|
||||
|
||||
def load_fixtures(self, fixture=None):
|
||||
def load_fixtures(self, fixture=None, command=None, changed=False):
|
||||
self.make_request.side_effect = [load_fixture(fixture)]
|
||||
self.is_ingatesdk_installed.return_value = True
|
||||
|
||||
|
|
Loading…
Reference in a new issue