本文整理汇总了Python中appurify.client.AppurifyClient.getExceptionExitCode方法的典型用法代码示例。如果您正苦于以下问题:Python AppurifyClient.getExceptionExitCode方法的具体用法?Python AppurifyClient.getExceptionExitCode怎么用?Python AppurifyClient.getExceptionExitCode使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类appurify.client.AppurifyClient
的用法示例。
在下文中一共展示了AppurifyClient.getExceptionExitCode方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: testGetExceptionExitCode
# 需要导入模块: from appurify.client import AppurifyClient [as 别名]
# 或者: from appurify.client.AppurifyClient import getExceptionExitCode [as 别名]
def testGetExceptionExitCode(self):
mockRequestGet.count = -20
client = AppurifyClient(access_token="authenticated", timeout_sec=0.2, poll_every=0.1)
self.assertEqual(client.getExceptionExitCode([{"exception": "4007: Error installing the app: file does not contain AndroidManifest.xml\n (1)"}]), 5, "Should return correct exit code for matching exception")
self.assertEqual(client.getExceptionExitCode([{"exception": "-9999: no match anything"}]), 7, "Should return correct exit code for no exception")
示例2: testGetExceptionExitCode
# 需要导入模块: from appurify.client import AppurifyClient [as 别名]
# 或者: from appurify.client.AppurifyClient import getExceptionExitCode [as 别名]
def testGetExceptionExitCode(self):
mockRequestGet.count = -20
client = AppurifyClient(access_token="authenticated", timeout_sec=0.2, poll_every=0.1, device_type_id="137")
self.assertEqual(client.getExceptionExitCode([{"exception": "4007: Error installing the app: file does not contain AndroidManifest.xml\n (1)"}]), EXIT_CODE_APP_INSTALL_FAILED, "Should return correct exit code for matching exception")
self.assertEqual(client.getExceptionExitCode([{"exception": "-9999: no match anything"}]), EXIT_CODE_OTHER_EXCEPTION, "Should return correct exit code for no exception")