summaryrefslogtreecommitdiffstats
path: root/qtip/runner/__init__.py
blob: 1db8498eb13d0ce05861d75300578d10c80674a7 (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
##############################################################################
# Copyright (c) 2016 ZTE Corp 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
##############################################################################

from qtip.base.constant import PkgName, BaseProp
from qtip.base.error import NotFound
from qtip.collector.stdout import StdoutCollector
from qtip.driver.random import RandomDriver
from qtip.reporter.console import ConsoleReporter


class Runner(object):
    def __init__(self, spec, config=None):
        if config is None:
            config = spec[BaseProp.CONFIG]

        driver_name = config[BaseProp.DRIVER]
        collector_name = config[BaseProp.COLLECTOR]
        reporter_name = config[BaseProp.REPORTER]

        # TODO(yujunz) dynamically load modules by name

        if driver_name == 'random':
            self.driver = RandomDriver()
        else:
            raise NotFound(driver_name, package=PkgName.DRIVER)

        if collector_name == 'stdout':
            self.collector = StdoutCollector()
        else:
            raise NotFound(collector_name,
                           package=PkgName.COLLECTOR)

        if reporter_name == 'console':
            self.reporter = ConsoleReporter()
        else:
            raise NotFound(reporter_name,
                           package=PkgName.REPORTER)