summaryrefslogtreecommitdiff
path: root/src/tests/test_util.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-03-30 19:18:09 +0200
committerChristian Poessinger <christian@poessinger.com>2022-03-30 23:10:14 +0200
commite3626da307d66c34e4ce12c7c38cdb8fa5da9889 (patch)
tree5288c5d59deabccee725b974caeae4643b26a254 /src/tests/test_util.py
parentadda3d86080bb3b8fe26424c7d829e40eb9e2b23 (diff)
downloadvyos-1x-e3626da307d66c34e4ce12c7c38cdb8fa5da9889.tar.gz
vyos-1x-e3626da307d66c34e4ce12c7c38cdb8fa5da9889.zip
vyos.util: T4319: add is_ipv6_enabled() helper function
(cherry picked from commit df0fbfeedce0f163e9d10be21d58ad4dc797a28a)
Diffstat (limited to 'src/tests/test_util.py')
-rw-r--r--src/tests/test_util.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/tests/test_util.py b/src/tests/test_util.py
index 22bc085c5..8afa531d0 100644
--- a/src/tests/test_util.py
+++ b/src/tests/test_util.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python3
#
-# Copyright (C) 2020 VyOS maintainers and contributors
+# Copyright (C) 2020-2022 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
@@ -24,3 +24,15 @@ class TestVyOSUtil(TestCase):
new_data = mangle_dict_keys(data, '-', '_')
self.assertEqual(new_data, expected_data)
+ def test_sysctl_read(self):
+ self.assertEqual(sysctl_read('net.ipv4.conf.lo.forwarding'), '1')
+
+ def test_ipv6_enabled(self):
+ tmp = sysctl_read('net.ipv6.conf.all.disable_ipv6')
+ # We need to test for both variants as this depends on how the
+ # Docker container is started (with or without IPv6 support) - so we
+ # will simply check both cases to not make the users life miserable.
+ if tmp == '0':
+ self.assertTrue(is_ipv6_enabled())
+ else:
+ self.assertFalse(is_ipv6_enabled())