mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-10 17:43:00 +08:00
42 lines
1007 B
Python
42 lines
1007 B
Python
# NOTE: Generated By HttpRunner v4.0.0
|
|
# FROM: load_image.yml
|
|
|
|
|
|
from httprunner import HttpRunner, Config, Step, RunRequest, RunTestCase
|
|
|
|
|
|
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()
|