summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/attribution-reporting/simple-verbose-debug-report.sub.https.html
blob: 8a477f732f494a84e5802ace639d8cbec4e2a6c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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>