mirror of
https://github.com/httprunner/httprunner.py.git
synced 2026-05-06 20:02:43 +08:00
40 lines
992 B
Python
40 lines
992 B
Python
# NOTE: Generated By HttpRunner v4.3.5
|
|
# FROM: load_image.yml
|
|
from httprunner import HttpRunner, Config, Step, RunRequest
|
|
|
|
|
|
class TestCaseLoadImage(HttpRunner):
|
|
|
|
config = Config("load images").base_url("${get_httpbin_server()}")
|
|
|
|
teststeps = [
|
|
Step(
|
|
RunRequest("get png image")
|
|
.get("/image/png")
|
|
.validate()
|
|
.assert_equal("status_code", 200)
|
|
),
|
|
Step(
|
|
RunRequest("get jpeg image")
|
|
.get("/image/jpeg")
|
|
.validate()
|
|
.assert_equal("status_code", 200)
|
|
),
|
|
Step(
|
|
RunRequest("get webp image")
|
|
.get("/image/webp")
|
|
.validate()
|
|
.assert_equal("status_code", 200)
|
|
),
|
|
Step(
|
|
RunRequest("get svg image")
|
|
.get("/image/svg")
|
|
.validate()
|
|
.assert_equal("status_code", 200)
|
|
),
|
|
]
|
|
|
|
|
|
if __name__ == "__main__":
|
|
TestCaseLoadImage().test_start()
|