blob: fa0c859d3d48bd0e4eb1040b04b10c87b1b26781 (
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
|
###############################################################
# Copyright (c) 2017 taseer94@gmail.com 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.cli.entry import cli
from click.testing import CliRunner
@pytest.fixture(scope="module")
def runner():
return CliRunner()
def test_list(runner):
result = runner.invoke(cli, ['qpi', 'list'])
assert 'QPI' in result.output
assert 'compute' in result.output
assert 'Description' in result.output
assert 'QTIP Performance Index of compute' in result.output
@pytest.mark.parametrize("test_input", [
'storage',
'compute'])
def test_show(runner, test_input):
result = runner.invoke(cli, ['qpi', 'show', test_input])
assert 'QPI' in result.output
assert 'Description' in result.output
assert 'Formula' in result.output
|