-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathWorkflowRenderTesterTests.swift
342 lines (280 loc) · 8.42 KB
/
WorkflowRenderTesterTests.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
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
/*
* Copyright 2020 Square Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import Workflow
import WorkflowTesting
import XCTest
final class WorkflowRenderTesterTests: XCTestCase {
func test_render() {
let renderTester = TestWorkflow(initialText: "initial").renderTester()
var testedAssertion = false
renderTester
.render { screen in
XCTAssertEqual("initial", screen.text)
testedAssertion = true
}
.assert(
state: TestWorkflow.State(
text: "initial",
substate: .idle
)
)
XCTAssertTrue(testedAssertion)
}
func test_simple_render() {
let renderTester = TestWorkflow(initialText: "initial").renderTester()
renderTester
.render { screen in
XCTAssertEqual("initial", screen.text)
}
.assertNoAction()
}
func test_action() {
let renderTester = TestWorkflow(initialText: "initial").renderTester()
renderTester
.render { screen in
XCTAssertEqual("initial", screen.text)
screen.tapped()
}
.assert(
state: TestWorkflow.State(
text: "initial",
substate: .waiting
)
)
}
func test_sideEffects() {
let renderTester = SideEffectWorkflow().renderTester()
renderTester
.expectSideEffect(
key: TestSideEffectKey(),
producingAction: SideEffectWorkflow.Action.testAction
)
.render { _ in }
.assert(state: .success)
}
func test_output() {
OutputWorkflow()
.renderTester()
.render { rendering in
rendering.tapped()
}
.assert(output: .success)
}
func test_childWorkflow() {
ParentWorkflow(initialText: "hello")
.renderTester()
.expectWorkflow(
type: ChildWorkflow.self,
producingRendering: "olleh"
)
.render { rendering in
XCTAssertEqual("olleh", rendering)
}
.assertNoAction()
}
func test_childWorkflowOutput() {
// Test that a child emitting an output is handled as an action by the parent
ParentWorkflow(initialText: "hello")
.renderTester()
.expectWorkflow(
type: ChildWorkflow.self,
producingRendering: "olleh",
producingOutput: .failure
)
.render { rendering in
XCTAssertEqual("olleh", rendering)
}
.assertNoOutput()
.verifyState { state in
XCTAssertEqual("Failed", state.text)
}
}
func test_renderingWorkflow() {
WrappingWorkflow(child: AnyWorkflow(rendering: "not-called"))
.renderTester()
.expectRenderingWorkflow(producingRendering: "real")
.render { rendering in
XCTAssertEqual("->real<-", rendering)
}
.assertNoOutput()
}
}
private struct TestWorkflow: Workflow {
/// Input
var initialText: String
/// Output
enum Output: Equatable {
case first
}
struct State: Equatable {
var text: String
var substate: Substate
enum Substate: Equatable {
case idle
case waiting
}
}
func makeInitialState() -> State {
State(text: initialText, substate: .idle)
}
func render(state: State, context: RenderContext<TestWorkflow>) -> TestScreen {
let sink = context.makeSink(of: Action.self)
switch state.substate {
case .idle:
break
case .waiting:
break
}
return TestScreen(
text: state.text,
tapped: {
sink.send(.tapped)
}
)
}
}
extension TestWorkflow {
enum Action: WorkflowAction, Equatable {
typealias WorkflowType = TestWorkflow
case tapped
case asyncSuccess
func apply(toState state: inout TestWorkflow.State) -> TestWorkflow.Output? {
switch self {
case .tapped:
state.substate = .waiting
case .asyncSuccess:
state.substate = .idle
}
return nil
}
}
}
private struct OutputWorkflow: Workflow {
enum Output {
case success
case failure
}
struct State {}
func makeInitialState() -> OutputWorkflow.State {
State()
}
enum Action: WorkflowAction {
typealias WorkflowType = OutputWorkflow
case emit
func apply(toState state: inout OutputWorkflow.State) -> OutputWorkflow.Output? {
switch self {
case .emit:
return .success
}
}
}
typealias Rendering = TestScreen
func render(state: State, context: RenderContext<OutputWorkflow>) -> TestScreen {
let sink = context.makeSink(of: Action.self)
return TestScreen(text: "value", tapped: {
sink.send(.emit)
})
}
}
private struct TestSideEffectKey: Hashable {
let key: String = "Test Side Effect"
}
private struct SideEffectWorkflow: Workflow {
enum State: Equatable {
case idle
case success
}
enum Action: WorkflowAction {
case testAction
typealias WorkflowType = SideEffectWorkflow
func apply(toState state: inout SideEffectWorkflow.State) -> SideEffectWorkflow.Output? {
switch self {
case .testAction:
state = .success
}
return nil
}
}
typealias Rendering = TestScreen
func render(state: State, context: RenderContext<SideEffectWorkflow>) -> TestScreen {
context.runSideEffect(key: TestSideEffectKey()) { _ in }
return TestScreen(text: "value", tapped: {})
}
func makeInitialState() -> State {
.idle
}
}
private struct TestScreen {
var text: String
var tapped: () -> Void
}
private struct ParentWorkflow: Workflow {
typealias Output = Never
var initialText: String
struct State: Equatable {
var text: String
}
func makeInitialState() -> ParentWorkflow.State {
State(text: initialText)
}
enum Action: WorkflowAction {
typealias WorkflowType = ParentWorkflow
case childSuccess
case childFailure
func apply(toState state: inout ParentWorkflow.State) -> Never? {
switch self {
case .childSuccess:
state.text = String(state.text.reversed())
case .childFailure:
state.text = "Failed"
}
return nil
}
}
func render(state: ParentWorkflow.State, context: RenderContext<ParentWorkflow>) -> String {
ChildWorkflow(text: state.text)
.mapOutput { output -> Action in
switch output {
case .success:
return .childSuccess
case .failure:
return .childFailure
}
}
.rendered(in: context)
}
}
private struct ChildWorkflow: Workflow {
enum Output: Equatable {
case success
case failure
}
var text: String
struct State {}
func makeInitialState() -> ChildWorkflow.State {
State()
}
func render(state: ChildWorkflow.State, context: RenderContext<ChildWorkflow>) -> String {
String(text.reversed())
}
}
private struct WrappingWorkflow: Workflow {
var child: AnyWorkflow<String, Never>
typealias State = Void
func render(state: State, context: RenderContext<Self>) -> String {
"->" + child.rendered(in: context) + "<-"
}
}