summaryrefslogtreecommitdiffstats
path: root/qtip/cli/commands/cmd_testplan.py
blob: 200e46654db47eaaad5b90c433a243498cec7145 (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
#############################################################################
# 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 click
import sys
from prettytable import PrettyTable

from qtip.runner.testplan import TestPlan


@click.group()
def cli():
    pass


@cli.group()
def testplan():
    pass


@testplan.command('list', help='List the different TestPlans.')
def list():
    testplans = TestPlan.list_all()
    table = PrettyTable(["Testplans"])
    table.align = 'l'
    for testplan in testplans:
        table.add_row([testplan['name']])
    click.echo(table)


@testplan.command('show', help='Show details of specified TestPlan.')
@click.argument('name')
def show(name):
    plan = TestPlan(name)
    desc = plan.describe()
    if desc['abspath'] is None:
        click.echo("Wrong TestPlan specified")
        sys.exit(1)
    else:
        table = PrettyTable(["Name", "Description"])
        table.align = 'l'
        table.add_row([desc['name'], desc['description']])
        click.echo(table)