Skip to content
Snippets Groups Projects
Commit eaee83b4 authored by Antoine Lambert's avatar Antoine Lambert
Browse files

badges: Fix regression introduced in 77dd2a97

Reorder badges URL patterns as URL pattern taking a SWHID as
argument should be checked prior the one taking object_type
and object_id as arguments (as a qualified SWHID can also match
that URL pattern).

Return more meaningful HTTP status code when an error occurs
when attempting to generate a badge.
parent 42bd795d
No related branches found
No related tags found
1 merge request!1319badges: Fix regression introduced in 77dd2a9
Pipeline #10889 failed
......@@ -97,6 +97,7 @@ def swh_badge(
"""
left_text = "error"
whole_link: str | None = None
status_code = 200
# cache badge for 30 days by default
cache_timeout = (
......@@ -160,9 +161,11 @@ def swh_badge(
except (BadInputExc, ValidationError, ValueError):
right_text = f'invalid {object_type if object_type else "object"} id'
object_type = "error"
status_code = 400
except NotFoundExc:
right_text = f'{object_type if object_type else "object"} not found'
object_type = "error"
status_code = 404
badge_data = badge(
left_text=left_text,
......@@ -174,7 +177,9 @@ def swh_badge(
embed_logo=True,
)
response = HttpResponse(badge_data, content_type="image/svg+xml")
response = HttpResponse(
badge_data, content_type="image/svg+xml", status=status_code
)
return cast(HttpResponse, cachemiddleware.process_response(request, response))
......
......@@ -59,9 +59,9 @@ def test_badge_errors(
url_args = {"object_type": object_type, "object_id": object_id}
url = reverse("swh-badge", url_args=url_args)
resp = check_http_get_response(
client, url, status_code=200, content_type="image/svg+xml"
client, url, status_code=404, content_type="image/svg+xml"
)
_check_generated_badge(resp, **url_args, error="not found")
_check_generated_badge(resp, **url_args, error="not found", status_code=404)
for object_type, object_id in (
(ObjectType.CONTENT, invalid_sha1),
......@@ -75,16 +75,16 @@ def test_badge_errors(
url = reverse("swh-badge", url_args=url_args)
resp = check_http_get_response(
client, url, status_code=200, content_type="image/svg+xml"
client, url, status_code=400, content_type="image/svg+xml"
)
_check_generated_badge(resp, **url_args, error="invalid id")
_check_generated_badge(resp, **url_args, error="invalid id", status_code=400)
object_swhid = f"swh:1:{object_type.value}:{object_id}"
url = reverse("swh-badge-swhid", url_args={"object_swhid": object_swhid})
resp = check_http_get_response(
client, url, status_code=200, content_type="image/svg+xml"
client, url, status_code=400, content_type="image/svg+xml"
)
_check_generated_badge(resp, "", "", error="invalid id")
_check_generated_badge(resp, "", "", error="invalid id", status_code=400)
def test_badge_endpoints_have_cors_header(client, origin, release):
......@@ -128,6 +128,7 @@ def _test_badge_endpoints(client, object_type: str, object_id: str):
QualifiedSWHID(
object_type=ObjectType[object_type.upper()],
object_id=hash_to_bytes(object_id),
origin="https://git.example.org/user/project",
)
)
url = reverse("swh-badge-swhid", url_args={"object_swhid": obj_swhid})
......@@ -137,8 +138,9 @@ def _test_badge_endpoints(client, object_type: str, object_id: str):
_check_generated_badge(resp, **url_args)
def _check_generated_badge(response, object_type, object_id, error=None):
assert response.status_code == 200, response.content
def _check_generated_badge(
response, object_type, object_id, error=None, status_code=200
):
assert response["Content-Type"] == "image/svg+xml"
if not object_type:
......@@ -171,10 +173,14 @@ def _check_generated_badge(response, object_type, object_id, error=None):
object_type = "error"
assert "Cache-Control" not in response
assert_contains(response, "<svg ")
assert_contains(response, "</svg>")
assert_contains(response, get_logo_data())
assert_contains(response, badge_config[object_type]["color"])
assert_contains(response, badge_config[object_type]["title"])
assert_contains(response, text)
assert_contains(response, link)
assert_contains(response, "<svg ", status_code=status_code)
assert_contains(response, "</svg>", status_code=status_code)
assert_contains(response, get_logo_data(), status_code=status_code)
assert_contains(
response, badge_config[object_type]["color"], status_code=status_code
)
assert_contains(
response, badge_config[object_type]["title"], status_code=status_code
)
assert_contains(response, text, status_code=status_code)
assert_contains(response, link, status_code=status_code)
......@@ -11,14 +11,14 @@ from swh.web.utils.url_path_converters import register_url_path_converters
register_url_path_converters()
urlpatterns = [
url(
"badge/<str:object_type>/<path:object_id>/",
swh_badge,
name="swh-badge",
),
url(
"badge/<swhid:object_swhid>/",
swh_badge_swhid,
name="swh-badge-swhid",
),
url(
"badge/<str:object_type>/<path:object_id>/",
swh_badge,
name="swh-badge",
),
]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment