You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
530 B
21 lines
530 B
name: 后台首页累计用户数
|
|
variables:
|
|
code: 200
|
|
message: successful
|
|
token: ${ENV(LDAPTOKEN)}
|
|
startDate: 2020-01-01
|
|
endDate: 2020-09-15
|
|
base_url: ${ENV(BURL)}
|
|
request:
|
|
url: /recycle-service/admin/stat/get/stat-user
|
|
method: GET
|
|
headers:
|
|
Content-Type: "application/json;charset=UTF-8"
|
|
X-APP-ID: "1"
|
|
Authorization: $token
|
|
params:
|
|
startDate: $startDate
|
|
endDate: $endDate
|
|
validate:
|
|
- eq: ["status_code", $code]
|
|
- {"check": "content.message", "comparator": "contains", "expect": $message}
|