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


Python Error.from_json方法代码示例

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


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

示例1: test_json_without_optionals

# 需要导入模块: from acme.messages import Error [as 别名]
# 或者: from acme.messages.Error import from_json [as 别名]
    def test_json_without_optionals(self):
        del self.jmsg['message']
        del self.jmsg['moreInfo']

        from acme.messages import Error
        msg = Error.from_json(self.jmsg)

        self.assertTrue(msg.message is None)
        self.assertTrue(msg.more_info is None)
        self.assertEqual(self.jmsg, msg.to_partial_json())
开发者ID:QuantumGhost,项目名称:lets-encrypt-preview,代码行数:12,代码来源:messages_test.py

示例2: ErrorTest

# 需要导入模块: from acme.messages import Error [as 别名]
# 或者: from acme.messages.Error import from_json [as 别名]
class ErrorTest(unittest.TestCase):
    """Tests for acme.messages.Error."""

    def setUp(self):
        from acme.messages import Error
        self.error = Error(detail='foo', typ='malformed', title='title')
        self.jobj = {'detail': 'foo', 'title': 'some title'}

    def test_typ_prefix(self):
        self.assertEqual('malformed', self.error.typ)
        self.assertEqual(
            'urn:acme:error:malformed', self.error.to_partial_json()['type'])
        self.assertEqual(
            'malformed', self.error.from_json(self.error.to_partial_json()).typ)

    def test_typ_decoder_missing_prefix(self):
        from acme.messages import Error
        self.jobj['type'] = 'malformed'
        self.assertRaises(jose.DeserializationError, Error.from_json, self.jobj)
        self.jobj['type'] = 'not valid bare type'
        self.assertRaises(jose.DeserializationError, Error.from_json, self.jobj)

    def test_typ_decoder_not_recognized(self):
        from acme.messages import Error
        self.jobj['type'] = 'urn:acme:error:baz'
        self.assertRaises(jose.DeserializationError, Error.from_json, self.jobj)

    def test_description(self):
        self.assertEqual(
            'The request message was malformed', self.error.description)

    def test_from_json_hashable(self):
        from acme.messages import Error
        hash(Error.from_json(self.error.to_json()))

    def test_str(self):
        self.assertEqual(
            'malformed :: The request message was malformed :: foo',
            str(self.error))
        self.assertEqual('foo', str(self.error.update(typ=None)))
开发者ID:g1franc,项目名称:lets-encrypt-preview,代码行数:42,代码来源:messages_test.py

示例3: test_from_json_hashable

# 需要导入模块: from acme.messages import Error [as 别名]
# 或者: from acme.messages.Error import from_json [as 别名]
 def test_from_json_hashable(self):
     from acme.messages import Error
     hash(Error.from_json(self.error.to_json()))
开发者ID:g1franc,项目名称:lets-encrypt-preview,代码行数:5,代码来源:messages_test.py

示例4: test_from_json_empty

# 需要导入模块: from acme.messages import Error [as 别名]
# 或者: from acme.messages.Error import from_json [as 别名]
 def test_from_json_empty(self):
     from acme.messages import Error
     self.assertEqual(Error(), Error.from_json('{}'))
开发者ID:MichalMMac,项目名称:certbot,代码行数:5,代码来源:messages_test.py

示例5: test_from_json

# 需要导入模块: from acme.messages import Error [as 别名]
# 或者: from acme.messages.Error import from_json [as 别名]
 def test_from_json(self):
     from acme.messages import Error
     self.assertEqual(Error.from_json(self.jmsg), self.msg)
开发者ID:QuantumGhost,项目名称:lets-encrypt-preview,代码行数:5,代码来源:messages_test.py


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