Skip to content

Commit 88b205f

Browse files
committed
Handle situation where no schema is defined.
1 parent ef31b5c commit 88b205f

File tree

4 files changed

+20
-6
lines changed

4 files changed

+20
-6
lines changed

connexion/operations/openapi.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,11 @@ def example_response(self, status_code=None, content_type=None):
186186
except KeyError:
187187
pass
188188

189-
schema = deep_get(self._responses, schema_path)
189+
try:
190+
schema = deep_get(self._responses, schema_path)
191+
except KeyError:
192+
return ("No example response or response schema defined.", status_code)
193+
190194
return (build_example_from_schema(schema), status_code)
191195

192196
def get_path_parameter_types(self):

connexion/operations/swagger2.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,11 @@ def example_response(self, status_code=None, *args, **kwargs):
208208
except KeyError:
209209
pass
210210

211-
schema = deep_get(self._responses, schema_path)
211+
try:
212+
schema = deep_get(self._responses, schema_path)
213+
except KeyError:
214+
return ("No example response or response schema defined.", status_code)
215+
212216
return (build_example_from_schema(schema), status_code)
213217

214218
def body_name(self, content_type: str = None) -> str:

tests/test_mock.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def test_mock_resolver_no_examples():
280280

281281
response, status_code = resolver.mock_operation(operation)
282282
assert status_code == 418
283-
assert response == "No example response was defined."
283+
assert response == "No example response or response schema defined."
284284

285285

286286
def test_mock_resolver_notimplemented():
@@ -317,4 +317,7 @@ def test_mock_resolver_notimplemented():
317317
)
318318

319319
# check if it is using the mock function
320-
assert operation._resolution.function() == ("No example response was defined.", 418)
320+
assert operation._resolution.function() == (
321+
"No example response or response schema defined.",
322+
418,
323+
)

tests/test_mock3.py

+5-2
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ def test_mock_resolver_no_examples():
103103

104104
response, status_code = resolver.mock_operation(operation)
105105
assert status_code == 418
106-
assert response == "No example response was defined."
106+
assert response == "No example response or response schema defined."
107107

108108

109109
def test_mock_resolver_notimplemented():
@@ -133,4 +133,7 @@ def test_mock_resolver_notimplemented():
133133
resolver=resolver,
134134
)
135135
# check if it is using the mock function
136-
assert operation._resolution.function() == ("No example response was defined.", 418)
136+
assert operation._resolution.function() == (
137+
"No example response or response schema defined.",
138+
418,
139+
)

0 commit comments

Comments
 (0)