summaryrefslogtreecommitdiffstats
path: root/qtip
diff options
context:
space:
mode:
authorzhihui wu <wu.zhihui1@zte.com.cn>2016-12-19 01:07:24 +0000
committerGerrit Code Review <gerrit@opnfv.org>2016-12-19 01:07:24 +0000
commiteb074711d7ae91665fe8a2063820703fae4ab3aa (patch)
tree8616a9d881582c34e03202cd7208533e24fe5ed1 /qtip
parentbcdf363b0c1410c5c20cf76168435dcade79403c (diff)
parent5fdc5666dad7d2fed64983ef8b40400871de390f (diff)
Merge "Basic testplan layout JIRA: QTIP-184"
Diffstat (limited to 'qtip')
-rw-r--r--qtip/cli/commands/cmd_testplan.py43
1 files changed, 43 insertions, 0 deletions
diff --git a/qtip/cli/commands/cmd_testplan.py b/qtip/cli/commands/cmd_testplan.py
new file mode 100644
index 00000000..24899a84
--- /dev/null
+++ b/qtip/cli/commands/cmd_testplan.py
@@ -0,0 +1,43 @@
+#############################################################################
+# 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
+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)
+ results = plan.describe()
+ table = PrettyTable(["Name", "Description"])
+ table.align = 'l'
+ table.add_row([results['name'], results['description']])
+ click.echo(table)