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
|
"use strict";
var prefs = Services.prefs;
var mainThread = Services.tm.currentThread;
var listener1 = {
onLookupComplete(inRequest, inRecord, inStatus) {
Assert.equal(inStatus, Cr.NS_OK);
inRecord.QueryInterface(Ci.nsIDNSAddrRecord);
var answer = inRecord.getNextAddrAsString();
Assert.ok(answer == "127.0.0.1" || answer == "::1");
test2();
do_test_finished();
},
};
var listener2 = {
onLookupComplete(inRequest, inRecord, inStatus) {
Assert.equal(inStatus, Cr.NS_OK);
inRecord.QueryInterface(Ci.nsIDNSAddrRecord);
var answer = inRecord.getNextAddrAsString();
Assert.ok(answer == "127.0.0.1" || answer == "::1");
test3();
do_test_finished();
},
};
var listener3 = {
onLookupComplete(inRequest, inRecord, inStatus) {
Assert.equal(inStatus, Cr.NS_ERROR_OFFLINE);
cleanup();
do_test_finished();
},
};
const firstOriginAttributes = { userContextId: 1 };
const secondOriginAttributes = { userContextId: 2 };
// First, we resolve the address normally for first originAttributes.
function run_test() {
do_test_pending();
prefs.setBoolPref("network.proxy.allow_hijacking_localhost", true);
Services.dns.asyncResolve(
"localhost",
Ci.nsIDNSService.RESOLVE_TYPE_DEFAULT,
0,
null, // resolverInfo
listener1,
mainThread,
firstOriginAttributes
);
}
// Second, we resolve the same address offline to see whether its DNS cache works
// correctly.
function test2() {
do_test_pending();
Services.dns.asyncResolve(
"localhost",
Ci.nsIDNSService.RESOLVE_TYPE_DEFAULT,
Ci.nsIDNSService.RESOLVE_OFFLINE,
null, // resolverInfo
listener2,
mainThread,
firstOriginAttributes
);
}
// Third, we resolve the same address offline again with different originAttributes.
// This resolving should fail since the DNS cache of the given address is not exist
// for this originAttributes.
function test3() {
do_test_pending();
try {
Services.dns.asyncResolve(
"localhost",
Ci.nsIDNSService.RESOLVE_TYPE_DEFAULT,
Ci.nsIDNSService.RESOLVE_OFFLINE,
null, // resolverInfo
listener3,
mainThread,
secondOriginAttributes
);
} catch (e) {
Assert.equal(e.result, Cr.NS_ERROR_OFFLINE);
cleanup();
do_test_finished();
}
}
function cleanup() {
prefs.clearUserPref("network.proxy.allow_hijacking_localhost");
}
|