blob: 6b89b070d5df1c6fe0377904244073baeae7b5c6 (
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
|
/* Any copyright is dedicated to the Public Domain.
* https://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
const SIGNAL = "public-suffix-list-updated";
add_task(async () => {
info("Before fake dafsa reload.");
let suffix = Services.eTLD.getPublicSuffixFromHost("website.xpcshelltest");
Assert.equal(
suffix,
"xpcshelltest",
"Fake Suffix does not exist in current PSL."
);
});
add_task(async () => {
info("After fake dafsa reload.");
// reload the PSL with fake data containing .xpcshelltest
const fakeDafsaFile = do_get_file("data/fake_remote_dafsa.bin");
Services.obs.notifyObservers(fakeDafsaFile, SIGNAL, fakeDafsaFile.path);
let suffix = Services.eTLD.getPublicSuffixFromHost("website.xpcshelltest");
Assert.equal(
suffix,
"website.xpcshelltest",
"Fake Suffix now exists in PSL after DAFSA reload."
);
});
|