summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/fledge/tentative/generate-bid-recency.https.window.js
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-19 01:13:33 +0000
commit086c044dc34dfc0f74fbe41f4ecb402b2cd34884 (patch)
treea4f824bd33cb075dd5aa3eb5a0a94af221bbe83a /testing/web-platform/tests/fledge/tentative/generate-bid-recency.https.window.js
parentAdding debian version 124.0.1-1. (diff)
downloadfirefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.tar.xz
firefox-086c044dc34dfc0f74fbe41f4ecb402b2cd34884.zip
Merging upstream version 125.0.1.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/fledge/tentative/generate-bid-recency.https.window.js')
-rw-r--r--testing/web-platform/tests/fledge/tentative/generate-bid-recency.https.window.js34
1 files changed, 0 insertions, 34 deletions
diff --git a/testing/web-platform/tests/fledge/tentative/generate-bid-recency.https.window.js b/testing/web-platform/tests/fledge/tentative/generate-bid-recency.https.window.js
deleted file mode 100644
index 07da463a2d..0000000000
--- a/testing/web-platform/tests/fledge/tentative/generate-bid-recency.https.window.js
+++ /dev/null
@@ -1,34 +0,0 @@
-// META: script=/resources/testdriver.js
-// META: script=/common/utils.js
-// META: script=resources/fledge-util.sub.js
-// META: timeout=long
-
-"use strict;"
-
-promise_test(async test => {
- const uuid = generateUuid(test);
- await runReportTest(
- test, uuid,
- { generateBid:
- `if (browserSignals.recency === undefined)
- throw new Error("Missing recency in browserSignals.")
-
- if (browserSignals.recency < 0)
- throw new Error("Recency is a negative value.")
-
- if (browserSignals.recency > 30000)
- throw new Error("Recency is over 30 seconds threshold.")
-
- if (browserSignals.recency % 100 !== 0)
- throw new Error("Recency is not rounded to multiple of 100 milliseconds.")
-
- return {'bid': 9,
- 'render': interestGroup.ads[0].renderURL};`,
- reportWin:
- `sendReportTo('${createBidderReportURL(uuid)}');`
- },
- // expectedReportUrls
- [createBidderReportURL(uuid)]
- );
-}, 'Check recency in generateBid() is below a certain threshold and rounded ' +
- 'to multiple of 100 milliseconds.');