summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fledge/tentative/send-report-to.https.sub.window.js
blob: de22e827a33e195cf6122dc927ff4344de8b23b0 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
// META: script=/resources/testdriver.js
// META: script=/common/utils.js
// META: script=resources/fledge-util.js
// META: timeout=long

"use strict;"

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      `sendReportTo('${createSellerReportUrl(uuid)}');`,
      // reportWin:
      'sellerSignals === null',
      `sendReportTo('${createBidderReportUrl(uuid)}');`,
      [createSellerReportUrl(uuid), createBidderReportUrl(uuid)]
  );
}, 'Both send reports, seller passes nothing to bidder.');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      `sendReportTo('${createSellerReportUrl(uuid)}');`,
      // reportWin:
      null,
      '',
      // expectedReportUrls:
      [createSellerReportUrl(uuid)]
  );
}, 'Only seller sends a report');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      `sendReportTo('${createSellerReportUrl(uuid)}');`,
      // reportWin:
      null,
      'throw new Error("Very serious exception")',
      // expectedReportUrls:
      [createSellerReportUrl(uuid)]
  );
}, 'Only seller sends a report, bidder throws an exception');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      `sendReportTo('${createSellerReportUrl(uuid)}');`,
      // reportWin:
      null,
      null,
      // expectedReportUrls:
      [createSellerReportUrl(uuid)]
  );
}, 'Only seller sends a report, bidder has no reportWin() method');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      '',
      // reportWin:
      'sellerSignals === null',
      `sendReportTo('${createBidderReportUrl(uuid)}');`,
      // expectedReportUrls:
      [createBidderReportUrl(uuid)]
  );
}, 'Only bidder sends a report');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      'return "foo";',
      // reportWin:
      'sellerSignals === "foo"',
      `sendReportTo('${createBidderReportUrl(uuid)}');`,
      // expectedReportUrls:
      [createBidderReportUrl(uuid)]
  );
}, 'Only bidder sends a report, seller passes a message to bidder');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      'throw new Error("Very serious exception")',
      // reportWin:
      'sellerSignals === null',
      `sendReportTo('${createBidderReportUrl(uuid)}');`,
      // expectedReportUrls:
      [createBidderReportUrl(uuid)]
  );
}, 'Only bidder sends a report, seller throws an exception');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      null,
      // reportWin:
      'sellerSignals === null',
      `sendReportTo('${createBidderReportUrl(uuid)}');`,
      // expectedReportUrls:
      [createBidderReportUrl(uuid)]
  );
}, 'Only bidder sends a report, seller has no reportResult() method');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      `sendReportTo('${createSellerReportUrl(uuid)}');
       sendReportTo('${createSellerReportUrl(uuid)}');
       return 5;`,
      // reportWin:
      'sellerSignals === null',
      `sendReportTo('${createBidderReportUrl(uuid)}');`,
      // expectedReportUrls:
      [createBidderReportUrl(uuid)]
  );
}, 'Seller calls sendReportTo() twice, which throws an exception.');

promise_test(async test => {
  const uuid = generateUuid(test);
  await runReportTest(
      test, uuid,
      // reportResult:
      null,
      `sendReportTo('${createSellerReportUrl(uuid)}');`,
      // reportWin:
      null,
      `sendReportTo('${createBidderReportUrl(uuid)}');
       sendReportTo('${createBidderReportUrl(uuid)}');`,
      // expectedReportUrls:
      [createSellerReportUrl(uuid)]
  );
  // Seller reports may be sent before bidder reports, since reportWin()
  // takes output from reportResult() as input. Wait to make sure the
  // bidder report URL really is not being requested.
  await new Promise(resolve => test.step_timeout(resolve, 200));
  await waitForObservedRequests(uuid, [createSellerReportUrl(uuid)]);
}, 'Bidder calls sendReportTo() twice, which throws an exception.');