Files
swift-composable-architectu…/Tests/ComposableArchitectureTests/DebugTests.swift
Stephen Celis 57e804f1cc Macro bonanza (#2553)
* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Silence test warnings

* wip

* wip

* wip

* update a bunch of docs

* wip

* wip

* fix

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* Kill integration tests for now

* wip

* wip

* wip

* wip

* updating docs for @Reducer macro

* replaced more Reducer protocols with @Reducer

* Fixed some broken docc references

* wip

* Some @Reducer docs

* more docs

* convert some old styles to new style

* wip

* wip

* wip

* wip

* wip

* wip

* wip

* bump

* update tutorials to use body

* update tutorials to use DML on destination state enum

* Add diagnostic

* wip

* updated a few more tests

* wip

* wip

* Add another gotcha

* wip

* wip

* wip

* fixes

* wip

* wip

* wip

* wip

* wip

* fix

* wip

* remove for now

* wip

* wip

* updated some docs

* migration guides

* more migration guide

* fix ci

* fix

* soft deprecate all apis using AnyCasePath

* wip

* Fix

* fix tests

* swift-format 509 compatibility

* wip

* wip

* Update Sources/ComposableArchitecture/Macros.swift

Co-authored-by: Mateusz Bąk <bakmatthew@icloud.com>

* wip

* wip

* update optional state case study

* remove initializer

* Don't use @State for BasicsView integration demo

* fix tests

* remove reduce diagnostics for now

* diagnose error not warning

* Update Sources/ComposableArchitecture/Macros.swift

Co-authored-by: Jesse Tipton <jesse@jessetipton.com>

* wip

* move integration tests to cron

* Revert "move integration tests to cron"

This reverts commit f9bdf2f04b.

* disable flakey tests on CI

* wip

* wip

* Revert "Revert "move integration tests to cron""

This reverts commit 66aafa7327.

* fix

* wip

* fix

---------

Co-authored-by: Brandon Williams <mbrandonw@hey.com>
Co-authored-by: Mateusz Bąk <bakmatthew@icloud.com>
Co-authored-by: Brandon Williams <135203+mbrandonw@users.noreply.github.com>
Co-authored-by: Jesse Tipton <jesse@jessetipton.com>
2023-11-13 12:57:35 -08:00

175 lines
4.1 KiB
Swift

#if DEBUG
import Combine
import CustomDump
import XCTest
@testable import ComposableArchitecture
final class DebugTests: BaseTCATestCase {
func testDebugCaseOutput() {
enum Action {
case action1(Bool, label: String)
case action2(Bool, Int, String)
case screenA(ScreenA)
enum ScreenA {
case row(index: Int, action: RowAction)
enum RowAction {
case tapped
case textChanged(query: String)
}
}
}
XCTAssertEqual(
debugCaseOutput(Action.action1(true, label: "Blob")),
"DebugTests.Action.action1(_:, label:)"
)
XCTAssertEqual(
debugCaseOutput(Action.action2(true, 1, "Blob")),
"DebugTests.Action.action2(_:, _:, _:)"
)
XCTAssertEqual(
debugCaseOutput(Action.screenA(.row(index: 1, action: .tapped))),
"DebugTests.Action.screenA(.row(index:, action: .tapped))"
)
XCTAssertEqual(
debugCaseOutput(Action.screenA(.row(index: 1, action: .textChanged(query: "Hi")))),
"DebugTests.Action.screenA(.row(index:, action: .textChanged(query:)))"
)
}
func testBindingAction() {
struct State {
@BindingState var width = 0
}
let action = BindingAction.set(\State.$width, 50)
var dump = ""
customDump(action, to: &dump)
#if swift(>=5.9)
XCTAssertEqual(
dump,
#"""
.set(\State.$width, 50)
"""#
)
#else
XCTAssertEqual(
dump,
#"""
.set(WritableKeyPath<DebugTests.State, BindingState<Int>>, 50)
"""#
)
#endif
}
func testBindingAction_Nested() {
struct Settings: Equatable {
var isEnabled = false
var description = ""
}
struct State {
@BindingState var settings = Settings()
}
let action = BindingAction.set(\State.$settings, Settings(isEnabled: true))
var dump = ""
customDump(action, to: &dump)
#if swift(>=5.9)
XCTAssertEqual(
dump,
#"""
.set(\State.$settings, DebugTests.Settings(…))
"""#
)
#else
XCTAssertEqual(
dump,
#"""
.set(WritableKeyPath<DebugTests.State, BindingState<DebugTests.Settings>>, DebugTests.Settings(…))
"""#
)
#endif
}
@MainActor
func testDebugReducer() async throws {
let logs = LockIsolated<String>("")
let printer = _ReducerPrinter<Int, Bool>(
printChange: { action, oldState, newState in
logs.withValue { _ = dump(action, to: &$0) }
}
)
let store = Store<Int, Bool>(initialState: 0) {
Reduce<Int, Bool>(internal: { state, action in
state += action ? 1 : -1
return .none
})
._printChanges(printer)
}
store.send(true)
try await Task.sleep(nanoseconds: 300_000_000)
XCTAssertNoDifference(
logs.value,
"""
- true
"""
)
}
func testDebugReducer_Order() {
let logs = LockIsolated<String>("")
let printer = _ReducerPrinter<Int, Bool>(
printChange: { action, oldState, newState in
logs.withValue { _ = dump(action, to: &$0) }
}
)
let store = Store<Int, Bool>(initialState: 0) {
Reduce<Int, Bool>(internal: { state, action in
state += action ? 1 : -1
return .run { _ in await Task.yield() }
})
._printChanges(printer)
._printChanges(printer)
._printChanges(printer)
._printChanges(printer)
}
store.send(true)
store.send(false)
store.send(true)
store.send(false)
_ = XCTWaiter.wait(for: [self.expectation(description: "wait")], timeout: 0.3)
XCTAssertNoDifference(
logs.value,
"""
- true
- true
- true
- true
- false
- false
- false
- false
- true
- true
- true
- true
- false
- false
- false
- false
"""
)
}
}
#endif