aboutsummaryrefslogtreecommitdiffstats
path: root/ci/tier_handler.py
blob: 1eadfba50bee90498b749eaa9d9e02e2ab41db6e (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114

@media only all and (prefers-color-scheme: dark) {
.highlight .hll { background-color: #49483e }
.highlight .c { color: #75715e } /* Comment */
.highlight .err { color: #960050; background-color: #1e0010 } /* Error */
.highlight .k { color: #66d9ef } /* Keyword */
.highlight .l { color: #ae81ff } /* Literal */
.highlight .n { color: #f8f8f2 } /* Name */
.highlight .o { color: #f92672 } /* Operator */
.highlight .p { color: #f8f8f2 } /* Punctuation */
.highlight .ch { color: #75715e } /* Comment.Hashbang */
.highlight .cm { color: #75715e } /* Comment.Multiline */
.highlight .cp { color: #75715e } /* Comment.Preproc */
.highlight .cpf { color: #75715e } /* Comment.PreprocFile */
.highlight .c1 { color: #75715e } /* Comment.Single */
.highlight .cs { color: #75715e } /* Comment.Special */
.highlight .gd { color: #f92672 } /* Generic.Deleted */
.highlight .ge { font-style: italic } /* Generic.Emph */
.highlight .gi { color: #a6e22e } /* Generic.Inserted */
.highlight .gs { font-weight: bold } /* Generic.Strong */
.highlight .gu { color: #75715e } /* Generic.Subheading */
.highlight .kc { color: #66d9ef } /* Keyword.Constant */
.highlight .kd { color: #66d9ef } /* Keyword.Declaration */
.highlight .kn { color: #f92672 } /* Keyword.Namespace */
.highlight .kp { color: #66d9ef } /* Keyword.Pseudo */
.highlight .kr { color: #66d9ef } /* Keyword.Reserved */
.highlight .kt { color: #66d9ef } /* Keyword.Type */
.highlight .ld { color: #e6db74 } /* Literal.Date */
.highlight .m { color: #ae81ff } /* Literal.Number */
.highlight .s { color: #e6db74 } /* Literal.String */
.highlight .na { color: #a6e22e } /* Name.Attribute */
.highlight .nb { color: #f8f8f2 } /* Name.Builtin */
.highlight .nc { color: #a6e22e } /* Name.Class */
.highlight .no { color: #66d9ef } /* Name.Constant */
.highlight .nd { color: #a6e22e } /* Name.Decorator */
.highlight .ni { color: #f8f8f2 } /* Name.Entity */
.highlight .ne { color: #a6e22e } /* Name.Exception */
.highlight .nf { color: #a6e22e } /* Name.Function */
.highlight .nl { color: #f8f8f2 } /* Name.Label */
.highlight .nn { color: #f8f8f2 } /* Name.Namespace */
.highlight .nx { color: #a6e22e } /* Name.Other */
.highlight .py { co
#!/usr/bin/env python
#
# jose.lausuch@ericsson.com
# 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
#


import re

LINE_LENGTH = 72


def split_text(text, max_len):
    words = text.split()
    lines = []
    line = ""
    for word in words:
        if len(line) + len(word) < max_len - 1:
            line += word + " "
        else:
            lines.append(line)
            line = word + " "
    if line != "":
        lines.append(line)
    return lines


class Tier:

    def __init__(self, name, order, ci_loop, description=""):
        self.tests_array = []
        self.name = name
        self.order = order
        self.ci_loop = ci_loop
        self.description = description

    def add_test(self, testcase):
        self.tests_array.append(testcase)

    def get_tests(self):
        array_tests = []
        for test in self.tests_array:
            array_tests.append(test)
        return array_tests

    def get_test_names(self):
        array_tests = []
        for test in self.tests_array:
            array_tests.append(test.get_name())
        return array_tests

    def get_test(self, test_name):
        if self.is_test(test_name):
            for test in self.tests_array:
                if test.get_name() == test_name:
                    return test
        return None

    def is_test(self, test_name):
        for test in self.tests_array:
            if test.get_name() == test_name:
                return True
        return False

    def get_name(self):
        return self.name

    def get_order(self):
        return self.order

    def get_ci_loop(self):
        return self.ci_loop

    def __str__(self):
        lines = split_text(self.description, LINE_LENGTH - 6)

        out = ""
        out += ("+%s+\n" % ("=" * (LINE_LENGTH - 2)))
        out += ("| Tier:  " + self.name.ljust(LINE_LENGTH - 10) + "|\n")
        out += ("+%s+\n" % ("=" * (LINE_LENGTH - 2)))
        out += ("| Order: " + str(self.order).ljust(LINE_LENGTH - 10) + "|\n")
        out += ("| CI Loop: " + str(self.ci_loop).ljust(LINE_LENGTH - 12) +
                "|\n")
        out += ("| Description:".ljust(LINE_LENGTH - 1) + "|\n")
        for line in lines:
            out += ("|    " + line.ljust(LINE_LENGTH - 7) + " |\n")
        out += ("| Test cases:".ljust(LINE_LENGTH - 1) + "|\n")
        tests = self.get_test_names()
        if len(tests) > 0:
            for i in range(len(tests)):
                out += ("|    - %s |\n" % tests[i].ljust(LINE_LENGTH - 9))
        else:
            out += ("|    (There are no supported test cases "
                    .ljust(LINE_LENGTH - 1) + "|\n")
            out += ("|    in this tier for the given scenario) "
                    .ljust(LINE_LENGTH - 1) + "|\n")
        out += ("|".ljust(LINE_LENGTH - 1) + "|\n")
        out += ("+%s+\n" % ("-" * (LINE_LENGTH - 2)))
        return out


class TestCase:

    def __init__(self, name, dependency, criteria, blocking, description=""):
        self.name = name
        self.dependency = dependency
        self.description = description
        self.criteria = criteria
        self.blocking = blocking

    @staticmethod
    def is_none(item):
        return item is None or item is ""

    def is_compatible(self, ci_installer, ci_scenario):
        try:
            if not self.is_none(ci_installer):
                if re.search(self.dependency.get_installer(),
                             ci_installer) is None:
                    return False
            if not self.is_none(ci_scenario):
                if re.search(self.dependency.get_scenario(),
                             ci_scenario) is None:
                    return False
            return True
        except TypeError:
            return False

    def get_name(self):
        return self.name

    def get_criteria(self):
        return self.criteria

    def is_blocking(self):
        return self.blocking

    def __str__(self):
        lines = split_text(self.description, LINE_LENGTH - 6)

        out = ""
        out += ("+%s+\n" % ("=" * (LINE_LENGTH - 2)))
        out += ("| Testcase:  " + self.name.ljust(LINE_LENGTH - 14) + "|\n")
        out += ("+%s+\n" % ("=" * (LINE_LENGTH - 2)))
        out += ("| Description:".ljust(LINE_LENGTH - 1) + "|\n")
        for line in lines:
            out += ("|    " + line.ljust(LINE_LENGTH - 7) + " |\n")
        out += ("| Criteria:  " +
                self.criteria.ljust(LINE_LENGTH - 14) + "|\n")
        out += ("| Dependencies:".ljust(LINE_LENGTH - 1) + "|\n")
        installer = self.dependency.get_installer()
        scenario = self.dependency.get_scenario()
        out += ("|   - Installer:" + installer.ljust(LINE_LENGTH - 17) + "|\n")
        out += ("|   - Scenario :" + scenario.ljust(LINE_LENGTH - 17) + "|\n")
        out += ("|".ljust(LINE_LENGTH - 1) + "|\n")
        out += ("+%s+\n" % ("-" * (LINE_LENGTH - 2)))
        return out


class Dependency:

    def __init__(self, installer, scenario):
        self.installer = installer
        self.scenario = scenario

    def get_installer(self):
        return self.installer

    def get_scenario(self):
        return self.scenario

    def __str__(self):
        return ("Dependency info:\n"
                "        installer: " + self.installer + "\n"
                "        scenario:  " + self.scenario + "\n")