summaryrefslogtreecommitdiffstats
path: root/tests/unit/runner/perftest_test.py
blob: 1f0b5631c48897d50ade540dca2d3b7fe280ef1f (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
###############################################################
# 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.runner.perftest import PerfTest
from qtip.runner.benchmark import Property


class TestPerfTestClass:
    def test_attr(self):
        assert len(PerfTest._paths) is 1


class TestPerfTest:
    PerfTest._paths = [path.join(path.dirname(__file__), path.pardir,
                                 path.pardir, 'data', 'perftest')]

    def test_init(self):
        perftest = PerfTest('test-a')
        assert perftest.name == 'test-a'

        with pytest.raises(TypeError) as excinfo:
            PerfTest()
        assert '__init__() takes exactly 2 arguments (1 given)' \
               in str(excinfo.value)

    def test_list(self):
        perftest_list = PerfTest.list_all()
        assert len(list(perftest_list)) is 1
        for desc in perftest_list:
            assert Property.NAME in desc
            assert Property.DESCRIPTION in desc
            assert Property.ABSPATH in desc
            assert Property.ABSPATH is not None