
Yield Injections
FreeFacilitate safe state-machine testing with yield injections.
Free · Opens the source repo
What Yield Injections does
Yield Injections provides a structured approach to testing cooperative-yield and failure boundaries in resumable state machines. It is designed for developers working with Turso's yield injection and synthetic failure injection mechanisms, enabling safe transitions and error handling during state machine operations. The skill includes various components like YieldInjector, FailureInjector, and YieldPointMarker, which help manage the state during testing scenarios, ensuring that state machines can be paused and resumed without losing data integrity.
The core of the yield injection mechanism is built around the concept of yield points, which are defined using traits and macros. These yield points allow developers to specify where a state machine can yield control, facilitating deterministic testing of state transitions and error conditions. The skill also includes fixed unit-test injectors that can be used to simulate specific conditions during testing, making it easier to identify issues related to state management and concurrency.
This skill is particularly useful for developers involved in building complex state machines or those who require robust testing frameworks for their applications. By implementing yield injections, developers can ensure that their state machines behave predictably under various conditions, which is crucial for maintaining application reliability. The detailed guidelines provided in the skill help developers understand how to integrate yield points safely and effectively into their codebase.
In summary, Yield Injections is an essential tool for developers looking to enhance their testing capabilities with Turso's state machine framework. It offers a systematic approach to managing state transitions and error handling, ensuring that applications can gracefully handle yields and failures during execution.
When to use it
Use this skill when developing or testing state machines that require controlled yielding and failure scenarios.
When not to use it
This skill may not be suitable for simple applications that do not involve complex state management or for developers not using the Turso framework.
What you can build with it
Testing State Transitions
Use yield injections to test state transitions in complex state machines, ensuring they handle yields correctly.
Simulating Failures
Inject failure points to simulate errors during state machine operations, allowing for robust error handling testing.
Deterministic Testing
Utilize fixed injectors to create reproducible test scenarios that validate the behavior of state machines under various conditions.
How to install Yield Injections
View source1. Install with the skills CLI
npx skills add tursodatabase/turso/yield-injections --agent claude-code2. Or install it manually
Download the skill folder and drop it into ~/.claude/skills/ for all projects, or .claude/skills/ to scope it to one repo. Restart Claude Code so it picks up the new skill.
Anthropic's agentic coding CLI, and the reference implementation of Agent Skills. Drop a skill folder into ~/.claude/skills and Claude Code loads it automatically whenever a task matches the skill's description. Claude Code docs
Inside SKILL.md
Written by tursodatabaseYield Injection Guide
Yield injection is test-only infrastructure for forcing cooperative-yield or failure boundaries in resumable state machines. The implementation currently lives under core/mvcc/, but the mechanism is not MVCC semantics.
Key Files
core/mvcc/yield_points.rs: injector traits and macros.core/mvcc/yield_hooks.rs:YieldPointMarker,YieldContext,ProvidesYieldContext.core/connection.rs: per-connection injector slots andyield_instance_id_counter.core/mvcc/database/mod.rs: commit points and commit cleanup.core/mvcc/database/checkpoint_state_machine.rs: checkpoint points.core/mvcc/cursor.rs: cursor points.core/mvcc/database/tests.rs: fixed test injectors and regression examples.testing/concurrent-simulator/yield_injection.rs: simulator injector.
All hooks are behind cfg(any(test, injected_yields)); injected_yields means test_helper or simulator.
Core Model
YieldPoint { ordinal, point_count } identifies one hook in one point family. Families are #[repr(u8)] enums implementing YieldPointMarker; ordinal is source-order self as u8, and point_count comes from EnumCount.
Do not reorder existing yield-point variants. Simulator plans store raw ordinals, not names.
Why reordering matters: ordinal is self as u8, so source order is part of the deterministic schedule. If a seed planned "yield at ordinal 2", reordering can silently retarget that same seed from one conceptual hook to another. This makes CI seeds, bisects, and simulator coverage hard to reproduce. Appending a variant still changes point_count and can perturb future plans, but it preserves the meaning of existing ordinals.
Each yield-capable live object has:
instance_id: distinguishes simultaneous state machines/cursors.selection_key: stable logical-operation key used by deterministic plans.- active connection injectors:
yield_injector()andfailure_injector().
Hook Macros
inject_transition_yield!(self, Point): forStateTransitionreturningTransitionResult<T>.inject_io_yield!(self, Point): for cursor/helper functions returningIOResult<T>.inject_transition_failure!(self, Point): returnsErr(LimboError)fromStateTransition.
There is no inject_io_failure! today; failure injection only works for TransitionResult state machines.
Injected yields return Completion::new_yield(). It is already finished, but is_explicit_yield() is true, so the VDBE surfaces it as StepResult::Yield instead of continuing immediately.
New Yield-Capable Type
For a new state machine/cursor family, add all of this behind cfg(any(test, injected_yields)):
yield_instance_id: u64,
Initialize it from the connection:
yield_instance_id: connection.next_yield_instance_id(),
Implement ProvidesYieldContext:
impl ProvidesYieldContext for MyStateMachine {
fn yield_context(&self) -> YieldContext {
YieldContext::new(
self.connection.yield_injector(),
self.connection.failure_injector(),
self.yield_instance_id,
my_yield_key(self.logical_operation_id),
)
}
}
Add a family-specific *_yield_key(...) -> u64 helper. Mix stable logical identity, such as tx id/table id, with a family tag so simulator plans do not collide across families. Do not use wall-clock time, random values, allocation addresses, or incidental counters unrelated to the logical operation.
Adding A Point
Before adding a hook, prove re-entry is safe. A synthetic yield returns StepResult::Yield; the same statement/state machine may be stepped again immediately later. On re-entry, it must resume from an explicit state, not repeat non-idempotent work.
Rules:
- Mutate the state machine into the resumable state before yielding.
- Do not put a hook before a
push,insert, counter increment, lock acquisition, or cleanup action unless repeating that action is harmless or explicitly guarded by state. - If a lock/guard is held across the yield, test both resume and drop-at-yield paths.
- For abandonment tests, dropping the statement at the yield must restore invariants through Drop/abort cleanup.
- When adding a new yield point, always add it at the last position in the enum to preserve existing ordinals.
- Do not reorder variants in existing
YieldPointMarkerenums, unless absolutely required. Reordering changes the meaning of existing ordinals and can break reproducibility of CI seeds and bisects.
Checklist:
- Append a variant to the appropriate
*YieldPointenum. Do not reorder. - Place the macro after the transition that makes resume safe, or before a lock acquisition when explicitly testing lock interleavings.
- Avoid calling macros while borrowing
&mut self.state; they needself.yield_context(). - Add a deterministic test with
FixedYieldInjectororFixedFailureInjector. - If testing abandoned work, drop the statement at the yield and assert cleanup invariants.
For deeper re-entry/state-machine rules, also use async-io-model.
Fixed Unit-Test Injectors
Use fixed injectors in targeted tests:
use crate::mvcc::yield_hooks::YieldPointMarker;
conn.set_yield_injector(Some(FixedYieldInjector::new([
CommitYieldPoint::LogRecordPrepared.point(),
])));
FixedYieldInjector stores a HashSet<YieldPoint>, ignores instance_id/selection_key, and consumes each configured point once total. If two simultaneous instances hit the same point, the first one consumes it.
FixedFailureInjector behaves similarly but maps one point to one LimboError.
Clear injectors when reusing the same connection:
conn.set_yield_injector(None);
conn.set_failure_injector(None);
Common Test Targets
- Commit
LogRecordPrepared: leave commit inPreparing, interleave another writer/checkpoint, or drop the statement. - Commit
BeforeCommittedTimestampWatermarkUpdate: test out-of-order completion and monotonic watermarks. - Commit
BeforeFinishCommittedTx: test abandonment after committed state but before final cleanup. - Commit
AfterRemoveTxfailure: verify tx maps, connection tx slots, locks, and exclusive tx atomics are not stranded. - Checkpoint
BeforeAcquireLock: interleave before checkpoint boundary sampling. - Checkpoint
AfterDurableBoundaryAdvancedfailure: test retry/recovery after durable state advanced. - Cursor
NextStartorSeekStart: test cursor re-entry and dropped-statement cleanup, especially rowid allocator locks.
Abandoned commit tests rely on cleanup paths: CommitStateMachine::drop calls cleanup_unfinished_commit, and abort-side cleanup runs through cleanup_abandoned_mvcc_commit.
Simulator Use
The concurrent simulator owns randomized deterministic injection. Do not install FixedYieldInjector from simulator code.
Runtime:
- Each fiber owns an
Arc<SimulatorYieldInjector>for the current operation. - Operation init replaces it with
SimulatorYieldInjector::new(fiber_yield_seed(seed, fiber_idx)). - Every
stmt.step()goes throughstep_stmt_with_injected_yield, which installs the injector, steps once, then clears it via RAII.
Planning:
- Plans are keyed by
(instance_id, selection_key, point_count). MAX_YIELDS = 20.- For each key, the simulator chooses a random count in
0..=MAX_YIELDS; zero injected yields is valid. - It fills that many slots with random ordinals in
0..point_count. - Matching slots are consumed once; duplicate ordinals let the same hook fire multiple times.
Simulator reproducibility:
- Same top-level seed and fiber count are required to reproduce a schedule.
- Reordering variants changes ordinal meaning.
- Adding variants changes
point_count, which can perturb future schedules for the same seed. - Changing hook placement or fiber assignment can make the same seed explore a different schedule.
Gotchas
- Do not add test-only ad hoc
Completion::new_yield()if a yield point can express the interleaving. Runtime lock-contention yields are fine when semantics require them. - Do not place a hook before state is updated to the resumable state.
set_yield_injector(Some(...))asserts the slot is empty;set_yield_injector(None)asserts it is installed.- Do not rely on exact simulator yield counts outside
SimulatorYieldInjectortests.
Frequently asked questions about Yield Injections
Similar skills
Spring Boot Testing
Master testing techniques for Spring Boot 4 applications.
GitHub Issues
Manage GitHub issues efficiently with MCP tools.
Geofeed Tuner
Optimize your IP geolocation feeds in CSV format.
Batch Files
Master Windows batch scripting for automation and task management.
Adobe Illustrator Scripting
Automate your Illustrator workflows with ExtendScript.
Plugin Structure
Create and organize Claude Code plugins effectively.
