5890e0a35404f27fc9caf82046a7c773b72e2c64
[functest.git] / functest / cli / cli_base.py
1 #!/usr/bin/env python
2 #
3 # jose.lausuch@ericsson.com
4 # All rights reserved. This program and the accompanying materials
5 # are made available under the terms of the Apache License, Version 2.0
6 # which accompanies this distribution, and is available at
7 # http://www.apache.org/licenses/LICENSE-2.0
8 #
9
10 import click
11 import logging.config
12 import pkg_resources
13
14 from functest.cli.commands.cli_env import CliEnv
15 from functest.cli.commands.cli_os import CliOpenStack
16 from functest.cli.commands.cli_testcase import CliTestcase
17 from functest.cli.commands.cli_tier import CliTier
18
19
20 CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])
21
22
23 @click.group(context_settings=CONTEXT_SETTINGS)
24 @click.version_option(version='opnfv colorado.0.1 ')
25 def cli():
26     logging.config.fileConfig(pkg_resources.resource_filename(
27         'functest', 'ci/logging.ini'))
28     logging.captureWarnings(True)
29
30
31 _env = CliEnv()
32 _openstack = CliOpenStack()
33 _testcase = CliTestcase()
34 _tier = CliTier()
35
36
37 @cli.group()
38 @click.pass_context
39 def env(ctx):
40     pass
41
42
43 @cli.group()
44 @click.pass_context
45 def openstack(ctx):
46     pass
47
48
49 @cli.group()
50 @click.pass_context
51 def testcase(ctx):
52     pass
53
54
55 @cli.group()
56 @click.pass_context
57 def tier(ctx):
58     pass
59
60
61 @openstack.command('check', help="Checks connectivity and status "
62                    "to the OpenStack deployment.")
63 def os_check():
64     _openstack.check()
65
66
67 @openstack.command('show-credentials',
68                    help="Prints the OpenStack credentials.")
69 def os_show_credentials():
70     _openstack.show_credentials()
71
72
73 @env.command('show', help="Shows information about the current environment.")
74 def env_show():
75     _env.show()
76
77
78 @testcase.command('list', help="Lists the available testcases.")
79 def testcase_list():
80     _testcase.list()
81
82
83 @testcase.command('show', help="Shows information about a test case.")
84 @click.argument('testname', type=click.STRING, required=True)
85 def testcase_show(testname):
86     _testcase.show(testname)
87
88
89 @testcase.command('run', help="Executes a test case.")
90 @click.argument('testname', type=click.STRING, required=True)
91 @click.option('-n', '--noclean', is_flag=True, default=False,
92               help='The created openstack resources by the test'
93               'will not be cleaned after the execution.')
94 @click.option('-r', '--report', is_flag=True, default=False,
95               help='Push results to the results DataBase. Only CI Pods'
96               'have rights to do that.')
97 def testcase_run(testname, noclean, report):
98     _testcase.run(testname, noclean, report)
99
100
101 @tier.command('list', help="Lists the available tiers.")
102 def tier_list():
103     _tier.list()
104
105
106 @tier.command('show', help="Shows information about a tier.")
107 @click.argument('tiername', type=click.STRING, required=True)
108 def tier_show(tiername):
109     _tier.show(tiername)
110
111
112 @tier.command('get-tests', help="Prints the tests in a tier.")
113 @click.argument('tiername', type=click.STRING, required=True)
114 def tier_gettests(tiername):
115     _tier.gettests(tiername)
116
117
118 @tier.command('run', help="Executes all the tests within a tier.")
119 @click.argument('tiername', type=click.STRING, required=True)
120 @click.option('-n', '--noclean', is_flag=True, default=False,
121               help='The created openstack resources by the tests'
122               'will not be cleaned after the execution.')
123 @click.option('-r', '--report', is_flag=True, default=False,
124               help='Push results to the results DataBase. Only CI Pods'
125               'have rights to do that.')
126 def tier_run(tiername, noclean, report):
127     _tier.run(tiername, noclean, report)