summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/eventsource/resources/last-event-id2.py
blob: 4f133d707d1f72f2717aec14423b4c613498ba03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
ID_PERSISTS = 1
ID_RESETS_1 = 2
ID_RESETS_2 = 3

def main(request, response):
  response.headers.set(b"Content-Type", b"text/event-stream")
  try:
    test_type = int(request.GET.first(b"type", ID_PERSISTS))
  except:
    test_type = ID_PERSISTS

  if test_type == ID_PERSISTS:
    return b"id: 1\ndata: 1\n\ndata: 2\n\nid: 2\ndata:3\n\ndata:4\n\n"

  elif test_type == ID_RESETS_1:
    return b"id: 1\ndata: 1\n\nid:\ndata:2\n\ndata:3\n\n"

  # empty id field without colon character (:) should also reset
  elif test_type == ID_RESETS_2:
    return b"id: 1\ndata: 1\n\nid\ndata:2\n\ndata:3\n\n"

  else:
    return b"data: invalid_test\n\n"