about summary refs log tree commit diff stats
path: root/test/utils/test.py
blob: e4f8888ceb236fed8ba7c39fb9a466cd3048ab04 (plain) (blame)
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
class Test(object):
    "Stand for a test to run"

    def __init__(self, command_line, base_dir="", depends=None,
                 products=None, tags=None):
        """Create a Test instance.
        @command_line: list of string standing for arguments to launch
        @base_dir: base directory for launch
        @depends: list of Test instance indicating dependencies
        @products: elements produced to remove after tests
        @tags: list of str indicating current test categories
        """
        self.command_line = command_line
        self.base_dir = base_dir
        self.depends = depends if depends else []
        self.products = products if products else []
        self.tags = tags if tags else []

    def __repr__(self):
        displayed = ["command_line", "base_dir", "depends", "products", "tags"]
        return "<Test " + \
            " ".join("%s=%s" % (n, getattr(self,n)) for n in displayed ) + ">"

    def __eq__(self, test):
        if not isinstance(test, Test):
            return False

        return all([self.command_line == test.command_line,
                    self.base_dir == test.base_dir,
                    self.depends == test.depends,
                    self.products == test.products,
                    self.tags == test.tags])