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
|
// META: script=/resources/testdriver.js
// META: script=/resources/testdriver-vendor.js
'use strict';
const okayAuctionRequest = {
seller: "https://{{host}}:{{ports[https][0]}}",
decisionLogicURL: "https://{{host}}:{{ports[https][0]}}",
perBuyerSignals: {"{{host}}": { randomParam: "value1" }},
auctionSignals: "pubCode123",
sellerSignals: { someKey: "sellerValue" }
};
test(() => {
assert_not_equals(navigator.finalizeAd, undefined);
}, "finalizeAd() should be supported on the navigator interface.");
promise_test(async t => {
const finalizePromise = navigator.finalizeAd({}, okayAuctionRequest);
await promise_rejects_js(t, TypeError, finalizePromise);
}, "finalizeAd() should reject an invalid Ads object.");
promise_test(async t => {
const auctionRequest = Object.assign({}, okayAuctionRequest);
delete auctionRequest.decisionLogicURL;
const finalizePromise = navigator.finalizeAd({}, auctionRequest);
await promise_rejects_js(t, TypeError, finalizePromise);
}, "finalizeAd() should reject a missing decisionLogicURL.");
promise_test(async t => {
const auctionRequest = Object.assign({}, okayAuctionRequest);
auctionRequest.decisionLogicURL = "http://{{host}}:{{ports[https][0]}}";
const finalizePromise = navigator.finalizeAd({}, auctionRequest);
await promise_rejects_js(t, TypeError, finalizePromise);
}, "finalizeAd() should reject a non-HTTPS decisionLogicURL.");
|