mirror of
https://github.com/httprunner/httprunner.git
synced 2026-05-11 18:11:21 +08:00
63 lines
1.7 KiB
YAML
63 lines
1.7 KiB
YAML
config:
|
|
name: "request methods testcase with functions"
|
|
variables:
|
|
foo1: config_bar1
|
|
foo2: config_bar2
|
|
expect_foo1: config_bar1
|
|
expect_foo2: config_bar2
|
|
headers:
|
|
User-Agent: funplugin/${get_version()}
|
|
verify: False
|
|
export: ["foo3"]
|
|
|
|
teststeps:
|
|
-
|
|
name: get with params
|
|
variables:
|
|
foo1: ${ENV(USERNAME)}
|
|
foo2: bar21
|
|
sum_v: "${sum_two_int(1, 2)}"
|
|
request:
|
|
method: GET
|
|
url: $base_url/get
|
|
params:
|
|
foo1: $foo1
|
|
foo2: $foo2
|
|
sum_v: $sum_v
|
|
extract:
|
|
foo3: "body.args.foo2"
|
|
validate:
|
|
- eq: ["status_code", 200]
|
|
- eq: ["body.args.foo1", "debugtalk"]
|
|
- eq: ["body.args.sum_v", "3"]
|
|
- eq: ["body.args.foo2", "bar21"]
|
|
-
|
|
name: post raw text
|
|
variables:
|
|
foo1: "bar12"
|
|
foo3: "bar32"
|
|
request:
|
|
method: POST
|
|
url: $base_url/post
|
|
headers:
|
|
Content-Type: "text/plain"
|
|
body: "This is expected to be sent back as part of response body: $foo1-$foo2-$foo3."
|
|
validate:
|
|
- eq: ["status_code", 200]
|
|
- eq: ["body.data", "This is expected to be sent back as part of response body: bar12-$expect_foo2-bar32."]
|
|
-
|
|
name: post form data
|
|
variables:
|
|
foo2: bar23
|
|
request:
|
|
method: POST
|
|
url: $base_url/post
|
|
headers:
|
|
Content-Type: "application/x-www-form-urlencoded"
|
|
body: "foo1=$foo1&foo2=$foo2&foo3=$foo3"
|
|
validate:
|
|
- eq: ["status_code", 200]
|
|
- eq: ["body.form.foo1", "$expect_foo1"]
|
|
- eq: ["body.form.foo2", "bar23"]
|
|
- eq: ["body.form.foo3", "bar21"]
|