summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/attribution-reporting/simple-verbose-debug-report.sub.https.html
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 00:47:55 +0000
commit26a029d407be480d791972afb5975cf62c9360a6 (patch)
treef435a8308119effd964b339f76abb83a57c29483 /testing/web-platform/tests/attribution-reporting/simple-verbose-debug-report.sub.https.html
parentInitial commit. (diff)
downloadfirefox-26a029d407be480d791972afb5975cf62c9360a6.tar.xz
firefox-26a029d407be480d791972afb5975cf62c9360a6.zip
Adding upstream version 124.0.1.upstream/124.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/attribution-reporting/simple-verbose-debug-report.sub.https.html')
-rw-r--r--testing/web-platform/tests/attribution-reporting/simple-verbose-debug-report.sub.https.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/testing/web-platform/tests/attribution-reporting/simple-verbose-debug-report.sub.https.html b/testing/web-platform/tests/attribution-reporting/simple-verbose-debug-report.sub.https.html
new file mode 100644
index 0000000000..8a477f732f
--- /dev/null
+++ b/testing/web-platform/tests/attribution-reporting/simple-verbose-debug-report.sub.https.html
@@ -0,0 +1,32 @@
+<!doctype html>
+<meta charset=utf-8>
+<meta name=timeout content=long>
+<script src="/common/get-host-info.sub.js"></script>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/attribution-reporting/resources/helpers.js"></script>
+<script>
+attribution_reporting_promise_test(async t => {
+ const expectedTriggerDebugKey = '456';
+
+ registerAttributionSrcByImg(createRedirectChain([
+ {
+ cookie: attributionDebugCookie,
+ trigger: {
+ debug_reporting: true,
+ debug_key: expectedTriggerDebugKey,
+ event_trigger_data: [{}],
+ },
+ },
+ ]));
+
+ const payload = await pollVerboseDebugReports();
+ assert_equals(payload.reports.length, 1);
+ const report = JSON.parse(payload.reports[0].body);
+ assert_equals(report.length, 1);
+ assert_equals(report[0].type, 'trigger-no-matching-source');
+ assert_own_property(report[0], 'body');
+ assert_equals(report[0].body.attribution_destination, 'https://{{host}}');
+ assert_equals(report[0].body.trigger_debug_key, expectedTriggerDebugKey);
+}, 'Verbose debug report is received.');
+</script>