-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathcancel-query-with-abort-signal-tests.js
114 lines (95 loc) · 2.56 KB
/
cancel-query-with-abort-signal-tests.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
var helper = require('./../test-helper')
var pg = helper.pg
const Client = pg.Client
const DatabaseError = pg.DatabaseError
if (!global.AbortController) {
// Skip these tests if AbortController is not available
return
}
const suite = new helper.Suite('query cancellation with abort signal')
suite.test('query with signal succeeds if not aborted', function (done) {
const client = new Client()
const { signal } = new AbortController()
client.connect(
assert.success(() => {
client.query(
new pg.Query({ text: 'select pg_sleep(0.1)', signal }),
assert.success((result) => {
assert.equal(result.rows[0].pg_sleep, '')
client.end(done)
})
)
})
)
})
if (helper.config.native) {
// Skip these tests if native bindings are enabled
return
}
suite.test('query with signal is not submitted if the signal is already aborted', function (done) {
const client = new Client()
const signal = AbortSignal.abort()
let counter = 0
client.query(
new pg.Query({ text: 'INVALID SQL...' }),
assert.calls((err) => {
assert(err instanceof DatabaseError)
counter++
})
)
client.query(
new pg.Query({ text: 'begin' }),
assert.success(() => {
counter++
})
)
client.query(
new pg.Query({ text: 'INVALID SQL...', signal }),
assert.calls((err) => {
assert.equal(err.name, 'AbortError')
counter++
})
)
client.query(
new pg.Query({ text: 'select 1' }),
assert.success(() => {
counter++
assert.equal(counter, 4)
client.end(done)
})
)
client.connect(assert.success(() => {}))
})
suite.test('query can be canceled with abort signal', function (done) {
const client = new Client()
const ac = new AbortController()
const { signal } = ac
client.query(
new pg.Query({ text: 'SELECT pg_sleep(0.5)', signal }),
assert.calls((err) => {
assert(err instanceof DatabaseError)
assert.equal(err.code, '57014')
client.end(done)
})
)
client.connect(
assert.success(() => {
setTimeout(() => {
ac.abort()
}, 50)
})
)
})
suite.test('long abort signal timeout does not keep the query / connection going', function (done) {
const client = new Client()
const ac = new AbortController()
setTimeout(() => ac.abort(), 10000).unref()
client.query(
new pg.Query({ text: 'SELECT pg_sleep(0.1)', signal: ac.signal }),
assert.success((result) => {
assert.equal(result.rows[0].pg_sleep, '')
client.end(done)
})
)
client.connect(assert.success(() => {}))
})