Merge "Fix typos in testcases.yaml"
[functest.git] / 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
12 from functest.cli.commands.cli_env import CliEnv
13 from functest.cli.commands.cli_os import CliOpenStack
14 from functest.cli.commands.cli_testcase import CliTestcase
15 from functest.cli.commands.cli_tier import CliTier
16
17 CONTEXT_SETTINGS = dict(help_option_names=['-h', '--help'])
18
19
20 @click.group(context_settings=CONTEXT_SETTINGS)
21 @click.version_option(version='opnfv colorado.0.1 ')
22 def cli():
23     pass
24
25 _env = CliEnv()
26 _openstack = CliOpenStack()
27 _testcase = CliTestcase()
28 _tier = CliTier()
29
30
31 @cli.group()
32 @click.pass_context
33 def env(ctx):
34     pass
35
36
37 @cli.group()
38 @click.pass_context
39 def openstack(ctx):
40     pass
41
42
43 @cli.group()
44 @click.pass_context
45 def testcase(ctx):
46     pass
47
48
49 @cli.group()
50 @click.pass_context
51 def tier(ctx):
52     pass
53
54
55 @openstack.command('check', help="Checks connectivity and status "
56                    "to the OpenStack deployment.")
57 def os_check():
58     _openstack.check()
59
60
61 @openstack.command('snapshot-create', help="Generates a snapshot of the "
62                    "current OpenStack resources.")
63 def os_snapshot_create():
64     _openstack.snapshot_create()
65
66
67 @openstack.command('snapshot-show', help="Prints the OpenStack snapshot.")
68 def os_snapshot_show():
69     _openstack.snapshot_show()
70
71
72 @openstack.command('clean',
73                    help="Cleans the OpenStack resources except the snapshot.")
74 def os_clean():
75     _openstack.clean()
76
77
78 @openstack.command('show-credentials',
79                    help="Prints the OpenStack credentials.")
80 def os_show_credentials():
81     _openstack.show_credentials()
82
83
84 @openstack.command('fetch-rc', help="Fetch the OpenStack RC file from "
85                    "the installer.")
86 def os_fetch_rc():
87     _openstack.fetch_credentials()
88
89
90 @env.command('prepare', help="Prepares the Functest environment. This step is "
91              "needed run the tests.")
92 def env_prepare():
93     _env.prepare()
94
95
96 @env.command('show', help="Shows information about the current environment.")
97 def env_show():
98     _env.show()
99
100
101 @env.command('status', help="Checks if the Functest environment is ready to "
102              "run the tests.")
103 def env_status():
104     _env.status()
105
106
107 @testcase.command('list', help="Lists the available testcases.")
108 def testcase_list():
109     _testcase.list()
110
111
112 @testcase.command('show', help="Shows information about a test case.")
113 @click.argument('testname', type=click.STRING, required=True)
114 def testcase_show(testname):
115     _testcase.show(testname)
116
117
118 @testcase.command('run', help="Executes a test case.")
119 @click.argument('testname', type=click.STRING, required=True)
120 def testcase_run(testname):
121     _testcase.run(testname)
122
123
124 @tier.command('list', help="Lists the available tiers.")
125 def tier_list():
126     _tier.list()
127
128
129 @tier.command('show', help="Shows information about a tier.")
130 @click.argument('tiername', type=click.STRING, required=True)
131 def tier_show(tiername):
132     _tier.show(tiername)
133
134
135 @tier.command('get-tests', help="Prints the tests in a tier.")
136 @click.argument('tiername', type=click.STRING, required=True)
137 def tier_gettests(tiername):
138     _tier.gettests(tiername)
139
140
141 @tier.command('run', help="Executes all the tests within a tier.")
142 @click.argument('tiername', type=click.STRING, required=True)
143 def tier_run(tiername):
144     _tier.run(tiername)