mirror of https://github.com/ansible/ansible.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
89 lines
3.3 KiB
Python
89 lines
3.3 KiB
Python
8 years ago
|
# (c) 2017 Red Hat Inc.
|
||
|
#
|
||
|
# 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/>.
|
||
|
|
||
|
# Make coding more python3-ish
|
||
|
from __future__ import (absolute_import, division, print_function)
|
||
|
__metaclass__ = type
|
||
|
|
||
|
import json
|
||
|
from xml.etree.ElementTree import tostring
|
||
|
|
||
|
from ansible.compat.tests.mock import patch, MagicMock
|
||
|
from ansible.modules.network.junos import junos_rpc
|
||
|
from .junos_module import TestJunosModule, load_fixture, set_module_args
|
||
|
from ansible.module_utils._text import to_text
|
||
|
|
||
|
RPC_CLI_MAP = {
|
||
|
'get-software-information': 'show version',
|
||
|
'get-interface-information': 'show interfaces details',
|
||
|
'get-system-memory-information': 'show system memory',
|
||
|
'get-chassis-inventory': 'show chassis hardware',
|
||
|
'get-system-storage': 'show system storage'
|
||
|
}
|
||
|
|
||
|
|
||
|
class TestJunosCommandModule(TestJunosModule):
|
||
|
|
||
|
module = junos_rpc
|
||
|
|
||
|
def setUp(self):
|
||
|
self.mock_send_request = patch('ansible.modules.network.junos.junos_rpc.send_request')
|
||
|
self.send_request = self.mock_send_request.start()
|
||
|
|
||
|
def tearDown(self):
|
||
|
self.mock_send_request.stop()
|
||
|
|
||
|
def load_fixtures(self, commands=None, format='text', changed=False):
|
||
|
def load_from_file(*args, **kwargs):
|
||
|
module, element = args
|
||
|
if element.text:
|
||
|
path = str(element.text)
|
||
|
else:
|
||
|
tag = str(element.tag)
|
||
|
if tag.startswith('{'):
|
||
|
tag = tag.split('}', 1)[1]
|
||
|
path = RPC_CLI_MAP[tag]
|
||
|
|
||
|
filename = path.replace(' ', '_')
|
||
|
filename = '%s_%s.txt' % (filename, format)
|
||
|
|
||
|
return load_fixture(filename)
|
||
|
|
||
|
self.send_request.side_effect = load_from_file
|
||
|
|
||
|
def test_junos_rpc_xml(self):
|
||
|
set_module_args(dict(rpc='get-chassis-inventory'))
|
||
|
result = self.execute_module(format='xml')
|
||
|
self.assertTrue(result['xml'].find('<chassis-inventory>\n'))
|
||
|
|
||
|
def test_junos_rpc_text(self):
|
||
|
set_module_args(dict(rpc='get-software-information', output='text'))
|
||
|
result = self.execute_module(format='text')
|
||
|
self.assertTrue(result['output_lines'][0].startswith('Hostname: vsrx01'))
|
||
|
|
||
|
def test_junos_rpc_json(self):
|
||
|
set_module_args(dict(rpc='get-software-information', output='json'))
|
||
|
result = self.execute_module(format='json')
|
||
|
self.assertTrue('software-information' in result['output'])
|
||
|
|
||
|
def test_junos_rpc_args(self):
|
||
|
set_module_args(dict(rpc='get-software-information', args={'interface': 'em0', 'media': True}))
|
||
|
result = self.execute_module(format='xml')
|
||
|
args, kwargs = self.send_request.call_args
|
||
|
reply = tostring(args[1]).decode()
|
||
|
self.assertTrue(reply.find('<interface>em0</interface><media /></get-software-information>'))
|