Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
353 views
in Technique[技术] by (71.8m points)

In Locust I need to get original timeout or connection error when using catch_response=True to validate response

There is a good explanation how to validate response of the request https://docs.locust.io/en/stable/writing-a-locustfile.html#validating-responses

However there are cases when status_code=0 (case of connection error or timeout). I would like to be able to pass original error when it happens in response.failure(). For example:

with self.client.get("/some_test_url/", catch_response=True) as response:
    if response.status_code == 200 and _some_other_errors_checks_:
        response.failure("Response is 200 but contain _some_error_")
    if response.status_code == 0: # This is case of timeout or connection error
        response.failure(????????)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You could see the original error using response.error property.

If something happened and the response is an error response or contains an error you could raise the original error using response.raise_for_status() that will throw the original error of the response if exists


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...