aboutsummaryrefslogtreecommitdiffstats
path: root/os_net_config/tests/test_impl_ifcfg.py
diff options
context:
space:
mode:
Diffstat (limited to 'os_net_config/tests/test_impl_ifcfg.py')
-rw-r--r--os_net_config/tests/test_impl_ifcfg.py21
1 files changed, 21 insertions, 0 deletions
diff --git a/os_net_config/tests/test_impl_ifcfg.py b/os_net_config/tests/test_impl_ifcfg.py
index 34a9e40..5c733d8 100644
--- a/os_net_config/tests/test_impl_ifcfg.py
+++ b/os_net_config/tests/test_impl_ifcfg.py
@@ -260,6 +260,27 @@ BOOTPROTO=none
self.assertEqual(_OVS_BOND_DHCP,
self.get_interface_config('bond0'))
+ def test_interface_defroute(self):
+ interface1 = objects.Interface('em1')
+ interface2 = objects.Interface('em2', defroute=False)
+ self.provider.add_interface(interface1)
+ self.provider.add_interface(interface2)
+ em1_config = """# This file is autogenerated by os-net-config
+DEVICE=em1
+ONBOOT=yes
+HOTPLUG=no
+BOOTPROTO=none
+"""
+ em2_config = """# This file is autogenerated by os-net-config
+DEVICE=em2
+ONBOOT=yes
+HOTPLUG=no
+BOOTPROTO=none
+DEFROUTE=no
+"""
+ self.assertEqual(em1_config, self.get_interface_config('em1'))
+ self.assertEqual(em2_config, self.get_interface_config('em2'))
+
class TestIfcfgNetConfigApply(base.TestCase):