summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/controller/unittest/test_cfg_intent_parse.py
diff options
context:
space:
mode:
Diffstat (limited to 'vstf/vstf/controller/unittest/test_cfg_intent_parse.py')
-rwxr-xr-xvstf/vstf/controller/unittest/test_cfg_intent_parse.py32
1 files changed, 32 insertions, 0 deletions
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
index 00000000..665732aa
--- /dev/null
+++ b/vstf/vstf/controller/unittest/test_cfg_intent_parse.py
@@ -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