0686450cae
* Fix CNOS unit test log usage. * Use temp dir for Galaxy unit tests. * Write to temp files in interfaces_file unit test. * Fix log placement in netapp_e_ldap unit test.
45 lines
1.8 KiB
Python
45 lines
1.8 KiB
Python
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|
|
import json
|
|
import os
|
|
from ansible.compat.tests.mock import patch
|
|
from ansible.modules.network.cnos import cnos_vlan
|
|
from units.modules.utils import set_module_args
|
|
from .cnos_module import TestCnosModule, load_fixture
|
|
|
|
|
|
class TestCnosVlanModule(TestCnosModule):
|
|
|
|
module = cnos_vlan
|
|
|
|
def setUp(self):
|
|
super(TestCnosVlanModule, 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(TestCnosVlanModule, 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_vlan_config.cfg')]
|
|
|
|
def test_cnos_vlan_create(self):
|
|
set_module_args({'username': 'admin', 'password': 'pass',
|
|
'host': '10.241.107.39', 'deviceType': 'g8272_cnos',
|
|
'outputfile': self.test_log, 'vlanArg1': '13',
|
|
'vlanArg2': 'name', 'vlanArg3': 'anil'})
|
|
result = self.execute_module(changed=True)
|
|
expected_result = 'VLAN configuration is accomplished'
|
|
self.assertEqual(result['msg'], expected_result)
|
|
|
|
def test_cnos_vlan_state(self):
|
|
set_module_args({'username': 'admin', 'password': 'pass',
|
|
'host': '10.241.107.39', 'deviceType': 'g8272_cnos',
|
|
'outputfile': self.test_log, 'vlanArg1': '13',
|
|
'vlanArg2': 'state', 'vlanArg3': 'active'})
|
|
result = self.execute_module(changed=True)
|
|
expected_result = 'VLAN configuration is accomplished'
|
|
self.assertEqual(result['msg'], expected_result)
|