Upload the contribution of vstf as bottleneck network framework.
[bottlenecks.git] / vstf / vstf / controller / unittest / test_cfg_intent_parse.py
diff --git a/vstf/vstf/controller/unittest/test_cfg_intent_parse.py b/vstf/vstf/controller/unittest/test_cfg_intent_parse.py
new file mode 100755 (executable)
index 0000000..665732a
--- /dev/null
@@ -0,0 +1,32 @@
+"""
+Created on 2015-10-14
+
+@author: y00228926
+"""
+import os
+import unittest
+
+from vstf.controller.unittest import model
+from vstf.controller.env_build.cfg_intent_parse import IntentParser
+
+
+class Test(model.Test):
+    def setUp(self):
+        super(Test, self).setUp()
+        self.dir = os.path.dirname(__file__)
+
+    def tearDown(self):
+        super(Test, self).tearDown()
+
+    def test_parse_cfg_file(self):
+        for m in ['Ti', 'Tu', 'Tn', 'Tnv']:
+            filepath = os.path.join(self.dir, 'configuration/env/%s.json' % m)
+            parser = IntentParser(filepath)
+            parser.parse_cfg_file()
+
+
+if __name__ == "__main__":
+    import logging
+
+    logging.basicConfig(level=logging.INFO)
+    unittest.main()
\ No newline at end of file