mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-06 20:32:44 +08:00
61 lines
1.6 KiB
Python
61 lines
1.6 KiB
Python
# NOTE: Generated By HttpRunner v4.0.0
|
|
# FROM: testcases/ref_testcase.yml
|
|
|
|
|
|
import sys
|
|
from pathlib import Path
|
|
|
|
sys.path.insert(0, str(Path(__file__).parent.parent))
|
|
|
|
|
|
from httprunner import HttpRunner, Config, Step, RunRequest, RunTestCase
|
|
|
|
from testcases.demo_requests_test import TestCaseDemoRequests as DemoRequests
|
|
|
|
|
|
class TestCaseDemoRefTestcase(HttpRunner):
|
|
|
|
config = (
|
|
Config("request methods testcase: reference testcase")
|
|
.variables(
|
|
**{
|
|
"foo1": "testsuite_config_bar1",
|
|
"expect_foo1": "testsuite_config_bar1",
|
|
"expect_foo2": "config_bar2",
|
|
}
|
|
)
|
|
.base_url("https://postman-echo.com")
|
|
.verify(False)
|
|
)
|
|
|
|
teststeps = [
|
|
Step(
|
|
RunTestCase("request with functions")
|
|
.with_variables(
|
|
**{"foo1": "testcase_ref_bar1", "expect_foo1": "testcase_ref_bar1"}
|
|
)
|
|
.call(DemoRequests)
|
|
.export(*["foo3"])
|
|
),
|
|
Step(
|
|
RunRequest("post form data")
|
|
.with_variables(**{"foo1": "bar1"})
|
|
.post("/post")
|
|
.with_headers(
|
|
**{
|
|
"User-Agent": "${get_user_agent()}",
|
|
"Content-Type": "application/x-www-form-urlencoded",
|
|
}
|
|
)
|
|
.with_data("foo1=$foo1&foo2=$foo3")
|
|
.validate()
|
|
.assert_equal("status_code", 200)
|
|
.assert_equal("body.form.foo1", "bar1")
|
|
.assert_equal("body.form.foo2", "bar21")
|
|
),
|
|
]
|
|
|
|
|
|
if __name__ == "__main__":
|
|
TestCaseDemoRefTestcase().test_start()
|