mirror of
https://github.com/pointfreeco/swift-composable-architecture.git
synced 2025-12-20 09:11:33 +01:00
* `@preconcurrency @MainActor` isolation of `Store` * Remove unneeded `@MainActor`s * Remove thread checking code * Remove unneeded `@MainActor`s * Swift 5.10 compatibility fixes * wip * More 5.10 fixes * wip * fixes * wip * wip * up the timeout * wip * Fixes * Remove mainActorASAP in favor of mainActorNow. (#3288) * wip * Run swift-format * Update README.md * Fix integration tests. (#3294) * Fix integration tests. * wip * wip * Run swift-format * mainActorNow doesnt need escaping closure * wip * migration guide * wip * Update MigratingTo1.14.md --------- Co-authored-by: Brandon Williams <mbrandonw@hey.com> Co-authored-by: Brandon Williams <135203+mbrandonw@users.noreply.github.com> Co-authored-by: mbrandonw <mbrandonw@users.noreply.github.com>
149 lines
3.7 KiB
Swift
149 lines
3.7 KiB
Swift
import ComposableArchitecture
|
|
import XCTest
|
|
|
|
final class DependencyKeyWritingReducerTests: BaseTCATestCase {
|
|
func testWritingFusion() async {
|
|
let reducer: _DependencyKeyWritingReducer<Feature> = Feature()
|
|
.dependency(\.myValue, 42)
|
|
.dependency(\.myValue, 1729)
|
|
.dependency(\.myValue, 1)
|
|
.dependency(\.myValue, 2)
|
|
.dependency(\.myValue, 3)
|
|
|
|
XCTAssertTrue((reducer as Any) is _DependencyKeyWritingReducer<Feature>)
|
|
}
|
|
|
|
func testTransformFusion() async {
|
|
let reducer: _DependencyKeyWritingReducer<Feature> = Feature()
|
|
.transformDependency(\.myValue) { $0 = 42 }
|
|
.transformDependency(\.myValue) { $0 = 1729 }
|
|
.transformDependency(\.myValue) { $0 = 1 }
|
|
.transformDependency(\.myValue) { $0 = 2 }
|
|
.transformDependency(\.myValue) { $0 = 3 }
|
|
|
|
XCTAssertTrue((reducer as Any) is _DependencyKeyWritingReducer<Feature>)
|
|
}
|
|
|
|
func testWritingFusionOrder() async {
|
|
let store = await TestStore(initialState: Feature.State()) {
|
|
Feature()
|
|
.dependency(\.myValue, 42)
|
|
.dependency(\.myValue, 1729)
|
|
}
|
|
|
|
await store.send(.tap) {
|
|
$0.value = 42
|
|
}
|
|
}
|
|
|
|
func testTransformFusionOrder() async {
|
|
let store = await TestStore(initialState: Feature.State()) {
|
|
Feature()
|
|
.transformDependency(\.myValue) { $0 = 42 }
|
|
.transformDependency(\.myValue) { $0 = 1729 }
|
|
}
|
|
|
|
await store.send(.tap) {
|
|
$0.value = 42
|
|
}
|
|
}
|
|
|
|
func testWritingOrder() async {
|
|
let store = await TestStore(initialState: Feature.State()) {
|
|
CombineReducers {
|
|
Feature()
|
|
.dependency(\.myValue, 42)
|
|
}
|
|
.dependency(\.myValue, 1729)
|
|
}
|
|
|
|
await store.send(.tap) {
|
|
$0.value = 42
|
|
}
|
|
}
|
|
|
|
func testTransformOrder() async {
|
|
let store = await TestStore(initialState: Feature.State()) {
|
|
CombineReducers {
|
|
Feature()
|
|
.transformDependency(\.myValue) { $0 = 42 }
|
|
}
|
|
.transformDependency(\.myValue) { $0 = 1729 }
|
|
}
|
|
|
|
await store.send(.tap) {
|
|
$0.value = 42
|
|
}
|
|
}
|
|
|
|
@Reducer
|
|
fileprivate struct Feature_testDependency_EffectOfEffect {
|
|
struct State: Equatable { var count = 0 }
|
|
enum Action: Equatable {
|
|
case tap
|
|
case response(Int)
|
|
case otherResponse(Int)
|
|
}
|
|
@Dependency(\.myValue) var myValue
|
|
|
|
var body: some Reducer<State, Action> {
|
|
Reduce { state, action in
|
|
switch action {
|
|
case .tap:
|
|
state.count += 1
|
|
return .run { send in await send(.response(self.myValue)) }
|
|
|
|
case let .response(value):
|
|
state.count = value
|
|
return .run { send in await send(.otherResponse(self.myValue)) }
|
|
|
|
case let .otherResponse(value):
|
|
state.count = value
|
|
return .none
|
|
}
|
|
}
|
|
}
|
|
}
|
|
func testDependency_EffectOfEffect() async {
|
|
let store = await TestStore(initialState: Feature_testDependency_EffectOfEffect.State()) {
|
|
Feature_testDependency_EffectOfEffect()
|
|
.dependency(\.myValue, 42)
|
|
}
|
|
|
|
await store.send(.tap) {
|
|
$0.count = 1
|
|
}
|
|
await store.receive(.response(42)) {
|
|
$0.count = 42
|
|
}
|
|
await store.receive(.otherResponse(42))
|
|
}
|
|
}
|
|
|
|
@Reducer
|
|
private struct Feature {
|
|
@Dependency(\.myValue) var myValue
|
|
struct State: Equatable { var value = 0 }
|
|
enum Action { case tap }
|
|
var body: some Reducer<State, Action> {
|
|
Reduce { state, action in
|
|
switch action {
|
|
case .tap:
|
|
state.value = self.myValue
|
|
return .none
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
private enum MyValue: DependencyKey {
|
|
static let liveValue = 0
|
|
static let testValue = 0
|
|
}
|
|
extension DependencyValues {
|
|
var myValue: Int {
|
|
get { self[MyValue.self] }
|
|
set { self[MyValue.self] = newValue }
|
|
}
|
|
}
|