From 1ce818948e05d93e1eb576ea15558ac7a6fdde29 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=B3nio=20Ramadas?= Date: Mon, 11 Mar 2024 13:25:58 +0100 Subject: [PATCH 1/2] Add step to assert a field is not present --- .generator/conftest.py | 5 +++++ features/step_definitions/request_steps.ts | 7 +++++++ 2 files changed, 12 insertions(+) diff --git a/.generator/conftest.py b/.generator/conftest.py index 347b1ed9c78c..195021f6c7d5 100644 --- a/.generator/conftest.py +++ b/.generator/conftest.py @@ -465,6 +465,11 @@ def expect_response_has_field(context, response_path, field): """Check that a response has field.""" +@then(parsers.parse('the response "{response_path}" does not have field "{field}"')) +def expect_response_has_field(context, response_path, field): + """Check that a response path does not have field.""" + + @then(parsers.parse('the response "{response_path}" has item with field "{key_path}" with value {value}')) def expect_array_contains_object(context, response_path, key_path, value): """Check that a response attribute contains an object with the specified key and value.""" diff --git a/features/step_definitions/request_steps.ts b/features/step_definitions/request_steps.ts index 7dc3e81d9ecc..a538992a05c3 100644 --- a/features/step_definitions/request_steps.ts +++ b/features/step_definitions/request_steps.ts @@ -297,6 +297,13 @@ Then( } ); +Then( + "the response {string} does not have field {string}", + function (this: World, responsePath: string, field: string) { + expect(pathLookup(this.response, responsePath)).to.not.have.property(field); + } +); + Then( "the response {string} has length {int}", function (this: World, responsePath: string, fixtureLength: number) { From 7b401c3b7ec319008e1391b3e010c544928b9e3e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ant=C3=B3nio=20Ramadas?= Date: Mon, 11 Mar 2024 19:31:04 +0100 Subject: [PATCH 2/2] Fix method naming --- .generator/conftest.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.generator/conftest.py b/.generator/conftest.py index 195021f6c7d5..9470ceeb99ee 100644 --- a/.generator/conftest.py +++ b/.generator/conftest.py @@ -466,7 +466,7 @@ def expect_response_has_field(context, response_path, field): @then(parsers.parse('the response "{response_path}" does not have field "{field}"')) -def expect_response_has_field(context, response_path, field): +def expect_response_does_not_have_field(context, response_path, field): """Check that a response path does not have field."""