-
Notifications
You must be signed in to change notification settings - Fork 152
/
TestBufferedByteIterator.swift
208 lines (188 loc) · 5.83 KB
/
TestBufferedByteIterator.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
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift Async Algorithms open source project
//
// Copyright (c) 2022 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
//
//===----------------------------------------------------------------------===//
import XCTest
import AsyncAlgorithms
final class TestBufferedByteIterator: XCTestCase {
actor Isolated<T: Sendable> {
var value: T
init(_ value: T) {
self.value = value
}
func update(_ value: T) async {
self.value = value
}
}
func test_immediately_empty() async throws {
let reloaded = Isolated(false)
var iterator = AsyncBufferedByteIterator(capacity: 3) { buffer in
XCTAssertEqual(buffer.count, 3)
await reloaded.update(true)
return 0
}
var wasReloaded = await reloaded.value
XCTAssertFalse(wasReloaded)
let byte = try await iterator.next()
XCTAssertNil(byte)
wasReloaded = await reloaded.value
XCTAssertTrue(wasReloaded)
}
func test_one_pass() async throws {
let reloaded = Isolated(0)
var iterator = AsyncBufferedByteIterator(capacity: 3) { buffer in
XCTAssertEqual(buffer.count, 3)
let count = await reloaded.value
await reloaded.update(count + 1)
if count >= 1 {
return 0
}
buffer.copyBytes(from: [1, 2, 3])
return 3
}
var reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 0)
var byte = try await iterator.next()
XCTAssertEqual(byte, 1)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 1)
byte = try await iterator.next()
XCTAssertEqual(byte, 2)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 1)
byte = try await iterator.next()
XCTAssertEqual(byte, 3)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 1)
byte = try await iterator.next()
XCTAssertNil(byte)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 2)
byte = try await iterator.next()
XCTAssertNil(byte)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 2)
}
func test_three_pass() async throws {
let reloaded = Isolated(0)
var iterator = AsyncBufferedByteIterator(capacity: 3) { buffer in
XCTAssertEqual(buffer.count, 3)
let count = await reloaded.value
await reloaded.update(count + 1)
if count >= 3 {
return 0
}
buffer.copyBytes(from: [1, 2, 3])
return 3
}
var reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 0)
for n in 1...3 {
var byte = try await iterator.next()
XCTAssertEqual(byte, 1)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, n)
byte = try await iterator.next()
XCTAssertEqual(byte, 2)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, n)
byte = try await iterator.next()
XCTAssertEqual(byte, 3)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, n)
}
var byte = try await iterator.next()
XCTAssertNil(byte)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 4)
byte = try await iterator.next()
XCTAssertNil(byte)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 4)
}
func test_three_pass_throwing() async throws {
let reloaded = Isolated(0)
var iterator = AsyncBufferedByteIterator(capacity: 3) { buffer in
XCTAssertEqual(buffer.count, 3)
let count = await reloaded.value
await reloaded.update(count + 1)
if count >= 3 {
return 0
}
if count == 2 {
throw Failure()
}
buffer.copyBytes(from: [1, 2, 3])
return 3
}
var reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 0)
for n in 1...3 {
do {
var byte = try await iterator.next()
XCTAssertEqual(byte, 1)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, n)
byte = try await iterator.next()
XCTAssertEqual(byte, 2)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, n)
byte = try await iterator.next()
XCTAssertEqual(byte, 3)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, n)
} catch {
XCTAssertEqual(n, 3)
break
}
}
var byte = try await iterator.next()
XCTAssertNil(byte)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 3)
byte = try await iterator.next()
XCTAssertNil(byte)
reloadCount = await reloaded.value
XCTAssertEqual(reloadCount, 3)
}
func test_cancellation() async {
struct RepeatingBytes: AsyncSequence {
typealias Element = UInt8
func makeAsyncIterator() -> AsyncBufferedByteIterator {
AsyncBufferedByteIterator(capacity: 3) { buffer in
buffer.copyBytes(from: [1, 2, 3])
return 3
}
}
}
let finished = expectation(description: "finished")
let iterated = expectation(description: "iterated")
let task = Task {
var firstIteration = false
do {
for try await _ in RepeatingBytes() {
if !firstIteration {
iterated.fulfill()
firstIteration = true
}
}
XCTFail("expected to throw a cancellation error")
} catch {
if error is CancellationError {
finished.fulfill()
}
}
}
wait(for: [iterated], timeout: 1.0)
// cancellation should ensure the loop finishes
// without regards to the remaining underlying sequence
task.cancel()
wait(for: [finished], timeout: 1.0)
}
}