f2c9a6b126
* CNOS Vlag module is refactored to use persistence connection instead of paramiko. * Changing interface and port channel modules to persistent connection and adding UT for them. * Fixing pep8 issues * Removing trailing new line * Removing trailing new line * Removing trailing new line * Correcting indentation mistake * Update cnos_vlag.py * Removing commented examples They are commented because those configurations are not meant for L2 ports
86 lines
4.4 KiB
Python
86 lines
4.4 KiB
Python
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import json
|
|
from ansible.compat.tests.mock import patch
|
|
from ansible.modules.network.cnos import cnos_interface
|
|
from units.modules.utils import set_module_args
|
|
from .cnos_module import TestCnosModule, load_fixture
|
|
|
|
|
|
class TestCnosEthernetModule(TestCnosModule):
|
|
|
|
module = cnos_interface
|
|
|
|
def setUp(self):
|
|
super(TestCnosEthernetModule, self).setUp()
|
|
|
|
self.mock_run_cnos_commands = patch('ansible.module_utils.network.cnos.cnos.run_cnos_commands')
|
|
self.run_cnos_commands = self.mock_run_cnos_commands.start()
|
|
|
|
def tearDown(self):
|
|
super(TestCnosEthernetModule, self).tearDown()
|
|
self.mock_run_cnos_commands.stop()
|
|
|
|
def load_fixtures(self, commands=None, transport='cli'):
|
|
self.run_cnos_commands.return_value = [load_fixture('cnos_ethernet_config.cfg')]
|
|
|
|
def test_ethernet_channelgroup(self):
|
|
set_module_args({'username': 'admin', 'password': 'pass',
|
|
'host': '10.241.107.39', 'deviceType': 'g8272_cnos',
|
|
'outputfile': 'test.log', 'interfaceOption': 'ethernet', 'interfaceRange': '33',
|
|
'interfaceArg1': 'channel-group', 'interfaceArg2': '33', 'interfaceArg3': 'on'})
|
|
result = self.execute_module(changed=True)
|
|
file = open('Anil.txt', "a")
|
|
file.write(str(result))
|
|
file.close()
|
|
expected_result = 'Interface Configuration is Accomplished'
|
|
self.assertEqual(result['msg'], expected_result)
|
|
|
|
def test_cnos_ethernet_lacp(self):
|
|
set_module_args({'username': 'admin', 'password': 'pass',
|
|
'host': '10.241.107.39', 'deviceType': 'g8272_cnos',
|
|
'outputfile': 'test.log', 'interfaceOption': 'ethernet', 'interfaceRange': '33',
|
|
'interfaceArg1': 'lacp', 'interfaceArg2': 'port-priority', 'interfaceArg3': '33'})
|
|
result = self.execute_module(changed=True)
|
|
expected_result = 'Interface Configuration is Accomplished'
|
|
self.assertEqual(result['msg'], expected_result)
|
|
|
|
def test_cnos_ethernet_duplex(self):
|
|
set_module_args({'username': 'admin', 'password': 'pass',
|
|
'host': '10.241.107.39', 'deviceType': 'g8272_cnos',
|
|
'outputfile': 'test.log', 'interfaceOption': 'ethernet', 'interfaceRange': '33',
|
|
'interfaceArg1': 'duplex', 'interfaceArg2': 'auto'})
|
|
result = self.execute_module(changed=True)
|
|
expected_result = 'Interface Configuration is Accomplished'
|
|
self.assertEqual(result['msg'], expected_result)
|
|
|
|
def test_cnos_ethernet_mtu(self):
|
|
set_module_args({'username': 'admin', 'password': 'pass',
|
|
'host': '10.241.107.39', 'deviceType': 'g8272_cnos',
|
|
'outputfile': 'test.log', 'interfaceOption': 'ethernet', 'interfaceRange': '33',
|
|
'interfaceArg1': 'mtu', 'interfaceArg2': '1300'})
|
|
result = self.execute_module(changed=True)
|
|
expected_result = 'Interface Configuration is Accomplished'
|
|
self.assertEqual(result['msg'], expected_result)
|
|
|
|
def test_cnos_ethernet_spanningtree(self):
|
|
set_module_args({'username': 'admin', 'password': 'pass',
|
|
'host': '10.241.107.39', 'deviceType': 'g8272_cnos',
|
|
'outputfile': 'test.log', 'interfaceOption': 'ethernet', 'interfaceRange': '33',
|
|
'interfaceArg1': 'spanning-tree', 'interfaceArg2': 'mst',
|
|
'interfaceArg3': '33-35', 'interfaceArg4': 'cost',
|
|
'interfaceArg5': '33'})
|
|
result = self.execute_module(changed=True)
|
|
expected_result = 'Interface Configuration is Accomplished'
|
|
self.assertEqual(result['msg'], expected_result)
|
|
|
|
def test_cnos_ethernet_ip(self):
|
|
set_module_args({'username': 'admin', 'password': 'pass',
|
|
'host': '10.241.107.39', 'deviceType': 'g8272_cnos',
|
|
'outputfile': 'test.log', 'interfaceOption': 'ethernet', 'interfaceRange': '33',
|
|
'interfaceArg1': 'ip', 'interfaceArg2': 'port',
|
|
'interfaceArg3': 'anil'})
|
|
result = self.execute_module(changed=True)
|
|
expected_result = 'Interface Configuration is Accomplished'
|
|
self.assertEqual(result['msg'], expected_result)
|