blob: b53030d49642d0e5055a9e191877924a429dbb9d (
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
|
##############################################################################
# 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
##############################################################################
import pytest
from qtip.base.constant import FormulaName, SpecProp
from qtip.loader.qpi import QPISpec
QPI_SPEC = 'compute.yaml'
@pytest.fixture()
def qpi_spec(benchmarks_root):
return QPISpec('compute.yaml', paths=[benchmarks_root])
def test_init(qpi_spec):
assert qpi_spec.name == 'compute'
with pytest.raises(TypeError) as excinfo:
QPISpec()
assert '__init__() takes at least 2 arguments (1 given)' \
in str(excinfo.value)
def test_list_all(benchmarks_root):
qpi_spec_list = list(QPISpec.list_all(paths=[benchmarks_root]))
assert len(qpi_spec_list) is 2
for item in qpi_spec_list:
assert SpecProp.NAME in item
assert SpecProp.ABSPATH in item
assert SpecProp.ABSPATH is not None
def test_content(qpi_spec):
content = qpi_spec.content
assert SpecProp.DESCRIPTION in content
assert SpecProp.FORMULA in content
assert SpecProp.SECTIONS in content
assert content[SpecProp.FORMULA] in FormulaName.__dict__.values()
sections = content[SpecProp.SECTIONS]
assert isinstance(sections, list)
for section in sections:
assert SpecProp.NAME in section
|