summaryrefslogtreecommitdiffstats
path: root/vstf/vstf/controller/unittest/test_cfg_intent_parse.py
blob: 665732aae85034ccdba0eef982a2f68a2310060c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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()