aboutsummaryrefslogtreecommitdiffstats
path: root/tests/conftest.py
blob: 32042f24ca8452c40724aca982ff4a641872a8c2 (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
##############################################################################
# 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 os import path

import pytest

from qtip.loader.plan import Plan
from qtip.loader.plan import PlanProp


@pytest.fixture(scope='session')
def data_root():
    return path.join(path.dirname(__file__), 'data')


@pytest.fixture(scope='session')
def benchmarks_root(data_root):
    return path.join(data_root, 'benchmarks')


@pytest.fixture(scope='session')
def plan(benchmarks_root):
    return Plan('doctor.yaml', [benchmarks_root])


@pytest.fixture(scope='session')
def plan_config(plan):
    return plan.content[PlanProp.CONFIG]


@pytest.fixture(scope='session')
def collectors_config(plan_config):
    return plan_config[PlanProp.COLLECTORS]


@pytest.fixture(scope='session')
def logfile_config(collectors_config):
    return collectors_config[0]