Browse Source

Refactor tests for duplicate operation ID generation for compatibility with other tools running the FastAPI test suite (#10876)

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Co-authored-by: Sebastián Ramírez <[email protected]>
pull/10962/head
Emmett Butler 1 year ago
committed by GitHub
parent
commit
f18eadb7de
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      tests/test_generate_unique_id_function.py

9
tests/test_generate_unique_id_function.py

@ -1626,6 +1626,9 @@ def test_warn_duplicate_operation_id():
with warnings.catch_warnings(record=True) as w:
warnings.simplefilter("always")
client.get("/openapi.json")
assert len(w) == 2
assert issubclass(w[-1].category, UserWarning)
assert "Duplicate Operation ID" in str(w[-1].message)
assert len(w) >= 2
duplicate_warnings = [
warning for warning in w if issubclass(warning.category, UserWarning)
]
assert len(duplicate_warnings) > 0
assert "Duplicate Operation ID" in str(duplicate_warnings[0].message)

Loading…
Cancel
Save