validate: set expect as alias for expected

This commit is contained in:
httprunner
2017-11-13 20:56:46 +08:00
parent 75b15f2a79
commit b262ae5e5e
16 changed files with 117 additions and 114 deletions

View File

@@ -66,8 +66,8 @@ Open your favorite text editor and you can write test cases like this.
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
``` ```
As you see, each API request is described in a `test` block. And in the `request` field, it describes the detail of HTTP request, includes url, method, headers and data, which are in line with the captured traffic. As you see, each API request is described in a `test` block. And in the `request` field, it describes the detail of HTTP request, includes url, method, headers and data, which are in line with the captured traffic.
@@ -123,8 +123,8 @@ To fix this problem, we should correlate `token` field in the second API test ca
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -138,8 +138,8 @@ To fix this problem, we should correlate `token` field in the second API test ca
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
``` ```
As you see, the `token` field is no longer hardcoded, instead it is extracted from the first API request with `extract` mechanism. In the meanwhile, it is assigned to `token` variable, which can be referenced by the subsequent API requests. As you see, the `token` field is no longer hardcoded, instead it is extracted from the first API request with `extract` mechanism. In the meanwhile, it is assigned to `token` variable, which can be referenced by the subsequent API requests.
@@ -205,8 +205,8 @@ And then, we can revise our demo test case and reference the functions. Suppose
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -220,8 +220,8 @@ And then, we can revise our demo test case and reference the functions. Suppose
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
``` ```
In this revised test case, `variable reference` and `function invoke` mechanisms are both used. In this revised test case, `variable reference` and `function invoke` mechanisms are both used.
@@ -269,8 +269,8 @@ To handle this case, overall `config` block is supported in `HttpRunner`. If we
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -283,8 +283,8 @@ To handle this case, overall `config` block is supported in `HttpRunner`. If we
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
``` ```
As you see, we define variables in `config` block. Also, we can set `base_url` in `config` block, thereby we can specify relative path in each API request url. Besides, we can also set common fields in `config` `request`, such as `device_sn` in headers. As you see, we define variables in `config` block. Also, we can set `base_url` in `config` block, thereby we can specify relative path in each API request url. Besides, we can also set common fields in `config` `request`, such as `device_sn` in headers.

View File

@@ -40,8 +40,8 @@ And here is testset example of typical scenario: get `token` at the beginning, a
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -54,8 +54,8 @@ And here is testset example of typical scenario: get `token` at the beginning, a
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
Function invoke is supported in `YAML/JSON` format testcases, such as `gen_random_string` and `get_sign` above. This mechanism relies on the `debugtak.py` hot plugin, with which we can define functions in `debugtak.py` file, and then functions can be auto discovered and invoked in runtime. Function invoke is supported in `YAML/JSON` format testcases, such as `gen_random_string` and `get_sign` above. This mechanism relies on the `debugtak.py` hot plugin, with which we can define functions in `debugtak.py` file, and then functions can be auto discovered and invoked in runtime.
@@ -68,7 +68,7 @@ Comparator
``HttpRunner`` currently supports the following comparators. ``HttpRunner`` currently supports the following comparators.
+---------------------------+---------------------------+-------------------------+--------------------------+ +---------------------------+---------------------------+-------------------------+--------------------------+
| comparator | Description | A(check), B(expected) | examples | | comparator | Description | A(check), B(expect) | examples |
+===========================+===========================+=========================+==========================+ +===========================+===========================+=========================+==========================+
| ``eq``, ``==`` | value is equal | A == B | 9 eq 9 | | ``eq``, ``==`` | value is equal | A == B | 9 eq 9 |
+---------------------------+---------------------------+-------------------------+--------------------------+ +---------------------------+---------------------------+-------------------------+--------------------------+
@@ -171,11 +171,11 @@ There might be slight difference on list, cos we can use index to locate list it
- content_type: headers.content-type - content_type: headers.content-type
- first_name: content.person.name.first_name - first_name: content.person.name.first_name
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "headers.content-type", "expected": "application/json"} - {"check": "headers.content-type", "expect": "application/json"}
- {"check": "headers.content-length", "comparator": "gt", "expected": 40} - {"check": "headers.content-length", "comparator": "gt", "expect": 40}
- {"check": "content.success", "comparator": "eq", "expected": True} - {"check": "content.success", "comparator": "eq", "expect": True}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}

View File

@@ -11,8 +11,8 @@
json: json:
sign: 19067cf712265eb5426db8d3664026c1ccea02b9 sign: 19067cf712265eb5426db8d3664026c1ccea02b9
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -26,5 +26,5 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}

View File

@@ -13,8 +13,8 @@
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -28,5 +28,5 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}

View File

@@ -18,8 +18,8 @@
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -33,5 +33,5 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}

View File

@@ -25,8 +25,8 @@
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -39,5 +39,5 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}

View File

@@ -128,8 +128,8 @@ class ResponseObject(object):
""" Bind named validators to value within the context. """ Bind named validators to value within the context.
@param (list) validators @param (list) validators
[ [
{"check": "status_code", "comparator": "eq", "expected": 201}, {"check": "status_code", "comparator": "eq", "expect": 201},
{"check": "resp_body_success", "comparator": "eq", "expected": True} {"check": "resp_body_success", "comparator": "eq", "expect": True}
] ]
@param (dict) variables_mapping @param (dict) variables_mapping
{ {
@@ -139,7 +139,7 @@ class ResponseObject(object):
[ [
{ {
"check": "status_code", "check": "status_code",
"comparator": "eq", "expected": 201, "value": 200 "comparator": "eq", "expect": 201, "value": 200
} }
] ]
""" """
@@ -147,12 +147,15 @@ class ResponseObject(object):
check_item = validator_dict.get("check") check_item = validator_dict.get("check")
if not check_item: if not check_item:
raise exception.ParamsError("invalid check item in testcase validators!") raise exception.ParamsError("check item invalid: {}".format(check_item))
if "expected" not in validator_dict: if "expect" in validator_dict:
raise exception.ParamsError("expected item missed in testcase validators!") expect_value = validator_dict.get("expect")
elif "expected" in validator_dict:
expect_value = validator_dict.get("expected")
else:
raise exception.ParamsError("expected value missed in testcase validator!")
expected = validator_dict.get("expected")
comparator = validator_dict.get("comparator", "eq") comparator = validator_dict.get("comparator", "eq")
if check_item in variables_mapping: if check_item in variables_mapping:
@@ -165,7 +168,7 @@ class ResponseObject(object):
utils.match_expected( utils.match_expected(
validator_dict["actual_value"], validator_dict["actual_value"],
expected, expect_value,
comparator, comparator,
check_item check_item
) )

View File

@@ -11,8 +11,8 @@
json: json:
sign: ${get_sign($user_agent, $device_sn, $os_platform, $app_version)} sign: ${get_sign($user_agent, $device_sn, $os_platform, $app_version)}
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- api: - api:
def: create_user($uid, $user_name, $user_password, $token) def: create_user($uid, $user_name, $user_password, $token)

View File

@@ -22,8 +22,8 @@
} }
], ],
"validate": [ "validate": [
{"check": "status_code", "comparator": "eq", "expected": 200}, {"check": "status_code", "comparator": "eq", "expect": 200},
{"check": "content.token", "comparator": "len_eq", "expected": 16} {"check": "content.token", "comparator": "len_eq", "expect": 16}
] ]
} }
}, },
@@ -44,8 +44,8 @@
} }
}, },
"validate": [ "validate": [
{"check": "status_code", "comparator": "eq", "expected": 201}, {"check": "status_code", "comparator": "eq", "expect": 201},
{"check": "content.success", "comparator": "eq", "expected": true} {"check": "content.success", "comparator": "eq", "expect": true}
] ]
} }
}, },
@@ -66,8 +66,8 @@
} }
}, },
"validate": [ "validate": [
{"check": "status_code", "comparator": "eq", "expected": 500}, {"check": "status_code", "comparator": "eq", "expect": 500},
{"check": "content.success", "comparator": "eq", "expected": false} {"check": "content.success", "comparator": "eq", "expect": false}
] ]
} }
} }

View File

@@ -14,8 +14,8 @@
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -30,8 +30,8 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
- test: - test:
name: create user which existed name: create user which existed
@@ -46,5 +46,5 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 500} - {"check": "status_code", "comparator": "eq", "expect": 500}
- {"check": "content.success", "comparator": "eq", "expected": false} - {"check": "content.success", "comparator": "eq", "expect": false}

View File

@@ -23,15 +23,15 @@
name: reset all users name: reset all users
api: reset_all($token) api: reset_all($token)
validate: validate:
- {"check": "status_code", "expected": 200} - {"check": "status_code", "expect": 200}
- {"check": "content.success", "expected": true} - {"check": "content.success", "expect": true}
- test: - test:
name: get user that does not exist name: get user that does not exist
api: get_user(1000, $token) api: get_user(1000, $token)
validate: validate:
- {"check": "status_code", "expected": 404} - {"check": "status_code", "expect": 404}
- {"check": "content.success", "expected": false} - {"check": "content.success", "expect": false}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -40,16 +40,16 @@
- user_password: "123456" - user_password: "123456"
api: create_user(1000, $user_name, $user_password, $token) api: create_user(1000, $user_name, $user_password, $token)
validate: validate:
- {"check": "status_code", "expected": 201} - {"check": "status_code", "expect": 201}
- {"check": "content.success", "expected": true} - {"check": "content.success", "expect": true}
- test: - test:
name: get user that has been created name: get user that has been created
api: get_user(1000, $token) api: get_user(1000, $token)
validate: validate:
- {"check": "status_code", "expected": 200} - {"check": "status_code", "expect": 200}
- {"check": "content.success", "expected": true} - {"check": "content.success", "expect": true}
- {"check": "content.data.password", "expected": "123456"} - {"check": "content.data.password", "expect": "123456"}
- test: - test:
name: create user which exists name: create user which exists
@@ -58,8 +58,8 @@
- user_password: "123456" - user_password: "123456"
api: create_user(1000, $user_name, $user_password, $token) api: create_user(1000, $user_name, $user_password, $token)
validate: validate:
- {"check": "status_code", "expected": 500} - {"check": "status_code", "expect": 500}
- {"check": "content.success", "expected": false} - {"check": "content.success", "expect": false}
- test: - test:
name: update user which exists name: update user which exists
@@ -68,37 +68,37 @@
- user_password: "654321" - user_password: "654321"
api: update_user(1000, $user_name, $user_password, $token) api: update_user(1000, $user_name, $user_password, $token)
validate: validate:
- {"check": "status_code", "expected": 200} - {"check": "status_code", "expect": 200}
- {"check": "content.success", "expected": true} - {"check": "content.success", "expect": true}
- test: - test:
name: get user that has been updated name: get user that has been updated
api: get_user(1000, $token) api: get_user(1000, $token)
validate: validate:
- {"check": "status_code", "expected": 200} - {"check": "status_code", "expect": 200}
- {"check": "content.success", "expected": true} - {"check": "content.success", "expect": true}
- {"check": "content.data.password", "expected": "654321"} - {"check": "content.data.password", "expect": "654321"}
- test: - test:
name: get users name: get users
api: get_users($token) api: get_users($token)
validate: validate:
- {"check": "status_code", "expected": 200} - {"check": "status_code", "expect": 200}
- {"check": "content.count", "expected": 1} - {"check": "content.count", "expect": 1}
- test: - test:
name: delete user that exists name: delete user that exists
api: delete_user(1000, $token) api: delete_user(1000, $token)
validate: validate:
- {"check": "status_code", "expected": 200} - {"check": "status_code", "expect": 200}
- {"check": "content.success", "expected": true} - {"check": "content.success", "expect": true}
- test: - test:
name: get users name: get users
api: get_users($token) api: get_users($token)
validate: validate:
- {"check": "status_code", "expected": 200} - {"check": "status_code", "expect": 200}
- {"check": "content.count", "expected": 0} - {"check": "content.count", "expect": 0}
- test: - test:
name: create user which has been deleted name: create user which has been deleted
@@ -107,12 +107,12 @@
- user_password: "123456" - user_password: "123456"
api: create_user(1000, $user_name, $user_password, $token) api: create_user(1000, $user_name, $user_password, $token)
validate: validate:
- {"check": "status_code", "expected": 201} - {"check": "status_code", "expect": 201}
- {"check": "content.success", "expected": true} - {"check": "content.success", "expect": true}
- test: - test:
name: get users name: get users
api: get_users($token) api: get_users($token)
validate: validate:
- {"check": "status_code", "expected": 200} - {"check": "status_code", "expect": 200}
- {"check": "content.count", "expected": 1} - {"check": "content.count", "expect": 1}

View File

@@ -28,8 +28,8 @@
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -45,8 +45,8 @@
name: $user_name name: $user_name
password: $user_password password: $user_password
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -59,5 +59,5 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 500} - {"check": "status_code", "comparator": "eq", "expect": 500}
- {"check": "content.success", "comparator": "eq", "expected": false} - {"check": "content.success", "comparator": "eq", "expect": false}

View File

@@ -38,8 +38,8 @@
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -55,8 +55,8 @@
name: $user_name name: $user_name
password: $user_password password: $user_password
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -69,5 +69,5 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 500} - {"check": "status_code", "comparator": "eq", "expect": 500}
- {"check": "content.success", "comparator": "eq", "expected": false} - {"check": "content.success", "comparator": "eq", "expect": false}

View File

@@ -29,8 +29,8 @@
extract: extract:
- token: content.token - token: content.token
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 200} - {"check": "status_code", "comparator": "eq", "expect": 200}
- {"check": "content.token", "comparator": "len_eq", "expected": 16} - {"check": "content.token", "comparator": "len_eq", "expect": 16}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -46,8 +46,8 @@
name: $user_name name: $user_name
password: $user_password password: $user_password
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 201} - {"check": "status_code", "comparator": "eq", "expect": 201}
- {"check": "content.success", "comparator": "eq", "expected": true} - {"check": "content.success", "comparator": "eq", "expect": true}
- test: - test:
name: create user which does not exist name: create user which does not exist
@@ -60,5 +60,5 @@
name: "user1" name: "user1"
password: "123456" password: "123456"
validate: validate:
- {"check": "status_code", "comparator": "eq", "expected": 500} - {"check": "status_code", "comparator": "eq", "expect": 500}
- {"check": "content.success", "comparator": "eq", "expected": false} - {"check": "content.success", "comparator": "eq", "expect": false}

View File

@@ -232,8 +232,8 @@ class TestResponse(ApiServerUnittest):
resp_obj = response.ResponseObject(resp) resp_obj = response.ResponseObject(resp)
validators = [ validators = [
{"check": "resp_status_code", "comparator": "eq", "expected": 201}, {"check": "resp_status_code", "comparator": "eq", "expect": 201},
{"check": "resp_body_success", "comparator": "eq", "expected": True} {"check": "resp_body_success", "comparator": "eq", "expect": True}
] ]
variables_mapping = { variables_mapping = {
"resp_status_code": 200, "resp_status_code": 200,
@@ -244,8 +244,8 @@ class TestResponse(ApiServerUnittest):
resp_obj.validate(validators, variables_mapping) resp_obj.validate(validators, variables_mapping)
validators = [ validators = [
{"check": "resp_status_code", "comparator": "eq", "expected": 201}, {"check": "resp_status_code", "comparator": "eq", "expect": 201},
{"check": "resp_body_success", "comparator": "eq", "expected": True} {"check": "resp_body_success", "comparator": "eq", "expect": True}
] ]
variables_mapping = { variables_mapping = {
"resp_status_code": 201, "resp_status_code": 201,
@@ -261,7 +261,7 @@ class TestResponse(ApiServerUnittest):
# expected value missed in validators # expected value missed in validators
validators = [ validators = [
{"check": "status_code", "comparator": "eq", "expected": 201}, {"check": "status_code", "comparator": "eq", "expect": 201},
{"check": "body_success", "comparator": "eq"} {"check": "body_success", "comparator": "eq"}
] ]
variables_mapping = {} variables_mapping = {}
@@ -270,7 +270,7 @@ class TestResponse(ApiServerUnittest):
# expected value missed in variables mapping # expected value missed in variables mapping
validators = [ validators = [
{"check": "resp_status_code", "comparator": "eq", "expected": 201}, {"check": "resp_status_code", "comparator": "eq", "expect": 201},
{"check": "body_success", "comparator": "eq"} {"check": "body_success", "comparator": "eq"}
] ]
variables_mapping = { variables_mapping = {

View File

@@ -56,8 +56,8 @@ class TestRunner(ApiServerUnittest):
{"token": "content.token"} {"token": "content.token"}
], ],
"validate": [ "validate": [
{"check": "status_code", "comparator": "eq", "expected": 205}, {"check": "status_code", "expect": 205},
{"check": "content.token", "comparator": "len_eq", "expected": 19} {"check": "content.token", "comparator": "len_eq", "expect": 19}
] ]
} }