blob: a42f066b3e0ba2641dccc1b624cd85c66f3dd0cd (
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
|
/* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/publicdomain/zero/1.0/ */
/**
* Test nsILoginInfo.displayOrigin
*/
"use strict";
add_task(function test_displayOrigin() {
// Trying to access `displayOrigin` for each login shouldn't throw.
for (let loginInfo of TestData.loginList()) {
let { displayOrigin } = loginInfo;
info(loginInfo.origin);
info(displayOrigin);
Assert.equal(typeof displayOrigin, "string", "Check type");
Assert.greater(displayOrigin.length, 0, "Check length");
if (loginInfo.origin.startsWith("file://")) {
// Fails to create the URL
Assert.ok(displayOrigin.startsWith(loginInfo.origin), "Contains origin");
} else {
Assert.ok(
displayOrigin.startsWith(loginInfo.origin.replace(/.+:\/\//, "")),
"Contains domain"
);
}
let matches;
if ((matches = loginInfo.origin.match(/:([0-9]+)$/))) {
Assert.ok(displayOrigin.includes(matches[1]), "Check port is included");
}
Assert.ok(!displayOrigin.includes("null"), "Doesn't contain `null`");
Assert.ok(
!displayOrigin.includes("undefined"),
"Doesn't contain `undefined`"
);
if (loginInfo.httpRealm !== null) {
Assert.ok(
displayOrigin.includes(loginInfo.httpRealm),
"Contains httpRealm"
);
}
}
});
|