aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wpt/web-platform-tests/fetch/api/resources/trickle.py
blob: 319ecd21f4503ccf2f9326bdf53c010089eee5d2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import time

def main(request, response):
    delay = float(request.GET.first("ms", 500)) / 1E3
    count = int(request.GET.first("count", 50))
    # Read request body
    request.body
    time.sleep(delay)
    response.headers.set("Content-type", "text/plain")
    response.write_status_headers()
    time.sleep(delay);
    for i in xrange(count):
        response.writer.write_content("TEST_TRICKLE\n")
        time.sleep(delay)