当前位置: 首页>>代码示例>>Python>>正文


Python options.OptionParser方法代码示例

本文整理汇总了Python中tornado.options.OptionParser方法的典型用法代码示例。如果您正苦于以下问题:Python options.OptionParser方法的具体用法?Python options.OptionParser怎么用?Python options.OptionParser使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在tornado.options的用法示例。


在下文中一共展示了options.OptionParser方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_parse_callbacks

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_parse_callbacks(self):
        options = OptionParser()
        self.called = False

        def callback():
            self.called = True
        options.add_parse_callback(callback)

        # non-final parse doesn't run callbacks
        options.parse_command_line(["main.py"], final=False)
        self.assertFalse(self.called)

        # final parse does
        options.parse_command_line(["main.py"])
        self.assertTrue(self.called)

        # callbacks can be run more than once on the same options
        # object if there are multiple final parses
        self.called = False
        options.parse_command_line(["main.py"])
        self.assertTrue(self.called) 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:23,代码来源:options_test.py

示例2: test_types

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_types(self):
        options = OptionParser()
        options.define('str', type=str)
        options.define('basestring', type=basestring_type)
        options.define('int', type=int)
        options.define('float', type=float)
        options.define('datetime', type=datetime.datetime)
        options.define('timedelta', type=datetime.timedelta)
        options.parse_command_line(['main.py',
                                    '--str=asdf',
                                    '--basestring=qwer',
                                    '--int=42',
                                    '--float=1.5',
                                    '--datetime=2013-04-28 05:16',
                                    '--timedelta=45s'])
        self.assertEqual(options.str, 'asdf')
        self.assertEqual(options.basestring, 'qwer')
        self.assertEqual(options.int, 42)
        self.assertEqual(options.float, 1.5)
        self.assertEqual(options.datetime,
                         datetime.datetime(2013, 4, 28, 5, 16))
        self.assertEqual(options.timedelta, datetime.timedelta(seconds=45)) 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:24,代码来源:options_test.py

示例3: test_dash_underscore_introspection

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_dash_underscore_introspection(self):
        # Original names are preserved in introspection APIs.
        options = OptionParser()
        options.define('with-dash', group='g')
        options.define('with_underscore', group='g')
        all_options = ['help', 'with-dash', 'with_underscore']
        self.assertEqual(sorted(options), all_options)
        self.assertEqual(sorted(k for (k, v) in options.items()), all_options)
        self.assertEqual(sorted(options.as_dict().keys()), all_options)

        self.assertEqual(sorted(options.group_dict('g')),
                         ['with-dash', 'with_underscore'])

        # --help shows CLI-style names with dashes.
        buf = StringIO()
        options.print_help(buf)
        self.assertIn('--with-dash', buf.getvalue())
        self.assertIn('--with-underscore', buf.getvalue()) 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:20,代码来源:options_test.py

示例4: test_subcommand

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_subcommand(self):
        base_options = OptionParser()
        base_options.define("verbose", default=False)
        sub_options = OptionParser()
        sub_options.define("foo", type=str)
        rest = base_options.parse_command_line(
            ["main.py", "--verbose", "subcommand", "--foo=bar"])
        self.assertEqual(rest, ["subcommand", "--foo=bar"])
        self.assertTrue(base_options.verbose)
        rest2 = sub_options.parse_command_line(rest)
        self.assertEqual(rest2, [])
        self.assertEqual(sub_options.foo, "bar")

        # the two option sets are distinct
        try:
            orig_stderr = sys.stderr
            sys.stderr = StringIO()
            with self.assertRaises(Error):
                sub_options.parse_command_line(["subcommand", "--verbose"])
        finally:
            sys.stderr = orig_stderr 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:23,代码来源:options_test.py

示例5: test_mock_patch

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_mock_patch(self):
        # ensure that our setattr hooks don't interfere with mock.patch
        options = OptionParser()
        options.define('foo', default=1)
        options.parse_command_line(['main.py', '--foo=2'])
        self.assertEqual(options.foo, 2)

        with mock.patch.object(options.mockable(), 'foo', 3):
            self.assertEqual(options.foo, 3)
        self.assertEqual(options.foo, 2)

        # Try nested patches mixed with explicit sets
        with mock.patch.object(options.mockable(), 'foo', 4):
            self.assertEqual(options.foo, 4)
            options.foo = 5
            self.assertEqual(options.foo, 5)
            with mock.patch.object(options.mockable(), 'foo', 6):
                self.assertEqual(options.foo, 6)
            self.assertEqual(options.foo, 5)
        self.assertEqual(options.foo, 2) 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:22,代码来源:options_test.py

示例6: test_parse_callbacks

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_parse_callbacks(self):
        options = OptionParser()
        self.called = False

        def callback():
            self.called = True

        options.add_parse_callback(callback)

        # non-final parse doesn't run callbacks
        options.parse_command_line(["main.py"], final=False)
        self.assertFalse(self.called)

        # final parse does
        options.parse_command_line(["main.py"])
        self.assertTrue(self.called)

        # callbacks can be run more than once on the same options
        # object if there are multiple final parses
        self.called = False
        options.parse_command_line(["main.py"])
        self.assertTrue(self.called) 
开发者ID:opendevops-cn,项目名称:opendevops,代码行数:24,代码来源:options_test.py

示例7: test_mock_patch

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_mock_patch(self):
        # ensure that our setattr hooks don't interfere with mock.patch
        options = OptionParser()
        options.define("foo", default=1)
        options.parse_command_line(["main.py", "--foo=2"])
        self.assertEqual(options.foo, 2)

        with mock.patch.object(options.mockable(), "foo", 3):
            self.assertEqual(options.foo, 3)
        self.assertEqual(options.foo, 2)

        # Try nested patches mixed with explicit sets
        with mock.patch.object(options.mockable(), "foo", 4):
            self.assertEqual(options.foo, 4)
            options.foo = 5
            self.assertEqual(options.foo, 5)
            with mock.patch.object(options.mockable(), "foo", 6):
                self.assertEqual(options.foo, 6)
            self.assertEqual(options.foo, 5)
        self.assertEqual(options.foo, 2) 
开发者ID:opendevops-cn,项目名称:opendevops,代码行数:22,代码来源:options_test.py

示例8: test_dash_underscore_introspection

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_dash_underscore_introspection(self):
        # Original names are preserved in introspection APIs.
        options = OptionParser()
        options.define("with-dash", group="g")
        options.define("with_underscore", group="g")
        all_options = ["help", "with-dash", "with_underscore"]
        self.assertEqual(sorted(options), all_options)
        self.assertEqual(sorted(k for (k, v) in options.items()), all_options)
        self.assertEqual(sorted(options.as_dict().keys()), all_options)

        self.assertEqual(
            sorted(options.group_dict("g")), ["with-dash", "with_underscore"]
        )

        # --help shows CLI-style names with dashes.
        buf = StringIO()
        options.print_help(buf)
        self.assertIn("--with-dash", buf.getvalue())
        self.assertIn("--with-underscore", buf.getvalue()) 
开发者ID:opendevops-cn,项目名称:opendevops,代码行数:21,代码来源:options_test.py

示例9: setUp

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def setUp(self):
        super(EnablePrettyLoggingTest, self).setUp()
        self.options = OptionParser()
        define_logging_options(self.options)
        self.logger = logging.Logger('tornado.test.log_test.EnablePrettyLoggingTest')
        self.logger.propagate = False 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:8,代码来源:log_test.py

示例10: test_parse_command_line

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_parse_command_line(self):
        options = OptionParser()
        options.define("port", default=80)
        options.parse_command_line(["main.py", "--port=443"])
        self.assertEqual(options.port, 443) 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:7,代码来源:options_test.py

示例11: test_parse_config_file

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_parse_config_file(self):
        options = OptionParser()
        options.define("port", default=80)
        options.define("username", default='foo')
        options.parse_config_file(os.path.join(os.path.dirname(__file__),
                                               "options_test.cfg"))
        self.assertEquals(options.port, 443)
        self.assertEqual(options.username, "李康") 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:10,代码来源:options_test.py

示例12: test_help

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_help(self):
        options = OptionParser()
        try:
            orig_stderr = sys.stderr
            sys.stderr = StringIO()
            with self.assertRaises(SystemExit):
                options.parse_command_line(["main.py", "--help"])
            usage = sys.stderr.getvalue()
        finally:
            sys.stderr = orig_stderr
        self.assertIn("Usage:", usage) 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:13,代码来源:options_test.py

示例13: test_setattr

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_setattr(self):
        options = OptionParser()
        options.define('foo', default=1, type=int)
        options.foo = 2
        self.assertEqual(options.foo, 2) 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:7,代码来源:options_test.py

示例14: test_setattr_type_check

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_setattr_type_check(self):
        # setattr requires that options be the right type and doesn't
        # parse from string formats.
        options = OptionParser()
        options.define('foo', default=1, type=int)
        with self.assertRaises(Error):
            options.foo = '2' 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:9,代码来源:options_test.py

示例15: test_setattr_with_callback

# 需要导入模块: from tornado import options [as 别名]
# 或者: from tornado.options import OptionParser [as 别名]
def test_setattr_with_callback(self):
        values = []
        options = OptionParser()
        options.define('foo', default=1, type=int, callback=values.append)
        options.foo = 2
        self.assertEqual(values, [2]) 
开发者ID:tao12345666333,项目名称:tornado-zh,代码行数:8,代码来源:options_test.py


注:本文中的tornado.options.OptionParser方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。