1
0
Fork 0
firefox/testing/web-platform/tests/xhr/resources/trickle.py
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

15 lines
519 B
Python

import time
def main(request, response):
chunk = b"TEST_TRICKLE\n"
delay = float(request.GET.first(b"ms", 500)) / 1E3
count = int(request.GET.first(b"count", 50))
if b"specifylength" in request.GET:
response.headers.set(b"Content-Length", count * len(chunk))
time.sleep(delay)
response.headers.set(b"Content-type", b"text/plain")
response.write_status_headers()
time.sleep(delay)
for i in range(count):
response.writer.write_content(chunk)
time.sleep(delay)