-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathdns-srv.js
335 lines (284 loc) · 13.7 KB
/
dns-srv.js
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
/*
* Copyright (c) 2020, 2022, Oracle and/or its affiliates.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2.0, as
* published by the Free Software Foundation.
*
* This program is also distributed with certain software (including
* but not limited to OpenSSL) that is licensed under separate terms,
* as designated in a particular file or component or in included license
* documentation. The authors of MySQL hereby grant you an
* additional permission to link the program and your derivative works
* with the separately licensed software that they have included with
* MySQL.
*
* Without limiting anything contained in the foregoing, this file,
* which is part of MySQL Connector/Node.js, is also subject to the
* Universal FOSS Exception, version 1.0, a copy of which can be found at
* http://oss.oracle.com/licenses/universal-foss-exception.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License, version 2.0, for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
'use strict';
/* eslint-env node, mocha */
const config = require('../../../config');
const dns = require('dns');
const errors = require('../../../../lib/constants/errors');
const expect = require('chai').expect;
const fixtures = require('../../../fixtures');
const mysqlx = require('../../../../');
const os = require('os');
const util = require('util');
describe('connecting to the MySQL server using DNS SRV', () => {
const baseConfig = { host: '_mysqlx._tcp.example.com', port: undefined, resolveSrv: true, schema: undefined };
it('fails to connect when the property value in the connection options is not valid', () => {
const srvConfig = Object.assign({}, config, baseConfig, { resolveSrv: 'foo' });
return mysqlx.getSession(srvConfig)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_BAD_SRV_LOOKUP_OPTION);
});
});
context('when there are DNS SRV records for the given service definition', () => {
let originalServers, fakeServer;
const records = [{
priority: 5,
weight: 10,
target: config.host,
port: config.port + 1
}, {
// should pick this one
priority: 5,
weight: 20,
target: config.host,
port: config.port
}, {
priority: 0,
weight: 5,
target: config.host,
port: config.port + 2
}];
beforeEach('setup fake DNS server in the current host', () => {
return fixtures.getIPv4Address(os.hostname())
.then(host => {
return fixtures.createRecordServer({ host, service: baseConfig.host, records });
})
.then(server => {
fakeServer = server;
});
});
beforeEach('add fake server to list of servers to be used for DNS resolution', () => {
// Save the original list of DNS servers to restore after the test.
originalServers = dns.getServers();
// Add the fake server endpoint to the list of DNS servers.
const { address, port } = fakeServer.addresses().udp;
dns.setServers([`${address}:${port}`].concat(originalServers));
});
afterEach('restore original list of DNS servers', () => {
dns.setServers(originalServers);
});
afterEach('close fake DNS server', () => {
return fakeServer.close();
});
it('connects to the most appropriate endpoint using a configuration object', () => {
const srvConfig = Object.assign({}, config, baseConfig, { socket: undefined });
return mysqlx.getSession(srvConfig)
.then(session => session.close());
});
it('connects to the most appropriate endpoint using a connection string', () => {
const srvConfig = Object.assign({}, config, baseConfig, { socket: undefined });
const uri = `mysqlx+srv://${srvConfig.user}:${srvConfig.password}@${srvConfig.host}`;
return mysqlx.getSession(uri)
.then(session => session.close());
});
});
context('when there are no DNS SRV records for the given service definition', () => {
let originalServers, fakeServer;
beforeEach('setup fake DNS server in the current host', () => {
return fixtures.getIPv4Address(os.hostname())
.then(host => {
return fixtures.createRecordServer({ host, service: baseConfig.host, records: [] });
})
.then(server => {
fakeServer = server;
});
});
beforeEach('add fake server to list of servers to be used for DNS resolution', () => {
// Save the original list of DNS servers to restore after the test.
originalServers = dns.getServers();
// Add the fake server endpoint to the list of DNS servers.
const { address, port } = fakeServer.addresses().udp;
dns.setServers([`${address}:${port}`].concat(originalServers));
});
afterEach('restore original list of DNS servers', () => {
dns.setServers(originalServers);
});
afterEach('close fake DNS server', () => {
return fakeServer.close();
});
it('fails to connect using a configuration object', () => {
const srvConfig = Object.assign({}, config, baseConfig, { socket: undefined });
return mysqlx.getSession(srvConfig)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(util.format(errors.MESSAGES.ER_DEVAPI_SRV_RECORDS_NOT_AVAILABLE, srvConfig.host));
});
});
it('fails to connect using a connection string', () => {
const srvConfig = Object.assign({}, config, baseConfig, { socket: undefined });
const uri = `mysqlx+srv://${srvConfig.user}:${srvConfig.password}@${srvConfig.host}`;
return mysqlx.getSession(uri)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(util.format(errors.MESSAGES.ER_DEVAPI_SRV_RECORDS_NOT_AVAILABLE, srvConfig.host));
});
});
});
context('when there is no DNS server available', () => {
let originalServers;
beforeEach('remove DNS servers', () => {
originalServers = dns.getServers();
dns.setServers([]);
});
afterEach('restore original list of DNS servers', () => {
dns.setServers(originalServers);
});
it('fails to connect using a configuration object', () => {
const srvConfig = Object.assign({}, config, baseConfig, { socket: undefined });
return mysqlx.getSession(srvConfig)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(util.format(errors.MESSAGES.ER_DEVAPI_SRV_RECORDS_NOT_AVAILABLE, srvConfig.host));
});
});
it('fails to connect using a connection string', () => {
const srvConfig = Object.assign({}, config, baseConfig, { socket: undefined });
const uri = `mysqlx+srv://${srvConfig.user}:${srvConfig.password}@${srvConfig.host}`;
return mysqlx.getSession(uri)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(util.format(errors.MESSAGES.ER_DEVAPI_SRV_RECORDS_NOT_AVAILABLE, srvConfig.host));
});
});
});
context('when a port is specified in the connection options', () => {
it('fails to connect using a configuration object', () => {
const srvConfig = Object.assign({}, config, baseConfig, { port: 33060, socket: undefined });
return mysqlx.getSession(srvConfig)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_SRV_LOOKUP_NO_PORT);
});
});
it('fails to connect using a connection string', () => {
const srvConfig = Object.assign({}, config, baseConfig, { port: 33060, socket: undefined });
const uri = `mysqlx+srv://${srvConfig.user}:${srvConfig.password}@${srvConfig.host}:${srvConfig.port}`;
return mysqlx.getSession(uri)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_SRV_LOOKUP_NO_PORT);
});
});
});
context('when a Unix local socket path is specified as the hostname', () => {
it('fails to connect using a configuration object', function () {
const srvConfig = Object.assign({}, config, baseConfig, { port: undefined, socket: '/path/to/unix/socket.sock' });
if (!srvConfig.socket || os.platform() === 'win32') {
this.skip();
}
return mysqlx.getSession(srvConfig)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_SRV_LOOKUP_NO_UNIX_SOCKET);
});
});
it('fails to connect using a connection string', function () {
const srvConfig = Object.assign({}, config, baseConfig, { host: undefined, port: undefined, socket: '/path/to/unix/socket.sock' });
if (!srvConfig.socket || os.platform() === 'win32') {
this.skip();
}
const uri = `mysqlx+srv://${srvConfig.user}:${srvConfig.password}@(${srvConfig.socket})`;
return mysqlx.getSession(uri)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_SRV_LOOKUP_NO_UNIX_SOCKET);
});
});
});
context('when multiple endpoints are specified in the connection options', () => {
context('with explicit priority', () => {
it('fails to connect using a configuration object', () => {
const srvConfig = Object.assign({}, config, baseConfig, { endpoints: [{ host: baseConfig.host, port: 33060, priority: 99 }, { host: baseConfig.host, port: 33061, priority: 100 }] });
return mysqlx.getSession(srvConfig)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_SRV_LOOKUP_NO_MULTIPLE_ENDPOINTS);
});
});
it('fails to connect using a connection string', () => {
const srvConfig = Object.assign({}, config, baseConfig, { port: 33060 });
const hosts = [`${srvConfig.host}:${srvConfig.port + 1}`, `${srvConfig.host}:${srvConfig.port}`];
const uri = `mysqlx+srv://${srvConfig.user}:${srvConfig.password}@[${hosts.join(', ')}]`;
return mysqlx.getSession(uri)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_SRV_LOOKUP_NO_MULTIPLE_ENDPOINTS);
});
});
});
context('without explicit priority', () => {
it('fails to connect using a configuration object', () => {
const srvConfig = Object.assign({}, config, baseConfig, { endpoints: [{ host: baseConfig.host, port: 33060 }, { host: baseConfig.host, port: 33061 }] });
return mysqlx.getSession(srvConfig)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_SRV_LOOKUP_NO_MULTIPLE_ENDPOINTS);
});
});
it('fails to connect using a connection string', () => {
const srvConfig = Object.assign({}, config);
const hosts = [`(address=${srvConfig.host}:${srvConfig.port}, priority=99), (address=${srvConfig.host}:${srvConfig.port}, priority=100)`];
const uri = `mysqlx+srv://${srvConfig.user}:${srvConfig.password}@[${hosts.join(', ')}]`;
return mysqlx.getSession(uri)
.then(() => {
return expect.fail();
})
.catch(err => {
return expect(err.message).to.equal(errors.MESSAGES.ER_DEVAPI_SRV_LOOKUP_NO_MULTIPLE_ENDPOINTS);
});
});
});
});
});