mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-12 02:21:29 +08:00
31 lines
744 B
YAML
31 lines
744 B
YAML
config:
|
|
name: "request methods testcase with functions"
|
|
variables:
|
|
foo1: config_bar1
|
|
foo2: config_bar2
|
|
base_url: "https://postman-echo.com"
|
|
verify: False
|
|
|
|
teststeps:
|
|
-
|
|
name: get with params
|
|
variables:
|
|
foo1: bar1
|
|
sum_v: "${sum_two(1, 2)}"
|
|
request:
|
|
method: GET
|
|
url: /get
|
|
params:
|
|
foo1: $foo1
|
|
foo2: $foo2
|
|
sum_v: $sum_v
|
|
headers:
|
|
User-Agent: HttpRunner/${get_httprunner_version()}
|
|
extract:
|
|
session_foo2: "body.args.foo2"
|
|
validate:
|
|
- eq: ["status_code", 200]
|
|
- eq: ["body.args.foo1", "bar1"]
|
|
- eq: ["body.args.sum_v", "3"]
|
|
- eq: ["body.args.foo2", "config_bar2"]
|