unify test result check for feature project and apply to parser
[functest.git] / testcases / vnf / RNC / parser.py
1 #!/usr/bin/python
2 #
3 # Copyright 2016 ZTE Corporation
4 #
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
8 #
9 # http://www.apache.org/licenses/LICENSE-2.0
10 #
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
16 #
17 import os
18 import time
19 import yaml
20
21 import functest.utils.functest_logger as ft_logger
22 import functest.utils.functest_utils as functest_utils
23
24 with open(os.environ["CONFIG_FUNCTEST_YAML"]) as f:
25     functest_yaml = yaml.safe_load(f)
26
27 dirs = functest_yaml.get('general').get('directories')
28 FUNCTEST_REPO = dirs.get('dir_repo_functest')
29 PARSER_REPO = dirs.get('dir_repo_parser')
30
31 logger = ft_logger.Logger("parser").getLogger()
32
33
34 def main():
35     project = 'parser'
36     case_name = 'parser-basics'
37     cmd = 'cd %s/tests && ./functest_run.sh' % PARSER_REPO
38
39     start_time = time.time()
40     ret = functest_utils.execute_command(cmd, logger, exit_on_error=False)
41     stop_time = time.time()
42
43     status, details = functest_utils.check_test_result(case_name,
44                                                        ret,
45                                                        start_time,
46                                                        stop_time)
47
48     functest_utils.logger_test_results(logger,
49                                        project,
50                                        case_name,
51                                        status,
52                                        details)
53
54     functest_utils.push_results_to_db(project,
55                                       case_name,
56                                       logger,
57                                       start_time,
58                                       stop_time,
59                                       status,
60                                       details)
61     exit(ret)
62
63 if __name__ == '__main__':
64     main()