awaken-runtime 0.4.0

Phase-based execution engine, plugin system, and agent loop for Awaken
Documentation
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
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
use std::sync::Arc;

use awaken_contract::StateError;
use awaken_contract::contract::content::ContentBlock;
use awaken_contract::contract::inference::{
    InferenceError, LLMResponse, StopReason, StreamResult, TokenUsage,
};
use awaken_contract::contract::lifecycle::{RunStatus, StopConditionSpec};
use awaken_contract::model::Phase;

use crate::hooks::PhaseContext;
use crate::phase::{ExecutionEnv, PhaseRuntime};
use crate::plugins::{Plugin, PluginDescriptor, PluginRegistrar};
use crate::state::StateStore;

use super::*;
use crate::agent::state::RunLifecycle;

/// Plugin that registers the RunLifecycle key needed by stop condition hooks.
struct LifecycleKeyPlugin;
impl Plugin for LifecycleKeyPlugin {
    fn descriptor(&self) -> PluginDescriptor {
        PluginDescriptor {
            name: "lifecycle-key",
        }
    }
    fn register(&self, registrar: &mut PluginRegistrar) -> Result<(), StateError> {
        registrar.register_key::<RunLifecycle>(crate::state::StateKeyOptions::default())
    }
}

fn make_test_env(policies: Vec<Arc<dyn StopPolicy>>) -> (StateStore, PhaseRuntime, ExecutionEnv) {
    let store = StateStore::new();
    let runtime = PhaseRuntime::new(store.clone()).unwrap();
    store.install_plugin(LifecycleKeyPlugin).unwrap();

    // Initialize RunLifecycle to Running so Done transitions are valid
    let mut patch = crate::state::MutationBatch::new();
    patch.update::<RunLifecycle>(crate::agent::state::RunLifecycleUpdate::Start {
        run_id: "test".into(),
        updated_at: 0,
    });
    store.commit(patch).unwrap();

    let plugins: Vec<Arc<dyn Plugin>> = vec![
        Arc::new(LifecycleKeyPlugin),
        Arc::new(StopConditionPlugin::new(policies)),
    ];
    let env = ExecutionEnv::from_plugins(&plugins, &Default::default()).unwrap();
    store.register_keys(&env.key_registrations).unwrap();
    (store, runtime, env)
}

// -----------------------------------------------------------------------
// MaxRoundsPlugin tests — now check RunLifecycle state
// -----------------------------------------------------------------------

#[tokio::test]
async fn max_rounds_plugin_sets_done_after_exceeding_limit() {
    let store = StateStore::new();
    let runtime = PhaseRuntime::new(store.clone()).unwrap();
    store.install_plugin(LifecycleKeyPlugin).unwrap();

    // Initialize to Running
    let mut patch = crate::state::MutationBatch::new();
    patch.update::<RunLifecycle>(crate::agent::state::RunLifecycleUpdate::Start {
        run_id: "test".into(),
        updated_at: 0,
    });
    store.commit(patch).unwrap();

    let plugins: Vec<Arc<dyn Plugin>> = vec![
        Arc::new(LifecycleKeyPlugin),
        Arc::new(MaxRoundsPlugin::new(2)),
    ];
    let env = ExecutionEnv::from_plugins(&plugins, &Default::default()).unwrap();
    store.register_keys(&env.key_registrations).unwrap();

    // Round 1 and 2: still Running
    runtime
        .run_phase(&env, Phase::AfterInference)
        .await
        .unwrap();
    runtime
        .run_phase(&env, Phase::AfterInference)
        .await
        .unwrap();
    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Running);

    // Round 3: exceeds limit → Done
    runtime
        .run_phase(&env, Phase::AfterInference)
        .await
        .unwrap();
    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("max_rounds")
    );
}

// -----------------------------------------------------------------------
// StopPolicy unit tests
// -----------------------------------------------------------------------

fn base_stats() -> StopPolicyStats {
    StopPolicyStats {
        step_count: 0,
        total_input_tokens: 0,
        total_output_tokens: 0,
        elapsed_ms: 0,
        consecutive_errors: 0,
        last_tool_names: vec![],
        last_response_text: String::new(),
    }
}

#[test]
fn max_rounds_policy_continues_at_limit() {
    let policy = MaxRoundsPolicy::new(5);
    let stats = StopPolicyStats {
        step_count: 5,
        ..base_stats()
    };
    assert_eq!(policy.evaluate(&stats), StopDecision::Continue);
}

#[test]
fn max_rounds_policy_stops_over_limit() {
    let policy = MaxRoundsPolicy::new(5);
    let stats = StopPolicyStats {
        step_count: 6,
        ..base_stats()
    };
    assert!(
        matches!(policy.evaluate(&stats), StopDecision::Stop { code, .. } if code == "max_rounds")
    );
}

#[test]
fn token_budget_policy_continues_under_budget() {
    let policy = TokenBudgetPolicy::new(1000);
    let stats = StopPolicyStats {
        total_input_tokens: 400,
        total_output_tokens: 500,
        ..base_stats()
    };
    assert_eq!(policy.evaluate(&stats), StopDecision::Continue);
}

#[test]
fn token_budget_policy_stops_over_budget() {
    let policy = TokenBudgetPolicy::new(1000);
    let stats = StopPolicyStats {
        total_input_tokens: 600,
        total_output_tokens: 500,
        ..base_stats()
    };
    assert!(
        matches!(policy.evaluate(&stats), StopDecision::Stop { code, .. } if code == "token_budget")
    );
}

#[test]
fn timeout_policy_continues_under_limit() {
    let policy = TimeoutPolicy::new(5000);
    let stats = StopPolicyStats {
        elapsed_ms: 4999,
        ..base_stats()
    };
    assert_eq!(policy.evaluate(&stats), StopDecision::Continue);
}

#[test]
fn timeout_policy_stops_over_limit() {
    let policy = TimeoutPolicy::new(5000);
    let stats = StopPolicyStats {
        elapsed_ms: 5001,
        ..base_stats()
    };
    assert!(
        matches!(policy.evaluate(&stats), StopDecision::Stop { code, .. } if code == "timeout")
    );
}

#[test]
fn consecutive_errors_policy_continues_below_limit() {
    let policy = ConsecutiveErrorsPolicy::new(3);
    let stats = StopPolicyStats {
        consecutive_errors: 2,
        ..base_stats()
    };
    assert_eq!(policy.evaluate(&stats), StopDecision::Continue);
}

#[test]
fn consecutive_errors_policy_stops_at_limit() {
    let policy = ConsecutiveErrorsPolicy::new(3);
    let stats = StopPolicyStats {
        consecutive_errors: 3,
        ..base_stats()
    };
    assert!(
        matches!(policy.evaluate(&stats), StopDecision::Stop { code, .. } if code == "consecutive_errors")
    );
}

// -----------------------------------------------------------------------
// Multiple policies: first to fire wins
// -----------------------------------------------------------------------

#[test]
fn multiple_policies_first_stop_wins() {
    let policies: Vec<Arc<dyn StopPolicy>> = vec![
        Arc::new(MaxRoundsPolicy::new(100)),
        Arc::new(TokenBudgetPolicy::new(500)),
        Arc::new(TimeoutPolicy::new(10_000)),
    ];

    let stats = StopPolicyStats {
        step_count: 3,
        total_input_tokens: 300,
        total_output_tokens: 300,
        elapsed_ms: 1000,
        ..base_stats()
    };

    // Token budget should fire first (600 > 500), max_rounds continues (3 < 100)
    let mut result = StopDecision::Continue;
    for policy in &policies {
        let decision = policy.evaluate(&stats);
        if matches!(decision, StopDecision::Stop { .. }) {
            result = decision;
            break;
        }
    }
    assert!(matches!(result, StopDecision::Stop { code, .. } if code == "token_budget"));
}

// -----------------------------------------------------------------------
// policies_from_specs roundtrip
// -----------------------------------------------------------------------

#[test]
fn policies_from_specs_converts_known_specs() {
    let specs = vec![
        StopConditionSpec::MaxRounds { rounds: 10 },
        StopConditionSpec::Timeout { seconds: 60 },
        StopConditionSpec::TokenBudget { max_total: 50_000 },
        StopConditionSpec::ConsecutiveErrors { max: 5 },
    ];
    let policies = policies_from_specs(&specs);
    assert_eq!(policies.len(), 4);
    assert_eq!(policies[0].id(), "max_rounds");
    assert_eq!(policies[1].id(), "timeout");
    assert_eq!(policies[2].id(), "token_budget");
    assert_eq!(policies[3].id(), "consecutive_errors");
}

#[test]
fn policies_from_specs_skips_unimplemented_specs() {
    let specs = vec![
        StopConditionSpec::StopOnTool {
            tool_name: "done".into(),
        },
        StopConditionSpec::ContentMatch {
            pattern: "DONE".into(),
        },
        StopConditionSpec::LoopDetection { window: 5 },
    ];
    let policies = policies_from_specs(&specs);
    assert!(policies.is_empty());
}

#[test]
fn policies_from_specs_timeout_converts_seconds_to_ms() {
    let specs = vec![StopConditionSpec::Timeout { seconds: 30 }];
    let policies = policies_from_specs(&specs);
    let stats = StopPolicyStats {
        elapsed_ms: 30_001,
        ..base_stats()
    };
    assert!(matches!(
        policies[0].evaluate(&stats),
        StopDecision::Stop { .. }
    ));

    let stats_under = StopPolicyStats {
        elapsed_ms: 29_999,
        ..base_stats()
    };
    assert_eq!(policies[0].evaluate(&stats_under), StopDecision::Continue);
}

// -----------------------------------------------------------------------
// StopConditionPlugin integration tests
// -----------------------------------------------------------------------

fn make_llm_response_with_tokens(input: i32, output: i32) -> LLMResponse {
    LLMResponse::success(StreamResult {
        content: vec![ContentBlock::text("response")],
        tool_calls: vec![],
        usage: Some(TokenUsage {
            prompt_tokens: Some(input),
            completion_tokens: Some(output),
            total_tokens: Some(input + output),
            ..Default::default()
        }),
        stop_reason: Some(StopReason::EndTurn),
        has_incomplete_tool_calls: false,
    })
}

fn make_llm_error() -> LLMResponse {
    LLMResponse::error(InferenceError {
        error_type: "api_error".into(),
        message: "server error".into(),
        error_class: None,
    })
}

#[tokio::test]
async fn stop_condition_plugin_token_budget_fires() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(TokenBudgetPolicy::new(1000))]);

    // First call: 600 tokens, under budget
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(300, 300));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running
    );

    // Second call: adds 600 more => 1200 total, over budget → Done
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(300, 300));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("token_budget")
    );
}

#[tokio::test]
async fn stop_condition_plugin_consecutive_errors_fires() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(ConsecutiveErrorsPolicy::new(3))]);

    // 2 errors: should not fire
    for _ in 0..2 {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
            .with_llm_response(make_llm_error());
        runtime.run_phase_with_context(&env, ctx).await.unwrap();
    }
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running
    );

    // 3rd error: should fire → Done
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_error());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("consecutive_errors")
    );
}

#[tokio::test]
async fn stop_condition_plugin_success_resets_consecutive_errors() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(ConsecutiveErrorsPolicy::new(3))]);

    // 2 errors
    for _ in 0..2 {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
            .with_llm_response(make_llm_error());
        runtime.run_phase_with_context(&env, ctx).await.unwrap();
    }

    // 1 success resets the counter
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(100, 50));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    // 2 more errors: still under limit (2 < 3)
    for _ in 0..2 {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
            .with_llm_response(make_llm_error());
        runtime.run_phase_with_context(&env, ctx).await.unwrap();
    }

    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running
    );
}

// -----------------------------------------------------------------------
// Edge case: zero means unlimited (never fires)
// -----------------------------------------------------------------------

#[test]
fn max_rounds_zero_never_fires() {
    let policy = MaxRoundsPolicy::new(0);
    // Even at very high step counts, zero means unlimited
    for step in [0, 1, 100, u32::MAX] {
        let stats = StopPolicyStats {
            step_count: step,
            ..base_stats()
        };
        assert_eq!(
            policy.evaluate(&stats),
            StopDecision::Continue,
            "max_rounds(0) should never fire at step_count={}",
            step
        );
    }
}

#[test]
fn token_budget_zero_never_fires() {
    let policy = TokenBudgetPolicy::new(0);
    for tokens in [0, 1, 1_000_000, u64::MAX / 2] {
        let stats = StopPolicyStats {
            total_input_tokens: tokens,
            total_output_tokens: tokens,
            ..base_stats()
        };
        assert_eq!(
            policy.evaluate(&stats),
            StopDecision::Continue,
            "token_budget(0) should never fire at total={}",
            tokens * 2
        );
    }
}

#[test]
fn timeout_zero_never_fires() {
    let policy = TimeoutPolicy::new(0);
    for ms in [0, 1, 999_999, u64::MAX / 2] {
        let stats = StopPolicyStats {
            elapsed_ms: ms,
            ..base_stats()
        };
        assert_eq!(
            policy.evaluate(&stats),
            StopDecision::Continue,
            "timeout(0) should never fire at elapsed_ms={}",
            ms
        );
    }
}

#[test]
fn consecutive_errors_zero_never_fires() {
    let policy = ConsecutiveErrorsPolicy::new(0);
    for errs in [0, 1, 100, u32::MAX] {
        let stats = StopPolicyStats {
            consecutive_errors: errs,
            ..base_stats()
        };
        assert_eq!(
            policy.evaluate(&stats),
            StopDecision::Continue,
            "consecutive_errors(0) should never fire at consecutive_errors={}",
            errs
        );
    }
}

// -----------------------------------------------------------------------
// Multiple policies: first-stop-wins variations
// -----------------------------------------------------------------------

#[test]
fn multiple_policies_token_budget_fires_first() {
    // MaxRounds is generous (1000), but token budget is tight (500)
    let policies: Vec<Arc<dyn StopPolicy>> = vec![
        Arc::new(MaxRoundsPolicy::new(1000)),
        Arc::new(TokenBudgetPolicy::new(500)),
    ];

    let stats = StopPolicyStats {
        step_count: 2,
        total_input_tokens: 300,
        total_output_tokens: 300,
        ..base_stats()
    };

    let mut result = StopDecision::Continue;
    for policy in &policies {
        let decision = policy.evaluate(&stats);
        if matches!(decision, StopDecision::Stop { .. }) {
            result = decision;
            break;
        }
    }
    assert!(
        matches!(result, StopDecision::Stop { code, .. } if code == "token_budget"),
        "token_budget should fire before max_rounds"
    );
}

#[test]
fn multiple_policies_all_continue() {
    let policies: Vec<Arc<dyn StopPolicy>> = vec![
        Arc::new(MaxRoundsPolicy::new(100)),
        Arc::new(TokenBudgetPolicy::new(10_000)),
        Arc::new(TimeoutPolicy::new(60_000)),
        Arc::new(ConsecutiveErrorsPolicy::new(5)),
    ];

    let stats = StopPolicyStats {
        step_count: 3,
        total_input_tokens: 500,
        total_output_tokens: 500,
        elapsed_ms: 1000,
        consecutive_errors: 1,
        last_tool_names: vec![],
        last_response_text: String::new(),
    };

    for policy in &policies {
        assert_eq!(
            policy.evaluate(&stats),
            StopDecision::Continue,
            "policy '{}' should not fire",
            policy.id()
        );
    }
}

// -----------------------------------------------------------------------
// Stats derivation from context (integration with PhaseContext)
// -----------------------------------------------------------------------

#[tokio::test]
async fn stats_accumulate_tokens_across_steps() {
    let (_store, runtime, env) = make_test_env(vec![
        // Use a generous budget so it does not fire
        Arc::new(TokenBudgetPolicy::new(100_000)),
    ]);

    // Step 1: 100 input + 50 output
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(100, 50));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    // Step 2: 200 input + 150 output
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(200, 150));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    // Step 3: 300 input + 250 output
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(300, 250));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    // Now set a tight budget that the accumulated total (100+200+300 in, 50+150+250 out = 1050) exceeds
    let (store2, runtime2, env2) = make_test_env(vec![Arc::new(TokenBudgetPolicy::new(1000))]);

    // Replay the same three steps to accumulate tokens in the new hook
    for (inp, out) in [(100, 50), (200, 150), (300, 250)] {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime2.store().snapshot())
            .with_llm_response(make_llm_response_with_tokens(inp, out));
        runtime2.run_phase_with_context(&env2, ctx).await.unwrap();
    }

    let lifecycle = store2.read::<RunLifecycle>().unwrap();
    assert_eq!(
        lifecycle.status,
        RunStatus::Done,
        "accumulated tokens (1050) should exceed budget (1000)"
    );
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("token_budget")
    );
}

#[tokio::test]
async fn stats_persist_across_store_restore() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(TokenBudgetPolicy::new(100))]);

    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(60, 20));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    let persisted = store.export_persisted().unwrap();

    let (store2, runtime2, env2) = make_test_env(vec![Arc::new(TokenBudgetPolicy::new(100))]);
    store2
        .restore_persisted(persisted, awaken_contract::UnknownKeyPolicy::Error)
        .unwrap();

    let ctx = PhaseContext::new(Phase::AfterInference, runtime2.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(20, 10));
    runtime2.run_phase_with_context(&env2, ctx).await.unwrap();

    let lifecycle = store2.read::<RunLifecycle>().unwrap();
    assert_eq!(
        lifecycle.status,
        RunStatus::Done,
        "token stats should continue from restored state (80 + 30 > 100)"
    );
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("token_budget")
    );
}

#[tokio::test]
async fn stats_consecutive_errors_reset_on_success() {
    // Verify thoroughly: errors accumulate, success resets, errors must re-accumulate
    let (store, runtime, env) = make_test_env(vec![Arc::new(ConsecutiveErrorsPolicy::new(3))]);

    // 2 errors
    for _ in 0..2 {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
            .with_llm_response(make_llm_error());
        runtime.run_phase_with_context(&env, ctx).await.unwrap();
    }
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running,
        "2 errors < 3 limit"
    );

    // Success resets
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(10, 10));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running
    );

    // 2 more errors: still under limit because counter was reset
    for _ in 0..2 {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
            .with_llm_response(make_llm_error());
        runtime.run_phase_with_context(&env, ctx).await.unwrap();
    }
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running,
        "2 errors after reset < 3 limit"
    );

    // 3rd error after second reset should fire
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_error());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("consecutive_errors")
    );
}

#[tokio::test]
async fn stats_with_error_response_increments_errors() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(ConsecutiveErrorsPolicy::new(2))]);

    // First error
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_error());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running,
        "1 error < 2 limit"
    );

    // Second error should trigger
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_error());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("consecutive_errors")
    );
}

// -----------------------------------------------------------------------
// Run isolation: step counting
// -----------------------------------------------------------------------

#[tokio::test]
async fn stop_condition_does_not_fire_on_first_step() {
    // MaxRounds(1) means: stop when step_count > 1, so step 1 should continue
    let (store, runtime, env) = make_test_env(vec![Arc::new(MaxRoundsPolicy::new(1))]);

    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(10, 10));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running,
        "step_count=1 should not exceed max_rounds=1"
    );

    // Second step: step_count=2 > 1, should fire
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(10, 10));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
}

#[tokio::test]
async fn step_count_matches_internal_counter() {
    // Verify that step_count increments correctly: max_rounds(3) should fire on step 4
    let (store, runtime, env) = make_test_env(vec![Arc::new(MaxRoundsPolicy::new(3))]);

    // Steps 1, 2, 3: all should continue
    for i in 1..=3 {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
            .with_llm_response(make_llm_response_with_tokens(10, 10));
        runtime.run_phase_with_context(&env, ctx).await.unwrap();
        assert_eq!(
            store.read::<RunLifecycle>().unwrap().status,
            RunStatus::Running,
            "step {} should not exceed max_rounds=3",
            i
        );
    }

    // Step 4: step_count=4 > 3, should fire
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(10, 10));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("max_rounds")
    );
}

// -----------------------------------------------------------------------
// Migrated from uncarve: stop policy edge cases
// -----------------------------------------------------------------------

#[test]
fn max_rounds_policy_step_zero_does_not_fire() {
    let policy = MaxRoundsPolicy::new(5);
    let stats = StopPolicyStats {
        step_count: 0,
        ..base_stats()
    };
    assert_eq!(policy.evaluate(&stats), StopDecision::Continue);
}

#[test]
fn max_rounds_policy_fires_above_limit() {
    let policy = MaxRoundsPolicy::new(5);
    for step in [6, 10, 100] {
        let stats = StopPolicyStats {
            step_count: step,
            ..base_stats()
        };
        assert!(
            matches!(policy.evaluate(&stats), StopDecision::Stop { .. }),
            "should fire at step_count={}",
            step
        );
    }
}

#[test]
fn token_budget_policy_boundary_exact_at_limit() {
    let policy = TokenBudgetPolicy::new(1000);
    // Exactly at limit — should not fire (> not >=)
    let stats = StopPolicyStats {
        total_input_tokens: 500,
        total_output_tokens: 500,
        ..base_stats()
    };
    assert_eq!(
        policy.evaluate(&stats),
        StopDecision::Continue,
        "exactly at limit should continue"
    );
}

#[test]
fn token_budget_policy_fires_one_over() {
    let policy = TokenBudgetPolicy::new(1000);
    let stats = StopPolicyStats {
        total_input_tokens: 501,
        total_output_tokens: 500,
        ..base_stats()
    };
    assert!(matches!(
        policy.evaluate(&stats),
        StopDecision::Stop { code, .. } if code == "token_budget"
    ));
}

#[test]
fn timeout_policy_boundary_exact_at_limit() {
    let policy = TimeoutPolicy::new(5000);
    let stats = StopPolicyStats {
        elapsed_ms: 5000,
        ..base_stats()
    };
    assert_eq!(
        policy.evaluate(&stats),
        StopDecision::Continue,
        "exactly at limit should continue"
    );
}

#[test]
fn timeout_policy_fires_one_over() {
    let policy = TimeoutPolicy::new(5000);
    let stats = StopPolicyStats {
        elapsed_ms: 5001,
        ..base_stats()
    };
    assert!(matches!(
        policy.evaluate(&stats),
        StopDecision::Stop { code, .. } if code == "timeout"
    ));
}

#[test]
fn consecutive_errors_policy_boundary_one_below() {
    let policy = ConsecutiveErrorsPolicy::new(3);
    let stats = StopPolicyStats {
        consecutive_errors: 2,
        ..base_stats()
    };
    assert_eq!(policy.evaluate(&stats), StopDecision::Continue);
}

#[test]
fn consecutive_errors_policy_fires_above_limit() {
    let policy = ConsecutiveErrorsPolicy::new(3);
    for errs in [3, 4, 100] {
        let stats = StopPolicyStats {
            consecutive_errors: errs,
            ..base_stats()
        };
        assert!(
            matches!(policy.evaluate(&stats), StopDecision::Stop { .. }),
            "should fire at consecutive_errors={}",
            errs
        );
    }
}

#[test]
fn stop_decision_eq_and_debug() {
    let d1 = StopDecision::Continue;
    let d2 = StopDecision::Continue;
    assert_eq!(d1, d2);

    let d3 = StopDecision::Stop {
        code: "max_rounds".into(),
        detail: "exceeded 5 rounds".into(),
    };
    let d4 = StopDecision::Stop {
        code: "max_rounds".into(),
        detail: "exceeded 5 rounds".into(),
    };
    assert_eq!(d3, d4);
    assert_ne!(d1, d3);

    // Debug should not panic
    let _ = format!("{:?}", d3);
}

#[test]
fn stop_policy_stats_clone() {
    let stats = StopPolicyStats {
        step_count: 5,
        total_input_tokens: 100,
        total_output_tokens: 50,
        elapsed_ms: 1000,
        consecutive_errors: 2,
        last_tool_names: vec!["echo".into()],
        last_response_text: "hello".into(),
    };
    let cloned = stats.clone();
    assert_eq!(cloned.step_count, 5);
    assert_eq!(cloned.last_tool_names, vec!["echo"]);
}

#[test]
fn multiple_policies_max_rounds_fires_first() {
    let policies: Vec<Arc<dyn StopPolicy>> = vec![
        Arc::new(MaxRoundsPolicy::new(5)),
        Arc::new(TokenBudgetPolicy::new(100_000)),
    ];

    let stats = StopPolicyStats {
        step_count: 10,
        total_input_tokens: 50,
        total_output_tokens: 50,
        ..base_stats()
    };

    let mut result = StopDecision::Continue;
    for policy in &policies {
        let decision = policy.evaluate(&stats);
        if matches!(decision, StopDecision::Stop { .. }) {
            result = decision;
            break;
        }
    }
    assert!(
        matches!(result, StopDecision::Stop { code, .. } if code == "max_rounds"),
        "max_rounds should fire first"
    );
}

#[test]
fn multiple_policies_timeout_fires_first() {
    let policies: Vec<Arc<dyn StopPolicy>> = vec![
        Arc::new(MaxRoundsPolicy::new(1000)),
        Arc::new(TimeoutPolicy::new(5000)),
        Arc::new(TokenBudgetPolicy::new(100_000)),
    ];

    let stats = StopPolicyStats {
        step_count: 3,
        elapsed_ms: 6000,
        total_input_tokens: 100,
        total_output_tokens: 100,
        ..base_stats()
    };

    let mut result = StopDecision::Continue;
    for policy in &policies {
        let decision = policy.evaluate(&stats);
        if matches!(decision, StopDecision::Stop { .. }) {
            result = decision;
            break;
        }
    }
    assert!(
        matches!(result, StopDecision::Stop { code, .. } if code == "timeout"),
        "timeout should fire first"
    );
}

#[test]
fn policies_from_specs_mixed_known_and_unknown() {
    let specs = vec![
        StopConditionSpec::MaxRounds { rounds: 10 },
        StopConditionSpec::StopOnTool {
            tool_name: "done".into(),
        },
        StopConditionSpec::Timeout { seconds: 60 },
        StopConditionSpec::LoopDetection { window: 5 },
        StopConditionSpec::ConsecutiveErrors { max: 3 },
    ];
    let policies = policies_from_specs(&specs);
    // Only MaxRounds, Timeout, ConsecutiveErrors should be created
    assert_eq!(policies.len(), 3);
    assert_eq!(policies[0].id(), "max_rounds");
    assert_eq!(policies[1].id(), "timeout");
    assert_eq!(policies[2].id(), "consecutive_errors");
}

#[test]
fn policies_from_specs_empty_input() {
    let policies = policies_from_specs(&[]);
    assert!(policies.is_empty());
}

#[test]
fn stop_condition_spec_serialization_roundtrip() {
    let specs = vec![
        StopConditionSpec::MaxRounds { rounds: 5 },
        StopConditionSpec::Timeout { seconds: 30 },
        StopConditionSpec::TokenBudget { max_total: 1000 },
        StopConditionSpec::ConsecutiveErrors { max: 3 },
        StopConditionSpec::StopOnTool {
            tool_name: "finish".to_string(),
        },
        StopConditionSpec::ContentMatch {
            pattern: "DONE".to_string(),
        },
        StopConditionSpec::LoopDetection { window: 4 },
    ];
    for spec in specs {
        let encoded = serde_json::to_string(&spec).unwrap();
        let restored: StopConditionSpec = serde_json::from_str(&encoded).unwrap();
        assert_eq!(restored, spec);
    }
}

// -----------------------------------------------------------------------
// StopConditionPlugin integration: combined policies
// -----------------------------------------------------------------------

#[tokio::test]
async fn combined_policies_token_budget_fires_before_max_rounds() {
    let (store, runtime, env) = make_test_env(vec![
        Arc::new(MaxRoundsPolicy::new(100)),
        Arc::new(TokenBudgetPolicy::new(500)),
    ]);

    // 2 steps with 300 tokens each => 600 total > 500 budget
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(200, 100));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running,
        "first step under budget"
    );

    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(200, 100));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("token_budget")
    );
}

#[tokio::test]
async fn stop_condition_not_affected_by_empty_llm_response() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(ConsecutiveErrorsPolicy::new(3))]);

    // Run phase without LLM response (no with_llm_response)
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    // Should still be running (no error counted since no response)
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running
    );
}

#[tokio::test]
async fn max_rounds_exact_boundary_step_equals_max() {
    // MaxRounds(3): step 1, 2, 3 should continue; step 4 should fire
    let (store, runtime, env) = make_test_env(vec![Arc::new(MaxRoundsPolicy::new(3))]);

    for i in 1..=3 {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
            .with_llm_response(make_llm_response_with_tokens(10, 10));
        runtime.run_phase_with_context(&env, ctx).await.unwrap();
        assert_eq!(
            store.read::<RunLifecycle>().unwrap().status,
            RunStatus::Running,
            "step {} should continue",
            i
        );
    }

    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(10, 10));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Done,
        "step 4 should trigger stop"
    );
}

#[tokio::test]
async fn consecutive_errors_exact_threshold() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(ConsecutiveErrorsPolicy::new(1))]);

    // First error should trigger immediately
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_error());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    let lifecycle = store.read::<RunLifecycle>().unwrap();
    assert_eq!(lifecycle.status, RunStatus::Done);
    assert!(
        lifecycle
            .status_reason
            .as_ref()
            .unwrap()
            .contains("consecutive_errors")
    );
}

#[tokio::test]
async fn stop_condition_interleaved_error_success_error() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(ConsecutiveErrorsPolicy::new(2))]);

    // Error
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_error());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running
    );

    // Success resets
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tokens(10, 10));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running
    );

    // Error again
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_error());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running,
        "1 error after reset < 2 limit"
    );

    // Second consecutive error
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_error());
    runtime.run_phase_with_context(&env, ctx).await.unwrap();
    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Done,
        "2 consecutive errors should trigger"
    );
}

// -----------------------------------------------------------------------
// LLM response with tool call names
// -----------------------------------------------------------------------

fn make_llm_response_with_tool_calls(tool_names: &[&str]) -> LLMResponse {
    use awaken_contract::contract::message::ToolCall;
    LLMResponse::success(StreamResult {
        content: vec![ContentBlock::text("calling tools")],
        tool_calls: tool_names
            .iter()
            .enumerate()
            .map(|(i, name)| ToolCall::new(format!("c{}", i), *name, serde_json::json!({})))
            .collect(),
        usage: Some(TokenUsage {
            prompt_tokens: Some(50),
            completion_tokens: Some(20),
            total_tokens: Some(70),
            ..Default::default()
        }),
        stop_reason: Some(StopReason::EndTurn),
        has_incomplete_tool_calls: false,
    })
}

#[tokio::test]
async fn stop_condition_with_tool_calls_resets_errors() {
    let (store, runtime, env) = make_test_env(vec![Arc::new(ConsecutiveErrorsPolicy::new(3))]);

    // 2 errors
    for _ in 0..2 {
        let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
            .with_llm_response(make_llm_error());
        runtime.run_phase_with_context(&env, ctx).await.unwrap();
    }

    // Success with tool calls should reset
    let ctx = PhaseContext::new(Phase::AfterInference, runtime.store().snapshot())
        .with_llm_response(make_llm_response_with_tool_calls(&["echo", "search"]));
    runtime.run_phase_with_context(&env, ctx).await.unwrap();

    assert_eq!(
        store.read::<RunLifecycle>().unwrap().status,
        RunStatus::Running,
        "success with tool calls should reset errors"
    );
}

// -----------------------------------------------------------------------
// MaxRoundsPlugin convenience tests
// -----------------------------------------------------------------------

#[test]
fn max_rounds_plugin_descriptor_name() {
    let plugin = MaxRoundsPlugin::new(5);
    assert_eq!(plugin.descriptor().name, "stop-condition:max-rounds");
}

#[test]
fn stop_condition_plugin_descriptor_name() {
    let plugin = StopConditionPlugin::new(vec![]);
    assert_eq!(plugin.descriptor().name, "stop-condition");
}