-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathObservableStoreTests.swift
More file actions
386 lines (350 loc) · 11.9 KB
/
Copy pathObservableStoreTests.swift
File metadata and controls
386 lines (350 loc) · 11.9 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
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
import XCTest
import Combine
import SwiftUI
@testable import ObservableStore
final class ObservableStoreTests: XCTestCase {
/// App state
struct AppModel: ModelProtocol {
enum Action: Hashable {
case increment
case delayIncrement(Double)
case setCount(Int)
case setEditor(Editor)
case createEmptyFxThatCompletesImmediately
}
/// Services like API methods go here
struct Environment {
func delayIncrement(
seconds: Double
) -> AnyPublisher<Action, Never> {
Just(Action.increment)
.delay(
for: .seconds(seconds),
scheduler: DispatchQueue.main
)
.eraseToAnyPublisher()
}
}
/// State update function
static func update(
state: AppModel,
action: Action,
environment: Environment
) -> Update<AppModel> {
switch action {
case .increment:
var model = state
model.count = model.count + 1
return Update(state: model)
case .delayIncrement(let seconds):
return Update(
state: state,
fx: environment.delayIncrement(seconds: seconds)
)
case .setCount(let count):
var model = state
model.count = count
return Update(state: model)
case .setEditor(let editor):
var model = state
model.editor = editor
return Update(state: model)
case .createEmptyFxThatCompletesImmediately:
let fx: Fx<Action> = Empty(completeImmediately: true)
.eraseToAnyPublisher()
return Update(state: state, fx: fx)
}
}
struct Editor: Hashable {
struct Input: Hashable {
var text: String = ""
var isFocused: Bool = true
}
var input = Input()
}
var count = 0
var editor = Editor()
}
struct SimpleCountView: View {
@Binding var count: Int
var body: some View {
Text("Count: \(count)")
}
}
var cancellables = Set<AnyCancellable>()
override func setUp() {
// Empty cancellables
self.cancellables = Set()
}
func testStateAdvance() throws {
let store = Store(
state: AppModel(),
environment: AppModel.Environment()
)
store.send(.increment)
DispatchQueue.main.async {
XCTAssertEqual(store.state.count, 1, "state is advanced")
}
}
/// Tests that the immediately-completing empty Fx used as the default for
/// updates get removed from the cancellables array.
///
/// Failure to remove immediately-completing fx would cause a memory leak.
func testEmptyFxRemovedOnComplete() {
let store = Store(
state: AppModel(),
environment: AppModel.Environment()
)
store.send(.increment)
store.send(.increment)
store.send(.increment)
let expectation = XCTestExpectation(
description: "cancellable removed when publisher completes"
)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
XCTAssertEqual(
store.cancellables.count,
0,
"cancellables removed when publisher completes"
)
expectation.fulfill()
}
wait(for: [expectation], timeout: 0.2)
}
/// Tests that immediately-completing Fx get removed from the cancellables.
///
/// array. Failure to remove immediately-completing fx would cause a
/// memory leak.
///
/// When you don't specify fx for an update, we default to
/// an immediately-completing `Empty` publisher, so this test is
/// technically the same as the one above. The difference is that it
/// does not rely on an implementation detail of `Update` but instead
/// tests this behavior directly, in case the implementation were to
/// change somehow.
func testEmptyFxThatCompleteImmiedatelyRemovedOnComplete() {
let store = Store(
state: AppModel(),
environment: AppModel.Environment()
)
store.send(.createEmptyFxThatCompletesImmediately)
store.send(.createEmptyFxThatCompletesImmediately)
store.send(.createEmptyFxThatCompletesImmediately)
let expectation = XCTestExpectation(
description: "cancellable removed when publisher completes"
)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
XCTAssertEqual(
store.cancellables.count,
0,
"cancellables removed when publisher completes"
)
expectation.fulfill()
}
wait(for: [expectation], timeout: 0.2)
}
func testAsyncFxRemovedOnComplete() {
let store = Store(
state: AppModel(),
environment: AppModel.Environment()
)
store.send(.delayIncrement(0.1))
store.send(.delayIncrement(0.2))
let expectation = XCTestExpectation(
description: "cancellable removed when publisher completes"
)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.3) {
XCTAssertEqual(
store.cancellables.count,
0,
"cancellables removed when publisher completes"
)
expectation.fulfill()
}
wait(for: [expectation], timeout: 0.5)
}
func testPublishedPropertyFires() throws {
let store = Store(
state: AppModel(),
environment: AppModel.Environment()
)
var count = 0
store.$state
.sink(receiveValue: { _ in
count = count + 1
})
.store(in: &cancellables)
store.send(.increment)
store.send(.increment)
store.send(.increment)
let expectation = XCTestExpectation(
description: "publisher fires when state changes"
)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
XCTAssertEqual(
count,
4,
"publisher fires when state changes"
)
expectation.fulfill()
}
wait(for: [expectation], timeout: 1)
}
func testStateOnlySetWhenNotEqual() {
let store = Store(
state: AppModel(),
environment: AppModel.Environment()
)
var count = 0
store.$state
.sink(receiveValue: { _ in
count = count + 1
})
.store(in: &cancellables)
store.send(.setCount(10))
store.send(.setCount(10))
store.send(.setCount(10))
store.send(.setCount(10))
let expectation = XCTestExpectation(
description: "publisher does not fire when state does not change"
)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
// Publisher should fire twice: once for initial state,
// once for state change.
XCTAssertEqual(
count,
2,
"publisher does not fire when state does not change"
)
expectation.fulfill()
}
wait(for: [expectation], timeout: 0.2)
}
/// Definition for app to test updates
struct TestUpdateMergeFxState: ModelProtocol {
enum Action {
case setTitleAndSubtitleViaMergeFx(
title: String,
subtitle: String
)
case setTitle(String)
case setSubtitle(String)
}
struct Environment {}
/// Update function for Fx tests (below)
static func update(
state: Self,
action: Action,
environment: Environment
) -> Update<Self> {
switch action {
case .setTitle(let title):
var model = state
model.title = title
return Update(state: model)
case .setSubtitle(let subtitle):
var model = state
model.subtitle = subtitle
return Update(state: model)
case .setTitleAndSubtitleViaMergeFx(let title, let subtitle):
let a = Just(Action.setTitle(title))
.eraseToAnyPublisher()
let b = Just(Action.setSubtitle(subtitle))
.eraseToAnyPublisher()
return Update(
state: state,
fx: a
)
.mergeFx(b)
}
}
var title: String = ""
var subtitle: String = ""
}
func testUpdateMergeFx() {
let store = Store(
state: TestUpdateMergeFxState(),
environment: TestUpdateMergeFxState.Environment()
)
store.send(
.setTitleAndSubtitleViaMergeFx(
title: "title",
subtitle: "subtitle"
)
)
let expectation = XCTestExpectation(
description: "check that update fx are merged"
)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
XCTAssertEqual(
store.state.title,
"title",
"title set"
)
XCTAssertEqual(
store.state.subtitle,
"subtitle",
"subtitle set"
)
expectation.fulfill()
}
wait(for: [expectation], timeout: 0.2)
}
func testCreateInit() throws {
let store = Store(
create: { environment in
let model = AppModel(count: 1)
let fx = Just(AppModel.Action.increment).eraseToAnyPublisher()
return Update(state: model, fx: fx)
},
environment: AppModel.Environment()
)
let expectation = XCTestExpectation(
description: "Sent fx"
)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
// Publisher should fire twice: once for initial state,
// once for state change.
XCTAssertEqual(
store.state.count,
2,
"Sent fx"
)
expectation.fulfill()
}
wait(for: [expectation], timeout: 1)
}
func testActionsPublisher() throws {
let store = Store(
state: AppModel(),
environment: AppModel.Environment()
)
var actions: [AppModel.Action] = []
store.actions
.sink(receiveValue: { action in
actions.append(action)
})
.store(in: &cancellables)
store.send(.setCount(1))
store.send(.setCount(2))
store.send(.setCount(3))
let expectation = XCTestExpectation(
description: "actions publisher fires for every action"
)
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) {
// Publisher should fire twice: once for initial state,
// once for state change.
XCTAssertEqual(
actions,
[
.setCount(1),
.setCount(2),
.setCount(3)
],
"publisher does not fire when state does not change"
)
expectation.fulfill()
}
wait(for: [expectation], timeout: 1)
}
}