當前位置: 首頁>>代碼示例>>Python>>正文


Python app.App類代碼示例

本文整理匯總了Python中cliff.app.App的典型用法代碼示例。如果您正苦於以下問題:Python App類的具體用法?Python App怎麽用?Python App使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了App類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: test_show_help_for_help

def test_show_help_for_help():
    # FIXME(dhellmann): Are commands tied too closely to the app? Or
    # do commands know too much about apps by using them to get to the
    # command manager?
    stdout = StringIO()
    app = App('testing', '1',
              utils.TestCommandManager(utils.TEST_NAMESPACE),
              stdout=stdout)
    app.NAME = 'test'
    app.options = mock.Mock()
    help_cmd = HelpCommand(app, mock.Mock())
    parser = help_cmd.get_parser('test')
    parsed_args = parser.parse_args([])
    try:
        help_cmd.run(parsed_args)
    except SystemExit:
        pass
    help_text = stdout.getvalue()
    basecommand = os.path.split(sys.argv[0])[1]
    assert 'usage: %s [--version]' % basecommand in help_text
    assert 'optional arguments:\n  --version' in help_text
    expected = (
        '  one            Test command.\n'
        '  three word command  Test command.\n'
    )
    assert expected in help_text
開發者ID:dhellmann,項目名稱:cliff,代碼行數:26,代碼來源:test_help.py

示例2: test_fuzzy_no_prefix

def test_fuzzy_no_prefix():
    # search by distance, no common prefix with any command
    cmd_mgr = CommandManager('cliff.fuzzy')
    app = App('test', '1.0', cmd_mgr)
    cmd_mgr.add_command('user', utils.TestCommand)
    matches = app.get_fuzzy_matches('uesr')
    assert matches == ['user']
開發者ID:mmariani,項目名稱:cliff,代碼行數:7,代碼來源:test_app.py

示例3: test_fuzzy_common_prefix

def test_fuzzy_common_prefix():
    # searched string is a prefix of all commands
    cmd_mgr = CommandManager('cliff.fuzzy')
    app = App('test', '1.0', cmd_mgr)
    cmd_mgr.commands = {}
    cmd_mgr.add_command('user list', utils.TestCommand)
    cmd_mgr.add_command('user show', utils.TestCommand)
    matches = app.get_fuzzy_matches('user')
    assert matches == ['user list', 'user show']
開發者ID:mmariani,項目名稱:cliff,代碼行數:9,代碼來源:test_app.py

示例4: test_fuzzy_same_distance

def test_fuzzy_same_distance():
    # searched string has the same distance to all commands
    cmd_mgr = CommandManager('cliff.fuzzy')
    app = App('test', '1.0', cmd_mgr)
    cmd_mgr.add_command('user', utils.TestCommand)
    for cmd in cmd_mgr.commands.keys():
        assert damerau_levenshtein('node', cmd, COST) == 8
    matches = app.get_fuzzy_matches('node')
    assert matches == ['complete', 'help', 'user']
開發者ID:mmariani,項目名稱:cliff,代碼行數:9,代碼來源:test_app.py

示例5: test_list_matching_commands

def test_list_matching_commands():
    stdout = StringIO()
    app = App('testing', '1',
              utils.TestCommandManager(utils.TEST_NAMESPACE),
              stdout=stdout)
    app.NAME = 'test'
    try:
        assert app.run(['t']) == 2
    except SystemExit:
        pass
    output = stdout.getvalue()
    assert "test: 't' is not a test command. See 'test --help'." in output
    assert 'Did you mean one of these?' in output
    assert 'three word command\n  two words\n' in output
開發者ID:mmariani,項目名稱:cliff,代碼行數:14,代碼來源:test_app.py

示例6: test_show_help_for_command

def test_show_help_for_command():
    # FIXME(dhellmann): Are commands tied too closely to the app? Or
    # do commands know too much about apps by using them to get to the
    # command manager?
    stdout = StringIO()
    app = App('testing', '1', TestCommandManager('cliff.test'), stdout=stdout)
    app.NAME = 'test'
    help_cmd = HelpCommand(app, mock.Mock())
    parser = help_cmd.get_parser('test')
    parsed_args = parser.parse_args(['one'])
    try:
        help_cmd.run(parsed_args)
    except SystemExit:
        pass
    assert stdout.getvalue() == 'TestParser'
開發者ID:EuKudryashova,項目名稱:cliff,代碼行數:15,代碼來源:test_help.py

示例7: test_list_deprecated_commands

def test_list_deprecated_commands():
    # FIXME(dhellmann): Are commands tied too closely to the app? Or
    # do commands know too much about apps by using them to get to the
    # command manager?
    stdout = StringIO()
    app = App('testing', '1',
              utils.TestCommandManager(utils.TEST_NAMESPACE),
              stdout=stdout)
    app.NAME = 'test'
    try:
        app.run(['--help'])
    except SystemExit:
        pass
    help_output = stdout.getvalue()
    assert 'two words' in help_output
    assert 'three word command' in help_output
    assert 'old cmd' not in help_output
開發者ID:dhellmann,項目名稱:cliff,代碼行數:17,代碼來源:test_help.py

示例8: build_option_parser

 def build_option_parser(self, description, version, argparse_kwargs=None):
     parser = CliffApp.build_option_parser(self, description, version, argparse_kwargs)
     for k, v in self.args_def.iteritems():
         parser.add_argument(
             *((['-{}'.format(v['short'])] if 'short' in v else []) + ['--{}'.format(k)]),
             **v.get('info', {})
         )
     return parser
開發者ID:succhiello,項目名稱:djehuty,代碼行數:8,代碼來源:app.py

示例9: build_option_parser

 def build_option_parser(self, description, version):
     parser = App.build_option_parser(self, description, version)
     parser.add_argument(
         '-c', '--control',
         dest='control',
         default='ipc://control.sock',
         help='Endpoint for nrv control.',
         )
     return parser
開發者ID:michelp,項目名稱:nerve,代碼行數:9,代碼來源:nrvsh.py

示例10: test_list_matching_commands_no_match

def test_list_matching_commands_no_match():
    # FIXME(dhellmann): Are commands tied too closely to the app? Or
    # do commands know too much about apps by using them to get to the
    # command manager?
    stdout = StringIO()
    app = App('testing', '1', TestCommandManager('cliff.test'), stdout=stdout)
    app.NAME = 'test'
    help_cmd = HelpCommand(app, mock.Mock())
    parser = help_cmd.get_parser('test')
    parsed_args = parser.parse_args(['z'])
    try:
        help_cmd.run(parsed_args)
    except SystemExit:
        pass
    except ValueError:
        pass
    else:
        assert False, 'Should have seen a ValueError'
開發者ID:EuKudryashova,項目名稱:cliff,代碼行數:18,代碼來源:test_help.py

示例11: test_list_matching_commands

def test_list_matching_commands():
    # FIXME(dhellmann): Are commands tied too closely to the app? Or
    # do commands know too much about apps by using them to get to the
    # command manager?
    stdout = StringIO()
    app = App('testing', '1', TestCommandManager('cliff.test'), stdout=stdout)
    app.NAME = 'test'
    help_cmd = HelpCommand(app, mock.Mock())
    parser = help_cmd.get_parser('test')
    parsed_args = parser.parse_args(['t'])
    try:
        help_cmd.run(parsed_args)
    except SystemExit:
        pass
    help_output = stdout.getvalue()
    assert 'Command "t" matches:' in help_output
    assert 'two' in help_output
    assert 'three' in help_output
開發者ID:EuKudryashova,項目名稱:cliff,代碼行數:18,代碼來源:test_help.py

示例12: test_show_help_for_help

def test_show_help_for_help():
    # FIXME(dhellmann): Are commands tied too closely to the app? Or
    # do commands know too much about apps by using them to get to the
    # command manager?
    stdout = StringIO()
    app = App('testing', '1',
              utils.TestCommandManager(utils.TEST_NAMESPACE),
              stdout=stdout)
    app.NAME = 'test'
    help_cmd = HelpCommand(app, mock.Mock())
    parser = help_cmd.get_parser('test')
    parsed_args = parser.parse_args([])
    try:
        help_cmd.run(parsed_args)
    except SystemExit:
        pass
    help_text = stdout.getvalue()
    assert 'usage: test help [-h]' in help_text
開發者ID:SvenDowideit,項目名稱:clearlinux,代碼行數:18,代碼來源:test_help.py

示例13: test_show_help_print_exc_with_ep_load_fail

def test_show_help_print_exc_with_ep_load_fail(mock_load):
    stdout = StringIO()
    app = App('testing', '1',
              utils.TestCommandManager(utils.TEST_NAMESPACE),
              stdout=stdout)
    app.NAME = 'test'
    app.options = mock.Mock()
    app.options.debug = True
    help_cmd = HelpCommand(app, mock.Mock())
    parser = help_cmd.get_parser('test')
    parsed_args = parser.parse_args([])
    try:
        help_cmd.run(parsed_args)
    except SystemExit:
        pass
    help_output = stdout.getvalue()
    assert 'Commands:' in help_output
    assert 'Could not load' in help_output
    assert 'Exception: Could not load EntryPoint' in help_output
開發者ID:dhellmann,項目名稱:cliff,代碼行數:19,代碼來源:test_help.py

示例14: test_fuzzy_no_commands

def test_fuzzy_no_commands():
    cmd_mgr = CommandManager('cliff.fuzzy')
    app = App('test', '1.0', cmd_mgr)
    cmd_mgr.commands = {}
    matches = app.get_fuzzy_matches('foo')
    assert matches == []
開發者ID:mmariani,項目名稱:cliff,代碼行數:6,代碼來源:test_app.py

示例15: __init__

 def __init__(self, args_def=None, stdin=None, stdout=None, stderr=None,
              interactive_app_factory=InteractiveApp):
     self.__args_def = args_def or {}
     CliffApp.__init__(self, 'djehuty', __version__, CommandManager('djehuty.commands'),
                       stdin=stdin, stdout=stdout, stderr=stderr,
                       interactive_app_factory=interactive_app_factory)
開發者ID:succhiello,項目名稱:djehuty,代碼行數:6,代碼來源:app.py


注:本文中的cliff.app.App類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。