forked from vapor/postgres-nio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPSQLRowStreamTests.swift
265 lines (220 loc) · 8.44 KB
/
PSQLRowStreamTests.swift
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
import Atomics
import NIOCore
import Logging
import XCTest
@testable import PostgresNIO
import NIOCore
import NIOEmbedded
final class PSQLRowStreamTests: XCTestCase {
let logger = Logger(label: "PSQLRowStreamTests")
let eventLoop = EmbeddedEventLoop()
func testEmptyStream() {
let stream = PSQLRowStream(
source: .noRows(.success("INSERT 0 1")),
eventLoop: self.eventLoop,
logger: self.logger
)
XCTAssertEqual(try stream.all().wait(), [])
XCTAssertEqual(stream.commandTag, "INSERT 0 1")
}
func testFailedStream() {
let stream = PSQLRowStream(
source: .noRows(.failure(PSQLError.serverClosedConnection(underlying: nil))),
eventLoop: self.eventLoop,
logger: self.logger
)
XCTAssertThrowsError(try stream.all().wait()) {
XCTAssertEqual($0 as? PSQLError, .serverClosedConnection(underlying: nil))
}
}
func testGetArrayAfterStreamHasFinished() {
let dataSource = CountingDataSource()
let stream = PSQLRowStream(
source: .stream(
[self.makeColumnDescription(name: "foo", dataType: .text, format: .binary)],
dataSource
),
eventLoop: self.eventLoop,
logger: self.logger
)
XCTAssertEqual(dataSource.hitDemand, 0)
XCTAssertEqual(dataSource.hitCancel, 0)
stream.receive([
[ByteBuffer(string: "0")],
[ByteBuffer(string: "1")]
])
XCTAssertEqual(dataSource.hitDemand, 0, "Before we have a consumer demand is not signaled")
stream.receive(completion: .success("SELECT 2"))
// attach consumer
let future = stream.all()
XCTAssertEqual(dataSource.hitDemand, 0) // TODO: Is this right?
var rows: [PostgresRow]?
XCTAssertNoThrow(rows = try future.wait())
XCTAssertEqual(rows?.count, 2)
}
func testGetArrayBeforeStreamHasFinished() {
let dataSource = CountingDataSource()
let stream = PSQLRowStream(
source: .stream(
[self.makeColumnDescription(name: "foo", dataType: .text, format: .binary)],
dataSource
),
eventLoop: self.eventLoop,
logger: self.logger
)
XCTAssertEqual(dataSource.hitDemand, 0)
XCTAssertEqual(dataSource.hitCancel, 0)
stream.receive([
[ByteBuffer(string: "0")],
[ByteBuffer(string: "1")]
])
XCTAssertEqual(dataSource.hitDemand, 0, "Before we have a consumer demand is not signaled")
// attach consumer
let future = stream.all()
XCTAssertEqual(dataSource.hitDemand, 1)
stream.receive([
[ByteBuffer(string: "2")],
[ByteBuffer(string: "3")]
])
XCTAssertEqual(dataSource.hitDemand, 2)
stream.receive([
[ByteBuffer(string: "4")],
[ByteBuffer(string: "5")]
])
XCTAssertEqual(dataSource.hitDemand, 3)
stream.receive(completion: .success("SELECT 2"))
var rows: [PostgresRow]?
XCTAssertNoThrow(rows = try future.wait())
XCTAssertEqual(rows?.count, 6)
}
func testOnRowAfterStreamHasFinished() {
let dataSource = CountingDataSource()
let stream = PSQLRowStream(
source: .stream(
[self.makeColumnDescription(name: "foo", dataType: .text, format: .binary)],
dataSource
),
eventLoop: self.eventLoop,
logger: self.logger
)
XCTAssertEqual(dataSource.hitDemand, 0)
XCTAssertEqual(dataSource.hitCancel, 0)
stream.receive([
[ByteBuffer(string: "0")],
[ByteBuffer(string: "1")]
])
stream.receive(completion: .success("SELECT 2"))
XCTAssertEqual(dataSource.hitDemand, 0)
// attach consumer
let counter = ManagedAtomic(0)
let future = stream.onRow { row in
let expected = counter.loadThenWrappingIncrement(ordering: .relaxed)
XCTAssertEqual(try row.decode(String.self, context: .default), "\(expected)")
}
XCTAssertEqual(counter.load(ordering: .relaxed), 2)
XCTAssertEqual(dataSource.hitDemand, 0)
XCTAssertNoThrow(try future.wait())
XCTAssertEqual(stream.commandTag, "SELECT 2")
}
func testOnRowThrowsErrorOnInitialBatch() {
let dataSource = CountingDataSource()
let stream = PSQLRowStream(
source: .stream(
[self.makeColumnDescription(name: "foo", dataType: .text, format: .binary)],
dataSource
),
eventLoop: self.eventLoop,
logger: self.logger
)
XCTAssertEqual(dataSource.hitDemand, 0)
XCTAssertEqual(dataSource.hitCancel, 0)
stream.receive([
[ByteBuffer(string: "0")],
[ByteBuffer(string: "1")],
[ByteBuffer(string: "2")],
[ByteBuffer(string: "3")],
])
stream.receive(completion: .success("SELECT 2"))
XCTAssertEqual(dataSource.hitDemand, 0)
// attach consumer
let counter = ManagedAtomic(0)
let future = stream.onRow { row in
let expected = counter.loadThenWrappingIncrement(ordering: .relaxed)
XCTAssertEqual(try row.decode(String.self, context: .default), "\(expected)")
if expected == 1 {
throw OnRowError(row: expected)
}
}
XCTAssertEqual(counter.load(ordering: .relaxed), 2) // one more than where we excited, because we already incremented
XCTAssertEqual(dataSource.hitDemand, 0)
XCTAssertThrowsError(try future.wait()) {
XCTAssertEqual($0 as? OnRowError, OnRowError(row: 1))
}
}
func testOnRowBeforeStreamHasFinished() {
let dataSource = CountingDataSource()
let stream = PSQLRowStream(
source: .stream(
[self.makeColumnDescription(name: "foo", dataType: .text, format: .binary)],
dataSource
),
eventLoop: self.eventLoop,
logger: self.logger
)
XCTAssertEqual(dataSource.hitDemand, 0)
XCTAssertEqual(dataSource.hitCancel, 0)
stream.receive([
[ByteBuffer(string: "0")],
[ByteBuffer(string: "1")]
])
XCTAssertEqual(dataSource.hitDemand, 0, "Before we have a consumer demand is not signaled")
// attach consumer
let counter = ManagedAtomic(0)
let future = stream.onRow { row in
let expected = counter.loadThenWrappingIncrement(ordering: .relaxed)
XCTAssertEqual(try row.decode(String.self, context: .default), "\(expected)")
}
XCTAssertEqual(counter.load(ordering: .relaxed), 2)
XCTAssertEqual(dataSource.hitDemand, 1)
stream.receive([
[ByteBuffer(string: "2")],
[ByteBuffer(string: "3")]
])
XCTAssertEqual(counter.load(ordering: .relaxed), 4)
XCTAssertEqual(dataSource.hitDemand, 2)
stream.receive([
[ByteBuffer(string: "4")],
[ByteBuffer(string: "5")]
])
XCTAssertEqual(counter.load(ordering: .relaxed), 6)
XCTAssertEqual(dataSource.hitDemand, 3)
stream.receive(completion: .success("SELECT 6"))
XCTAssertNoThrow(try future.wait())
XCTAssertEqual(stream.commandTag, "SELECT 6")
}
func makeColumnDescription(name: String, dataType: PostgresDataType, format: PostgresFormat) -> RowDescription.Column {
RowDescription.Column(
name: "test",
tableOID: 123,
columnAttributeNumber: 1,
dataType: .text,
dataTypeSize: -1,
dataTypeModifier: 0,
format: .binary
)
}
}
private struct OnRowError: Error, Equatable {
var row: Int
}
class CountingDataSource: PSQLRowsDataSource {
var hitDemand: Int = 0
var hitCancel: Int = 0
init() {}
func cancel(for stream: PSQLRowStream) {
self.hitCancel += 1
}
func request(for stream: PSQLRowStream) {
self.hitDemand += 1
}
}