forked from isoos/postgresql-dart
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconnection_test.dart
454 lines (402 loc) · 11.9 KB
/
connection_test.dart
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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
// ignore_for_file: unawaited_futures
import 'dart:async';
import 'dart:io';
import 'package:postgres/postgres.dart';
import 'package:test/test.dart';
import 'docker.dart';
void main() {
withPostgresServer('connection state', (server) {
test('post-close failure', () async {
final conn = await server.newConnection();
final rs = await conn.execute('SELECT 1');
expect(rs.first.first, 1);
await conn.close();
await expectLater(
() => conn.execute('SELECT 1;'),
throwsA(isA<Exception>().having(
(e) => '$e',
'text',
contains(
'Attempting to execute query, but connection is not open.'),
)));
});
test('Connecting with ReplicationMode.none uses Extended Query Protocol',
() async {
final conn = await server.newConnection(
replicationMode: ReplicationMode.none,
);
// This would throw for ReplicationMode.logical or ReplicationMode.physical
final result = await conn.execute('select 1');
expect(result.affectedRows, equals(1));
});
test('Connect with logical ReplicationMode.logical', () async {
final conn = await server.newConnection(
replicationMode: ReplicationMode.logical,
);
expect(
await conn.execute(
'select 1',
queryMode: QueryMode.simple,
),
equals([
[1]
]),
);
});
test('IDENTIFY_SYSTEM returns system information', () async {
final conn = await server.newConnection(
replicationMode: ReplicationMode.logical,
);
// This query can only be executed in Streaming Replication Protocol
// In addition, it can only be executed using Simple Query Protocol:
// "In either physical replication or logical replication walsender mode,
// only the simple query protocol can be used."
// source and more info:
// https://www.postgresql.org/docs/current/protocol-replication.html
final result = await conn.execute(
'IDENTIFY_SYSTEM;',
queryMode: QueryMode.simple,
);
expect(result.length, 1);
expect(result.schema.columns.length, 4);
expect(result.schema.columns[0].columnName, 'systemid');
expect(result.schema.columns[1].columnName, 'timeline');
expect(result.schema.columns[2].columnName, 'xlogpos');
expect(result.schema.columns[3].columnName, 'dbname');
});
// TODO: add test for ReplicationMode.physical which requires tuning some
// settings in the pg_hba.conf
});
withPostgresServer('Connection lifecycle', initSqls: oldSchemaInit, (server) {
late Connection conn;
tearDown(() async {
await conn.close();
});
test('Connect with md5 or scram-sha-256 auth required', () async {
conn = await server.newConnection(sslMode: SslMode.disable);
expect(await conn.execute('select 1'), hasLength(1));
});
test('SSL Connect with md5 or scram-sha-256 auth required', () async {
conn = await server.newConnection(sslMode: SslMode.require);
expect(await conn.execute('select 1'), hasLength(1));
});
test('Connect with no auth required', () async {
conn = await Connection.open(
Endpoint(
host: 'localhost',
database: 'dart_test',
port: await server.port,
username: 'darttrust',
),
settings: ConnectionSettings(
sslMode: SslMode.disable,
),
);
expect(await conn.execute('select 1'), hasLength(1));
});
test('Connect with no auth throws for non trusted users', () async {
try {
conn = await Connection.open(
Endpoint(
host: 'localhost',
database: 'dart_test',
port: await server.port,
username: 'dart',
),
settings: ConnectionSettings(
sslMode: SslMode.disable,
),
);
} catch (e) {
expect(e, isA<PgException>());
expect(
(e as PgException).message,
contains('password authentication failed for user "'),
);
}
conn = await server.newConnection();
});
test('SSL Connect with no auth required', () async {
conn = await Connection.open(
Endpoint(
host: 'localhost',
database: 'dart_test',
port: await server.port,
username: 'darttrust',
),
settings: ConnectionSettings(
sslMode: SslMode.require,
),
);
expect(await conn.execute('select 1'), hasLength(1));
});
});
withPostgresServer('Successful queries over time', initSqls: oldSchemaInit,
(server) {
late Connection conn;
setUp(() async {
conn = await server.newConnection();
});
tearDown(() async {
await conn.close();
});
test(
'Issuing multiple queries and awaiting between each one successfully returns the right value',
() async {
expect(
await conn.execute('select 1'),
equals([
[1]
]));
expect(
await conn.execute('select 2'),
equals([
[2]
]));
expect(
await conn.execute('select 3'),
equals([
[3]
]));
expect(
await conn.execute('select 4'),
equals([
[4]
]));
expect(
await conn.execute('select 5'),
equals([
[5]
]));
});
test(
'Issuing multiple queries without awaiting are returned with appropriate values',
() async {
final futures = [
conn.execute('select 1'),
conn.execute('select 2'),
conn.execute('select 3'),
conn.execute('select 4'),
conn.execute('select 5'),
];
final results = await Future.wait(futures);
expect(results, [
[
[1]
],
[
[2]
],
[
[3]
],
[
[4]
],
[
[5]
]
]);
});
});
withPostgresServer('Unintended user-error situations',
initSqls: oldSchemaInit, (server) {
Connection? conn;
tearDown(() async {
await conn?.close();
});
test('Invalid password reports error, conn is closed, disables conn',
() async {
try {
await Connection.open(
Endpoint(
host: 'localhost',
database: 'dart_test',
port: await server.port,
username: 'dart',
password: 'notdart',
),
settings: ConnectionSettings(
sslMode: SslMode.disable,
),
);
expect(true, false);
} on PgException catch (e) {
expect(e.message, contains('password authentication failed'));
}
});
test('SSL Invalid password reports error, conn is closed, disables conn',
() async {
try {
await Connection.open(
Endpoint(
host: 'localhost',
database: 'dart_test',
port: await server.port,
username: 'dart',
password: 'notdart',
),
settings: ConnectionSettings(
sslMode: SslMode.require,
),
);
expect(true, false);
} on PgException catch (e) {
expect(e.message, contains('password authentication failed'));
}
});
test('A query error maintains connectivity, allows future queries',
() async {
conn = await server.newConnection();
await conn!.execute('CREATE TEMPORARY TABLE t (i int unique)');
await conn!.execute('INSERT INTO t (i) VALUES (1)');
try {
await conn!.execute('INSERT INTO t (i) VALUES (1)');
expect(true, false);
} on PgException catch (e) {
expect(e.message, contains('duplicate key value violates'));
}
await conn!.execute('INSERT INTO t (i) VALUES (2)');
});
test(
'A query error maintains connectivity, continues processing pending transactions',
() async {
conn = await server.newConnection();
await conn!.execute('CREATE TEMPORARY TABLE t (i int unique)');
await conn!.execute('INSERT INTO t (i) VALUES (1)');
final orderEnsurer = [];
// this will emit a query error
conn!.execute('INSERT INTO t (i) VALUES ()').catchError((err) {
orderEnsurer.add(1);
// ignore
return Result(rows: [], affectedRows: 0, schema: ResultSchema([]));
});
orderEnsurer.add(2);
final res = await conn!.runTx((ctx) async {
orderEnsurer.add(3);
return await ctx.execute('SELECT i FROM t');
});
orderEnsurer.add(4);
expect(res, [
[1]
]);
expect(orderEnsurer, [2, 1, 3, 4]);
});
});
withPostgresServer('Network error situations', (server) {
ServerSocket? serverSocket;
Socket? socket;
tearDown(() async {
if (serverSocket != null) {
await serverSocket!.close();
}
if (socket != null) {
await socket!.close();
}
});
test(
'Socket fails to connect reports error, disables connection for future use',
() async {
final port = await selectFreePort();
try {
await Connection.open(
Endpoint(host: 'localhost', database: 'dart_test', port: port),
settings: ConnectionSettings(
sslMode: SslMode.disable,
),
);
expect(true, false);
} on SocketException {
// ignore
}
});
test(
'SSL Socket fails to connect reports error, disables connection for future use',
() async {
final port = await selectFreePort();
try {
await Connection.open(
Endpoint(
host: 'localhost',
database: 'dart_test',
port: port,
),
settings: ConnectionSettings(
sslMode: SslMode.require,
),
);
expect(true, false);
} on SocketException {
// ignore
}
});
test(
'Connection that times out throws appropriate error and cannot be reused',
() async {
final port = await selectFreePort();
serverSocket =
await ServerSocket.bind(InternetAddress.loopbackIPv4, port);
serverSocket!.listen((s) {
socket = s;
// Don't respond on purpose
s.listen((bytes) {});
});
try {
await Connection.open(
Endpoint(
host: 'localhost',
port: port,
database: 'dart_test',
),
settings: ConnectionSettings(
connectTimeout: Duration(seconds: 2),
sslMode: SslMode.disable,
),
);
fail('unreachable');
} on TimeoutException {
// ignore
}
});
test(
'SSL Connection that times out throws appropriate error and cannot be reused',
() async {
final port = await selectFreePort();
serverSocket =
await ServerSocket.bind(InternetAddress.loopbackIPv4, port);
serverSocket!.listen((s) {
socket = s;
// Don't respond on purpose
s.listen((bytes) {});
});
try {
await Connection.open(
Endpoint(
host: 'localhost',
port: port,
database: 'dart_test',
),
settings: ConnectionSettings(
connectTimeout: Duration(seconds: 2),
sslMode: SslMode.require,
),
);
fail('unreachable');
} on TimeoutException {
// ignore
}
});
});
withPostgresServer('connection', (server) {
test('If connection is closed, do not allow .execute', () async {
final conn = await server.newConnection();
await conn.close();
try {
await conn.execute('SELECT 1');
fail('unreachable');
} on PgException catch (e) {
expect(e.toString(), contains('connection is not open'));
}
});
});
}