Source: starlette
Version: 0.46.1-1
Severity: serious
Tags: upstream patch
Justification: makes the package unusable

Dear Maintainer,

The autopkgtests fail with the older dependencies in testing due to changes in 
the JSON formatting:

  89s E       assert {'body': '{"a": "123"}'} == {'body': '{"a":"123"}'}

The attached patch fixes the issue by supporting both formats.

Kind Regards,

Bas
diff -Nru starlette-0.46.1/debian/patches/json-format.patch 
starlette-0.46.1/debian/patches/json-format.patch
--- starlette-0.46.1/debian/patches/json-format.patch   1970-01-01 
01:00:00.000000000 +0100
+++ starlette-0.46.1/debian/patches/json-format.patch   2025-03-11 
09:12:42.000000000 +0100
@@ -0,0 +1,34 @@
+Description: Fix test failures with older dependencies in testing.
+Author: Bas Couwenberg <sebas...@debian.org>
+
+--- a/tests/middleware/test_wsgi.py
++++ b/tests/middleware/test_wsgi.py
+@@ -78,7 +78,7 @@ def test_wsgi_post(test_client_factory:
+     client = test_client_factory(app)
+     response = client.post("/", json={"example": 123})
+     assert response.status_code == 200
+-    assert response.text == '{"example":123}'
++    assert response.text in ['{"example":123}', '{"example": 123}']
+ 
+ 
+ def test_wsgi_exception(test_client_factory: TestClientFactory) -> None:
+--- a/tests/test_requests.py
++++ b/tests/test_requests.py
+@@ -92,7 +92,7 @@ def test_request_body(test_client_factor
+     assert response.json() == {"body": ""}
+ 
+     response = client.post("/", json={"a": "123"})
+-    assert response.json() == {"body": '{"a":"123"}'}
++    assert response.json() in [{"body": '{"a":"123"}'}, {'body': '{"a": 
"123"}'}]
+ 
+     response = client.post("/", data="abc")  # type: ignore
+     assert response.json() == {"body": "abc"}
+@@ -113,7 +113,7 @@ def test_request_stream(test_client_fact
+     assert response.json() == {"body": ""}
+ 
+     response = client.post("/", json={"a": "123"})
+-    assert response.json() == {"body": '{"a":"123"}'}
++    assert response.json() in [{"body": '{"a":"123"}'}, {'body': '{"a": 
"123"}'}]
+ 
+     response = client.post("/", data="abc")  # type: ignore
+     assert response.json() == {"body": "abc"}
diff -Nru starlette-0.46.1/debian/patches/series 
starlette-0.46.1/debian/patches/series
--- starlette-0.46.1/debian/patches/series      1970-01-01 01:00:00.000000000 
+0100
+++ starlette-0.46.1/debian/patches/series      2025-03-11 09:12:42.000000000 
+0100
@@ -0,0 +1 @@
+json-format.patch

Reply via email to