我是靠谱客的博主 怡然朋友,最近开发中收集的这篇文章主要介绍Python—Locust 设置断言,巧遇请求都是200的情况,使用断言来操作。,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

找了很多代码,测试断言效果。(会出现报错问题,非常难看哦????)

   with self.client.post(url,headers=headers,json=query,catch_response=True) as response:
        if json.loads(response.text)['code'] == '0':
            response.success()
        else:
            response.failure('Failed!')

在这里插入图片描述

最后找到这个断言,非常好用,完美解决了问题

from json import JSONDecodeError
with self.client.post(url,headers=headers,json=query,catch_response=True) as response:
    if response.status_code != 200:
        response.failure("Did not get expected status code")
    try:
        if json.loads(response.text)['code'] != '0':
            response.failure("Did not get expected value in status")
    except JSONDecodeError:
        response.failure("Response could not be decoded as JSON")
    except KeyError:
        response.failure("Response did not contain expected key 'status'")

在这里插入图片描述

最后

以上就是怡然朋友为你收集整理的Python—Locust 设置断言,巧遇请求都是200的情况,使用断言来操作。的全部内容,希望文章能够帮你解决Python—Locust 设置断言,巧遇请求都是200的情况,使用断言来操作。所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部