summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/pending-beacon/pending_get_beacon-send.tentative.https.window.js
blob: 8c6e826af5b578b5893babb5e0ee90e37b37cc09 (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
// META: script=/common/utils.js
// META: script=./resources/pending_beacon-helper.js

'use strict';

const baseUrl = `${location.protocol}//${location.host}`;

parallelPromiseTest(async t => {
  const uuid = token();
  const url = generateSetBeaconURL(uuid);

  let beacon = new PendingGetBeacon('/');

  beacon.setURL(url);
  assert_equals(beacon.url, url);
  beacon.sendNow();

  await expectBeacon(uuid, {count: 1});
}, 'PendingGetBeacon is sent to the updated URL');

parallelPromiseTest(async t => {
  const uuid = token();
  const url = generateSetBeaconURL(uuid);

  let beacon = new PendingGetBeacon('/0');

  for (let i = 0; i < 10; i++) {
    const transientUrl = `/${i}`;
    beacon.setURL(transientUrl);
    assert_equals(beacon.url, transientUrl);
  }
  beacon.setURL(url);
  assert_equals(beacon.url, url);

  beacon.sendNow();

  await expectBeacon(uuid, {count: 1});
}, 'PendingGetBeacon is sent to the last updated URL');