summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/shared-storage/select-url-report-event.tentative.https.sub.html
blob: b2ad2d1b2a622c4879effd7dc9ffbd156b627e34 (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<!doctype html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/utils.js"></script>
<script src="/shared-storage/resources/util.js"></script>
<script src="/fenced-frame/resources/utils.js"></script>

<body>
<script>
'use strict';

// Poll the server for the test result.
async function waitForReportCount(id) {
  const url = `/shared-storage/resources/report.py?query&token=${id}`;
  for (let i = 0; i < 30; ++i) {
      const response = await fetch(url);
      let count = response.headers.get("Count");

      if (!count || count === '0') {
          await new Promise(resolve => step_timeout(resolve, 100));
          continue;
      }

      return parseInt(count);
  }
  assert_true(false, 'timeout');
}

for (const resolve_to_config of [true, false]) {
  promise_test(async () => {
    const ancestor_key = token();
    let url0 = generateURL("/shared-storage/resources/sender0.html",
                           [ancestor_key]);
    let url1 = generateURL("/shared-storage/resources/sender1.html",
                           [ancestor_key]);

    await addModuleOnce("/shared-storage/resources/simple-module.js");

    const report_id = token();
    const reportURL = `/shared-storage/resources/report.py?token=${report_id}`;
    let select_url_result = await sharedStorage.selectURL(
        "test-url-selection-operation", [
            {url: url0,
            reportingMetadata:
                {
                    'click': reportURL,
                    'mouse interaction':
                    "/shared-storage/resources/receiver1.html"
                }
            }, {url: url1}
        ], {data: {'mockResult': 0}, resolveToConfig: resolve_to_config,
            keepAlive: resolve_to_config});
    assert_true(validateSelectURLResult(select_url_result, resolve_to_config));
    attachFencedFrame(select_url_result, 'opaque-ads');
    const result0 = await nextValueFromServer(ancestor_key);
    assert_equals(result0, "sender0_reported");

    const reportCount = await waitForReportCount(report_id);
    assert_equals(reportCount, 1, `Num reports received: ${reportCount}`);
  }, 'selectURL() with reportEvent(), selectURL() resolves to ' +
    (resolve_to_config ? 'config' : 'urn:uuid'));
}

</script>
</body>