Update odltools
[netvirt.git] / resources / tools / odltools / odltools / netvirt / tests / test_config.py
diff --git a/resources/tools/odltools/odltools/netvirt/tests/test_config.py b/resources/tools/odltools/odltools/netvirt/tests/test_config.py
new file mode 100644 (file)
index 0000000..3bf982c
--- /dev/null
@@ -0,0 +1,36 @@
+# Copyright 2018 Red Hat, Inc. and others. All Rights Reserved.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+#     http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+
+import logging
+import unittest
+from odltools import logg
+from odltools.netvirt import config
+from odltools.netvirt import tests
+
+
+class TestConfig(unittest.TestCase):
+    # TODO: capture stdout and check for list of tables.
+
+    def setUp(self):
+        logg.Logger(logging.INFO, logging.INFO)
+        self.args = tests.Args(path=tests.get_resources_path())
+
+    def test_get_gnodes(self):
+        config.update_gnodes(self.args)
+        gnodes = config.get_gnodes()
+        self.assertIsNotNone(gnodes.get("203251201875890"))
+
+
+if __name__ == '__main__':
+    unittest.main()