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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
trr_test_setup();
registerCleanupFunction(async () => {
trr_clear_prefs();
Services.prefs.clearUserPref("network.dns.echconfig.enabled");
});
add_task(async function testPriorityAndECHConfig() {
let trrServer = new TRRServer();
registerCleanupFunction(async () => {
await trrServer.stop();
});
await trrServer.start();
Services.prefs.setBoolPref("network.dns.echconfig.enabled", false);
Services.prefs.setIntPref("network.trr.mode", 3);
Services.prefs.setCharPref(
"network.trr.uri",
`https://foo.example.com:${trrServer.port}/dns-query`
);
await trrServer.registerDoHAnswers("test.priority.com", "HTTPS", {
answers: [
{
name: "test.priority.com",
ttl: 55,
type: "HTTPS",
flush: false,
data: {
priority: 1,
name: "test.p1.com",
values: [{ key: "alpn", value: ["h2", "h3"] }],
},
},
{
name: "test.priority.com",
ttl: 55,
type: "HTTPS",
flush: false,
data: {
priority: 4,
name: "test.p4.com",
values: [{ key: "echconfig", value: "456..." }],
},
},
{
name: "test.priority.com",
ttl: 55,
type: "HTTPS",
flush: false,
data: {
priority: 3,
name: "test.p3.com",
values: [{ key: "ipv4hint", value: "1.2.3.4" }],
},
},
{
name: "test.priority.com",
ttl: 55,
type: "HTTPS",
flush: false,
data: {
priority: 2,
name: "test.p2.com",
values: [{ key: "echconfig", value: "123..." }],
},
},
],
});
let { inRecord } = await new TRRDNSListener("test.priority.com", {
type: Ci.nsIDNSService.RESOLVE_TYPE_HTTPSSVC,
});
let answer = inRecord.QueryInterface(Ci.nsIDNSHTTPSSVCRecord).records;
Assert.equal(answer.length, 4);
Assert.equal(answer[0].priority, 1);
Assert.equal(answer[0].name, "test.p1.com");
Assert.equal(answer[1].priority, 2);
Assert.equal(answer[1].name, "test.p2.com");
Assert.equal(answer[2].priority, 3);
Assert.equal(answer[2].name, "test.p3.com");
Assert.equal(answer[3].priority, 4);
Assert.equal(answer[3].name, "test.p4.com");
Services.prefs.setBoolPref("network.dns.echconfig.enabled", true);
Services.dns.clearCache(true);
({ inRecord } = await new TRRDNSListener("test.priority.com", {
type: Ci.nsIDNSService.RESOLVE_TYPE_HTTPSSVC,
}));
answer = inRecord.QueryInterface(Ci.nsIDNSHTTPSSVCRecord).records;
Assert.equal(answer.length, 4);
Assert.equal(answer[0].priority, 2);
Assert.equal(answer[0].name, "test.p2.com");
Assert.equal(
answer[0].values[0].QueryInterface(Ci.nsISVCParamEchConfig).echconfig,
"123...",
"got correct answer"
);
Assert.equal(answer[1].priority, 4);
Assert.equal(answer[1].name, "test.p4.com");
Assert.equal(
answer[1].values[0].QueryInterface(Ci.nsISVCParamEchConfig).echconfig,
"456...",
"got correct answer"
);
Assert.equal(answer[2].priority, 1);
Assert.equal(answer[2].name, "test.p1.com");
Assert.equal(answer[3].priority, 3);
Assert.equal(answer[3].name, "test.p3.com");
});
|