summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/eventsource/resources/last-event-id2.py
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/eventsource/resources/last-event-id2.py
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/eventsource/resources/last-event-id2.py')
-rw-r--r--testing/web-platform/tests/eventsource/resources/last-event-id2.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/testing/web-platform/tests/eventsource/resources/last-event-id2.py b/testing/web-platform/tests/eventsource/resources/last-event-id2.py
new file mode 100644
index 0000000000..4f133d707d
--- /dev/null
+++ b/testing/web-platform/tests/eventsource/resources/last-event-id2.py
@@ -0,0 +1,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"