forked from CombineCommunity/CombineExt
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPassthroughRelayTests.swift
More file actions
349 lines (283 loc) · 10.8 KB
/
Copy pathPassthroughRelayTests.swift
File metadata and controls
349 lines (283 loc) · 10.8 KB
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
//
// PassthroughRelayTests.swift
// CombineExtTests
//
// Created by Shai Mishali on 15/03/2020.
// Copyright © 2020 Combine Community. All rights reserved.
//
#if !os(watchOS)
import Combine
import CombineExt
import XCTest
@available(OSX 10.15, iOS 13.0, tvOS 13.0, watchOS 6.0, *)
class PassthroughRelayTests: XCTestCase {
private var relay: PassthroughRelay<String>?
private var values = [String]()
private var subscriptions = Set<AnyCancellable>()
override func setUp() {
relay = PassthroughRelay<String>()
subscriptions = .init()
values = []
}
func testFinishesOnDeinit() {
var completed = false
relay?
.sink(
receiveCompletion: { _ in completed = true },
receiveValue: { _ in }
)
.store(in: &subscriptions)
XCTAssertFalse(completed)
relay = nil
XCTAssertTrue(completed)
}
func testNoReplay() {
relay?.accept("these")
relay?.accept("values")
relay?.accept("shouldnt")
relay?.accept("be")
relay?.accept("forwaded")
relay?
.sink(receiveValue: { self.values.append($0) })
.store(in: &subscriptions)
XCTAssertEqual(values, [])
relay?.accept("yo")
XCTAssertEqual(values, ["yo"])
relay?.accept("sup")
XCTAssertEqual(values, ["yo", "sup"])
var secondInitial: String?
_ = relay?.sink(receiveValue: { secondInitial = $0 })
XCTAssertNil(secondInitial)
}
func testVoidAccept() {
let voidRelay = PassthroughRelay<Void>()
var count = 0
voidRelay
.sink(receiveValue: { count += 1 })
.store(in: &subscriptions)
voidRelay.accept()
voidRelay.accept()
voidRelay.accept()
voidRelay.accept()
voidRelay.accept()
XCTAssertEqual(count, 5)
}
func testSubscribePublisher() {
var completed = false
relay?
.sink(
receiveCompletion: { _ in completed = true },
receiveValue: { self.values.append($0) }
)
.store(in: &subscriptions)
["1", "2", "3"]
.publisher
.subscribe(relay!)
.store(in: &subscriptions)
XCTAssertFalse(completed)
XCTAssertEqual(values, ["1", "2", "3"])
}
func testSubscribeRelay_Passthroughs() {
var completed = false
let input = PassthroughRelay<String>()
let output = PassthroughRelay<String>()
input
.subscribe(output)
.store(in: &subscriptions)
output
.sink(
receiveCompletion: { _ in completed = true },
receiveValue: { self.values.append($0) }
)
.store(in: &subscriptions)
input.accept("1")
input.accept("2")
input.accept("3")
XCTAssertFalse(completed)
XCTAssertEqual(values, ["1", "2", "3"])
}
func testSubscribeRelay_CurrentValueToPassthrough() {
var completed = false
let input = CurrentValueRelay<String>("initial")
let output = PassthroughRelay<String>()
input
.subscribe(output)
.store(in: &subscriptions)
output
.sink(
receiveCompletion: { _ in completed = true },
receiveValue: { self.values.append($0) }
)
.store(in: &subscriptions)
input.accept("1")
input.accept("2")
input.accept("3")
XCTAssertFalse(completed)
XCTAssertEqual(values, ["initial", "1", "2", "3"])
}
// MARK: - Memory Leak Tests (Issue #167, PR #168)
// There was a race condition which caused subscriptions in PassthroughRelay
// to leak. Details of the race condition are in this PR:
//
// https://github.com/CombineCommunity/CombineExt/pull/168
//
// The issue is similar to CurrentValueRelay (PR #137). The easiest way to
// reproduce the race condition is to initialize `cancellables` before `relay`.
// These tests confirm subscriptions are properly released regardless of
// initialization order.
final class StoredObject {
nonisolated(unsafe) static var storedObjectReleased = false
let value = 10
init() {
Self.storedObjectReleased = false
}
deinit {
Self.storedObjectReleased = true
}
}
final class StoredObject2 {
nonisolated(unsafe) static var storedObjectReleased = false
let value = 20
init() {
Self.storedObjectReleased = false
}
deinit {
Self.storedObjectReleased = true
}
}
func testSubscriptionIsReleasedWhenRelayIsDeallocatedAndDeclaredAfterCancellables() {
final class ContainerClass {
nonisolated(unsafe) static var receivedCompletion = false
nonisolated(unsafe) static var receivedCancel = false
// Cancellables comes before the relay
var cancellables = Set<AnyCancellable>()
let relay = PassthroughRelay<StoredObject>()
init() {
relay
.handleEvents(receiveCancel: {
Self.receivedCancel = true
})
.sink(
receiveCompletion: { _ in
Self.receivedCompletion = true
},
receiveValue: { _ in }
)
.store(in: &cancellables)
}
}
var container: ContainerClass? = ContainerClass()
XCTAssertFalse(ContainerClass.receivedCompletion)
XCTAssertFalse(ContainerClass.receivedCancel)
container = nil
XCTAssertNil(container)
// Cancellables is deallocated before the relay, so cancel is called
XCTAssertFalse(ContainerClass.receivedCompletion)
XCTAssertTrue(ContainerClass.receivedCancel)
}
func testSubscriptionIsReleasedWhenRelayIsDeallocatedAndDeclaredBeforeCancellables() {
final class ContainerClass {
nonisolated(unsafe) static var receivedCompletion = false
nonisolated(unsafe) static var receivedCancel = false
// Relay comes before cancellables
let relay = PassthroughRelay<StoredObject>()
var cancellables = Set<AnyCancellable>()
init() {
relay
.handleEvents(receiveCancel: {
Self.receivedCancel = true
})
.sink(
receiveCompletion: { _ in
Self.receivedCompletion = true
},
receiveValue: { _ in }
)
.store(in: &cancellables)
}
}
var container: ContainerClass? = ContainerClass()
XCTAssertFalse(ContainerClass.receivedCompletion)
XCTAssertFalse(ContainerClass.receivedCancel)
container = nil
XCTAssertNil(container)
// Relay is deallocated first, so completion is sent
XCTAssertTrue(ContainerClass.receivedCompletion)
XCTAssertFalse(ContainerClass.receivedCancel)
}
func testStoredObjectsAreReleasedWithWithLatestFromAndDeclaredBeforeCancellables() {
final class ContainerClass {
nonisolated(unsafe) static var receivedCompletion = false
nonisolated(unsafe) static var receivedCancel = false
// Relays come before cancellables
let relay = PassthroughRelay<StoredObject>()
let relay2 = PassthroughRelay<StoredObject2>()
var cancellables: Set<AnyCancellable>? = Set<AnyCancellable>()
init() {
relay
.withLatestFrom(relay2)
.handleEvents(receiveCancel: {
Self.receivedCancel = true
})
.sink(
receiveCompletion: { _ in
Self.receivedCompletion = true
},
receiveValue: { _ in }
)
.store(in: &cancellables!)
// Send initial values so withLatestFrom has something to work with.
relay2.accept(StoredObject2())
}
}
var container: ContainerClass? = ContainerClass()
XCTAssertFalse(ContainerClass.receivedCompletion)
XCTAssertFalse(StoredObject.storedObjectReleased)
XCTAssertFalse(StoredObject2.storedObjectReleased)
container = nil
XCTAssertTrue(StoredObject2.storedObjectReleased)
XCTAssertNil(container)
// withLatestFrom keeps the relay subscription alive until cancellables are released.
XCTAssertFalse(ContainerClass.receivedCompletion)
XCTAssertTrue(ContainerClass.receivedCancel)
}
func testStoredObjectsAreReleasedWithWithLatestFromAndDeclaredAfterCancellables() {
final class ContainerClass {
nonisolated(unsafe) static var receivedCompletion = false
nonisolated(unsafe) static var receivedCancel = false
// Cancellables comes before the relays - this is the problematic case
var cancellables: Set<AnyCancellable>? = Set<AnyCancellable>()
let relay = PassthroughRelay<StoredObject>()
let relay2 = PassthroughRelay<StoredObject2>()
init() {
relay
.withLatestFrom(relay2)
.handleEvents(receiveCancel: {
Self.receivedCancel = true
})
.sink(
receiveCompletion: { _ in
Self.receivedCompletion = true
},
receiveValue: { _ in }
)
.store(in: &cancellables!)
// Send initial values so withLatestFrom has something to work with.
relay2.accept(StoredObject2())
}
}
var container: ContainerClass? = ContainerClass()
XCTAssertFalse(ContainerClass.receivedCompletion)
XCTAssertFalse(StoredObject.storedObjectReleased)
XCTAssertFalse(StoredObject2.storedObjectReleased)
// Setting container to nil deallocates cancellables first
// This should not crash and should properly release objects
container = nil
XCTAssertTrue(StoredObject2.storedObjectReleased)
XCTAssertNil(container)
// Cancellables deallocated first, so cancel is called
XCTAssertFalse(ContainerClass.receivedCompletion)
XCTAssertTrue(ContainerClass.receivedCancel)
}
}
#endif