mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
8408789511
Connman is the network manager used as backend. Functionalities: - ip.get_interface_details() - ip.up(interface) - ip.down(interface) - ip.set_dhcp_linklocal_all(interface) - ip.set_static_all(interface, address, netmask, gateway, domains) - ip.build_interface(interface, interface_type, enable, **settings) - ip.build_network_settings(**settings) - ip.get_network_settings() - ip.apply_network_settings(**settings) Integration test for: - ip.enable - ip.disable - ip.set_dhcp_linklocal_all - ip.set_static_all Signed-off-by: Heghedus Razvan <razvan.heghedus@ni.com>
119 lines
4.2 KiB
Python
119 lines
4.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
integration tests for nilirt_ip
|
|
'''
|
|
|
|
# Import python libs
|
|
from __future__ import absolute_import
|
|
import time
|
|
|
|
# Import Salt Testing libs
|
|
from salttesting import skipIf
|
|
from salttesting.helpers import ensure_in_syspath, destructiveTest
|
|
ensure_in_syspath('../../')
|
|
|
|
# Import salt libs
|
|
import integration
|
|
import salt.utils
|
|
|
|
|
|
@skipIf(not salt.utils.is_linux(), 'These tests can only be run on linux')
|
|
class Nilrt_ipModuleTest(integration.ModuleCase):
|
|
'''
|
|
Validate the nilrt_ip module
|
|
'''
|
|
|
|
def __init__(self, arg):
|
|
super(self.__class__, self).__init__(arg)
|
|
self.initialState = {}
|
|
|
|
def setUp(self):
|
|
'''
|
|
Get current settings
|
|
'''
|
|
# save files from var/lib/connman*
|
|
os_grain = self.run_function('grains.item', ['os_family'])
|
|
if os_grain['os_family'] != 'NILinuxRT':
|
|
self.skipTest('Tests applicable only to NILinuxRT')
|
|
super(Nilrt_ipModuleTest, self).setUp()
|
|
if salt.utils.get_uid(salt.utils.get_user()) != 0:
|
|
self.skipTest('Test requires root')
|
|
self.run_function('file.copy', ['/var/lib/connman', '/tmp/connman', 'recurse=True', 'remove_existing=True'])
|
|
|
|
def tearDown(self):
|
|
'''
|
|
Reset to original settings
|
|
'''
|
|
# restore files
|
|
self.run_function('file.copy', ['/tmp/connman', '/var/lib/connman', 'recurse=True', 'remove_existing=True'])
|
|
# restart connman
|
|
self.run_function('service.restart', ['connman'])
|
|
time.sleep(10) # wait 10 seconds for connman to be fully loaded
|
|
interfaces = self.__interfaces()
|
|
for interface in interfaces:
|
|
self.run_function('ip.up', [interface])
|
|
|
|
def __connected(self, interface):
|
|
return interface['up']
|
|
|
|
def __interfaces(self):
|
|
interfaceList = []
|
|
for iface in self.run_function('ip.get_interfaces_details')['interfaces']:
|
|
interfaceList.append(iface['connectionid'])
|
|
return interfaceList
|
|
|
|
@destructiveTest
|
|
def test_down(self):
|
|
interfaces = self.__interfaces()
|
|
for interface in interfaces:
|
|
result = self.run_function('ip.down', [interface])
|
|
self.assertTrue(result)
|
|
info = self.run_function('ip.get_interfaces_details')
|
|
for interface in info['interfaces']:
|
|
self.assertFalse(self.__connected(interface))
|
|
|
|
@destructiveTest
|
|
def test_up(self):
|
|
interfaces = self.__interfaces()
|
|
#first down all interfaces
|
|
for interface in interfaces:
|
|
self.run_function('ip.down', [interface])
|
|
# up interfaces
|
|
for interface in interfaces:
|
|
result = self.run_function('ip.up', [interface])
|
|
self.assertTrue(result)
|
|
info = self.run_function('ip.get_interfaces_details')
|
|
for interface in info['interfaces']:
|
|
self.assertTrue(self.__connected(interface))
|
|
|
|
@destructiveTest
|
|
def test_set_dhcp_linklocal_all(self):
|
|
interfaces = self.__interfaces()
|
|
for interface in interfaces:
|
|
result = self.run_function('ip.set_dhcp_linklocal_all', [interface])
|
|
self.assertTrue(result)
|
|
info = self.run_function('ip.get_interfaces_details')
|
|
for interface in info['interfaces']:
|
|
self.assertEqual(interface['ipv4']['requestmode'], 'dhcp_linklocal')
|
|
|
|
@destructiveTest
|
|
def test_static_all(self):
|
|
interfaces = self.__interfaces()
|
|
for interface in interfaces:
|
|
result = self.run_function('ip.set_static_all', [interface, '192.168.10.4', '255.255.255.0', '192.168.10.1', '8.8.4.4 my.dns.com'])
|
|
self.assertTrue(result)
|
|
|
|
info = self.run_function('ip.get_interfaces_details')
|
|
for interface in info['interfaces']:
|
|
self.assertIn('8.8.4.4', interface['ipv4']['dns'])
|
|
self.assertIn('my.dns.com', interface['ipv4']['dns'])
|
|
self.assertEqual(interface['ipv4']['requestmode'], 'static')
|
|
self.assertEqual(interface['ipv4']['address'], '192.168.10.4')
|
|
self.assertEqual(interface['ipv4']['netmask'], '255.255.255.0')
|
|
self.assertEqual(interface['ipv4']['gateway'], '192.168.10.1')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
from integration import run_tests
|
|
run_tests(Nilrt_ipModuleTest)
|