Files
lorry li b2820a2752 Add more test cases about retry behaviors in WebTests;
Make sure when timed out in retry system, during back off or during retrying, it will return the last response instead of empty response.

[REVIEW] [at]michael.kirzinger [at]michael.atchison [at]rafa.lecina
[FYI] daniel.lamb
#rb Rafa.Lecina
#tests Tried in WebTests

[CL 31310240 by lorry li in ue5-main branch]
2024-02-08 18:13:40 -05:00

17 lines
1.0 KiB
Python

from django.urls import path
from . import views
urlpatterns = [
path("httptests/methods", views.methods, name="methods"),
path("httptests/query_with_params/", views.query_with_params, name="query_with_params"),
path("httptests/get_data_without_chunks/<int:bytes_number>/<int:repeat_at>/", views.get_data_without_chunks, name="get_data_without_chunks"),
path("httptests/streaming_download/<int:chunks>/<int:chunk_size>/<int:chunk_latency>/", views.streaming_download, name="streaming_download"),
path("httptests/streaming_upload_post", views.streaming_upload_post, name="streaming_upload_post"),
path("httptests/streaming_upload_put", views.streaming_upload_put, name="streaming_upload_put"),
path("httptests/redirect_from", views.redirect_from, name="redirect_from"),
path("httptests/redirect_to", views.redirect_to, name="redirect_to"),
path("httptests/mock_latency/<int:latency>/", views.mock_latency, name="mock_latency"),
path("httptests/mock_status/<int:status_code>/", views.mock_status, name="mock_status"),
]