summaryrefslogtreecommitdiff
path: root/src/tests/test_config_parser.py
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2019-01-26 01:26:36 +0100
committerDaniil Baturin <daniil@baturin.org>2019-01-26 01:26:36 +0100
commit6d172d767360a675462da6a0bac100a24c544892 (patch)
tree02664696a996abf083ae1721e03c02b79143cfbd /src/tests/test_config_parser.py
parent4a0027211c0cc1a56294899d0796ed923cacd209 (diff)
downloadvyos-1x-6d172d767360a675462da6a0bac100a24c544892.tar.gz
vyos-1x-6d172d767360a675462da6a0bac100a24c544892.zip
T1193: add some tests for the config parser.
Diffstat (limited to 'src/tests/test_config_parser.py')
-rw-r--r--src/tests/test_config_parser.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/src/tests/test_config_parser.py b/src/tests/test_config_parser.py
new file mode 100644
index 000000000..f58ff23bf
--- /dev/null
+++ b/src/tests/test_config_parser.py
@@ -0,0 +1,43 @@
+#!/usr/bin/env python3
+#
+# Copyright (C) 2018 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
+# published by the Free Software Foundation.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+#
+#
+
+import os
+import tempfile
+import unittest
+from unittest import TestCase, mock
+
+import vyos.configtree
+
+
+class TestConfigParser(TestCase):
+ def setUp(self):
+ with open('tests/data/config.valid', 'r') as f:
+ config_string = f.read()
+ self.config = vyos.configtree.ConfigTree(config_string)
+
+ def test_top_level_valueless(self):
+ self.assertTrue(self.config.exists(["top-level-valueless-node"]))
+
+ def test_top_level_leaf(self):
+ self.assertTrue(self.config.exists(["top-level-leaf-node"]))
+ self.assertEqual(self.config.return_value(["top-level-leaf-node"]), "foo")
+
+ def test_top_level_tag(self):
+ self.assertTrue(self.config.exists(["top-level-tag-node"]))
+ # No sorting is intentional, child order must be preserved
+ self.assertEqual(self.config.list_nodes(["top-level-tag-node"]), ["foo", "bar"])