|
1 | 1 | #if canImport(Testing)
|
2 |
| -import ComposableArchitecture |
3 |
| -import Testing |
| 2 | + import ComposableArchitecture |
| 3 | + import Testing |
4 | 4 |
|
5 |
| -@Suite |
6 |
| -struct EffectCancellationIsolationTests { |
7 |
| - @Test |
8 |
| - func testIsolation1() async { |
9 |
| - let store = await TestStore(initialState: Feature.State()) { |
10 |
| - Feature() |
| 5 | + @Suite |
| 6 | + struct EffectCancellationIsolationTests { |
| 7 | + @Test |
| 8 | + func testIsolation1() async { |
| 9 | + let store = await TestStore(initialState: Feature.State()) { |
| 10 | + Feature() |
| 11 | + } |
| 12 | + await store.send(.start) |
| 13 | + await store.receive(\.response) { |
| 14 | + $0.value = 42 |
| 15 | + } |
| 16 | + await store.send(.stop) |
11 | 17 | }
|
12 |
| - await store.send(.start) |
13 |
| - await store.receive(\.response) { |
14 |
| - $0.value = 42 |
| 18 | + |
| 19 | + @Test |
| 20 | + func testIsolation2() async { |
| 21 | + let store = await TestStore(initialState: Feature.State()) { |
| 22 | + Feature() |
| 23 | + } |
| 24 | + await store.send(.start) |
| 25 | + await store.receive(\.response) { |
| 26 | + $0.value = 42 |
| 27 | + } |
| 28 | + await store.send(.stop) |
15 | 29 | }
|
16 |
| - await store.send(.stop) |
17 | 30 | }
|
18 | 31 |
|
19 |
| - @Test |
20 |
| - func testIsolation2() async { |
21 |
| - let store = await TestStore(initialState: Feature.State()) { |
22 |
| - Feature() |
| 32 | + @Reducer |
| 33 | + private struct Feature { |
| 34 | + struct State: Equatable { |
| 35 | + var value = 0 |
23 | 36 | }
|
24 |
| - await store.send(.start) |
25 |
| - await store.receive(\.response) { |
26 |
| - $0.value = 42 |
| 37 | + enum Action { |
| 38 | + case response(Int) |
| 39 | + case start |
| 40 | + case stop |
27 | 41 | }
|
28 |
| - await store.send(.stop) |
29 |
| - } |
30 |
| -} |
31 |
| - |
32 |
| -@Reducer |
33 |
| -private struct Feature { |
34 |
| - struct State: Equatable { |
35 |
| - var value = 0 |
36 |
| - } |
37 |
| - enum Action { |
38 |
| - case response(Int) |
39 |
| - case start |
40 |
| - case stop |
41 |
| - } |
42 |
| - enum CancelID { case longLiving } |
43 |
| - var body: some ReducerOf<Self> { |
44 |
| - Reduce { state, action in |
45 |
| - switch action { |
46 |
| - case .response(let value): |
47 |
| - state.value = value |
48 |
| - return .none |
49 |
| - case .start: |
50 |
| - return .run { send in |
51 |
| - await send(.response(42)) |
52 |
| - try await Task.never() |
53 |
| - } |
| 42 | + enum CancelID { case longLiving } |
| 43 | + var body: some ReducerOf<Self> { |
| 44 | + Reduce { state, action in |
| 45 | + switch action { |
| 46 | + case .response(let value): |
| 47 | + state.value = value |
| 48 | + return .none |
| 49 | + case .start: |
| 50 | + return .run { send in |
| 51 | + await send(.response(42)) |
| 52 | + try await Task.never() |
| 53 | + } |
54 | 54 | .cancellable(id: CancelID.longLiving, cancelInFlight: true)
|
55 |
| - case .stop: |
56 |
| - return .cancel(id: CancelID.longLiving) |
| 55 | + case .stop: |
| 56 | + return .cancel(id: CancelID.longLiving) |
| 57 | + } |
57 | 58 | }
|
58 | 59 | }
|
59 | 60 | }
|
60 |
| -} |
61 | 61 |
|
62 | 62 | #endif
|
0 commit comments