deb-tempest/tempest/cmd/main.py
Masayuki Igawa 2f1f4977f0 Fix to show cli subcommand help message
This commit fixes to show help messages of Tempest cli subcommands with
'-h/--help' option such as 'tempest complete -h'.

NOTE:
'deferred_help' param is for allowing deferring help print after
initialize_app originally. But we can see the subcommand help messages
with setting True to deferred_help now[1].

[1] I628bbfc383de516045288512cc023213d723a027

Closes-Bug: #1533448
Change-Id: Ia4ffcbd4f7db2d945098a40bb7c3d2fbb1b2a64b
2016-01-13 13:54:35 +09:00

53 lines
1.5 KiB
Python

# Copyright 2015 Dell Inc.
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
import logging
import sys
from cliff import app
from cliff import commandmanager
from pbr import version
class Main(app.App):
log = logging.getLogger(__name__)
def __init__(self):
super(Main, self).__init__(
description='Tempest cli application',
version=version.VersionInfo('tempest').version_string(),
command_manager=commandmanager.CommandManager('tempest.cm'),
deferred_help=True,
)
def initialize_app(self, argv):
self.log.debug('tempest initialize_app')
def prepare_to_run_command(self, cmd):
self.log.debug('prepare_to_run_command %s', cmd.__class__.__name__)
def clean_up(self, cmd, result, err):
self.log.debug('tempest clean_up %s', cmd.__class__.__name__)
if err:
self.log.debug('tempest got an error: %s', err)
def main(argv=sys.argv[1:]):
the_app = Main()
return the_app.run(argv)
if __name__ == '__main__':
sys.exit(main(sys.argv[1:]))