aboutsummaryrefslogtreecommitdiffstats
path: root/functest/opnfv_tests/vnf/router/vnf_controller/checker.py
blob: d3a216ed07b8e8487613e497c923ac9cd6f96b88 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#!/usr/bin/env python

# Copyright (c) 2017 Okinawa Open Laboratory and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0

# pylint: disable=missing-docstring

"""vrouter test result check module"""

import json
import logging
import re

from jinja2 import Environment, FileSystemLoader


class Checker():
    """vrouter test result check class"""

    logger = logging.getLogger(__name__)

    def __init__(self):
        self.logger.debug("init checker")

    @staticmethod
    def load_check_rule(rule_file_dir, rule_file_name, parameter):
        loader = FileSystemLoader(rule_file_dir,
                                  encoding='utf8')
        env = Environment(loader=loader)
        check_rule_template = env.get_template(rule_file_name)
        check_rule = check_rule_template.render(parameter)
        check_rule_data = json.loads(check_rule)
        return check_rule_data

    @staticmethod
    def regexp_information(response, rules):
        status = False
        result_data = {}

        for rule in rules["rules"]:
            result_data = {
                "test_name": rule["description"],
                "result": "NG"
            }

            match = re.search(rule["regexp"],
                              response)
            rule["response"] = response
            if match is None:
                status = False
                break

            if not match.group(1) == rule["result"]:
                status = False
            else:
                result_data["result"] = "OK"
                status = True

        return status, result_data