harn-serve 0.10.122

Shared outbound workflow server core for Harn adapters
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
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
use super::protocol::server_with_api_key_policy;
use super::*;

mod terminal_projection;
mod tool_call_artifacts;

async fn collect_task_stream_until_terminal(
    mut rx: UnboundedReceiver<JsonValue>,
) -> Vec<JsonValue> {
    let mut events = Vec::new();
    loop {
        let event = tokio::time::timeout(std::time::Duration::from_secs(2), rx.next())
            .await
            .unwrap_or_else(|_| {
                panic!(
                    "timed out waiting for stream event: {}",
                    events_json(&events)
                )
            });
        let Some(event) = event else {
            break;
        };
        let terminal = event
            .pointer("/result/status/state")
            .and_then(JsonValue::as_str)
            .is_some_and(is_terminal_status);
        events.push(event);
        if terminal {
            break;
        }
    }
    events
}

fn is_terminal_status(status: &str) -> bool {
    matches!(status, "completed" | "failed" | "cancelled" | "rejected")
}

fn events_json(events: &[JsonValue]) -> String {
    serde_json::to_string_pretty(events).unwrap_or_else(|_| "<unprintable events>".to_string())
}

fn is_progress_status_update(event: &JsonValue) -> bool {
    event.pointer("/result/kind").and_then(JsonValue::as_str) == Some("status-update")
}

#[tokio::test]
async fn send_message_dispatches_to_shared_core_export() {
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r"
pub fn triage(task: string) -> string {
  return task
}
",
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "1",
        "message/send",
        json!({
            "message": {
                "metadata": {"target_agent": "triage"},
                "parts": [{"type": "text", "text": "hello"}]
            }
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Json(response) = processed.outcome else {
        panic!("expected json response");
    };

    assert_eq!(response["result"]["status"]["state"], "completed");
    assert_eq!(
        response["result"]["history"][1]["parts"][0]["text"],
        "hello"
    );
}

#[tokio::test]
async fn send_message_threads_actor_chain_into_task_and_session() {
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r#"
pub fn actor_chain(harness: Harness, task: string) -> string {
  let chain = harness.agent.actor_chain()
  return chain.sub + "|" + chain.act.sub + "|" + chain.act.act.sub
}
"#,
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "actor-chain-1",
        "message/send",
        json!({
            "message": {
                "metadata": {
                    "target_agent": "actor_chain",
                    "actor_chain": {
                        "sub": "user:kenneth",
                        "act": {"sub": "agent:caller"}
                    }
                },
                "parts": [{"type": "text", "text": "hello"}]
            }
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Json(response) = processed.outcome else {
        panic!("expected json response");
    };

    assert_eq!(response["result"]["status"]["state"], "completed");
    assert_eq!(
        response["result"]["metadata"]["actor_chain"],
        json!({"sub": "user:kenneth", "act": {"sub": "agent:caller"}}),
    );
    assert_eq!(
        response["result"]["metadata"]["harn"]["actor_chain"],
        response["result"]["metadata"]["actor_chain"],
    );
    assert_eq!(
        response["result"]["history"][1]["parts"][0]["text"],
        "user:kenneth|server|agent:caller",
    );
}

#[tokio::test]
async fn send_message_rejects_invalid_actor_chain_metadata() {
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r"
pub fn triage(task: string) -> string {
  return task
}
",
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "actor-chain-invalid",
        "message/send",
        json!({
            "message": {
                "metadata": {
                    "target_agent": "triage",
                    "actor_chain": {"act": {"sub": "agent:caller"}}
                },
                "parts": [{"type": "text", "text": "hello"}]
            }
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Json(response) = processed.outcome else {
        panic!("expected json response");
    };

    assert_eq!(response["error"]["code"], -32602);
    assert!(response["error"]["message"]
        .as_str()
        .is_some_and(|message| message.contains("actor_chain metadata is invalid")));
}

#[tokio::test]
async fn send_message_round_trips_file_and_data_parts() {
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r"
pub fn triage(message: dict) -> dict {
  return message
}
",
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "parts-1",
        "message/send",
        json!({
            "message": {
                "metadata": {"target_agent": "triage"},
                "parts": [
                    {"type": "text", "text": "inspect attachments"},
                    {
                        "type": "file",
                        "file": {
                            "bytes": "AAEC/w==",
                            "mimeType": "application/octet-stream",
                            "name": "payload.bin"
                        }
                    },
                    {
                        "kind": "file",
                        "file": {
                            "uri": "https://example.test/report.pdf",
                            "mimeType": "application/pdf",
                            "name": "report.pdf"
                        }
                    },
                    {
                        "type": "data",
                        "data": {"ticket": "HARN-891", "priority": 2}
                    }
                ]
            }
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Json(response) = processed.outcome else {
        panic!("expected json response");
    };

    assert_eq!(response["result"]["status"]["state"], "completed");
    let user_parts = response["result"]["history"][0]["parts"]
        .as_array()
        .expect("user parts");
    assert_eq!(user_parts[1]["type"], "file");
    assert_eq!(user_parts[1]["file"]["bytes"], "AAEC/w==");
    assert_eq!(
        user_parts[2]["file"]["uri"],
        "https://example.test/report.pdf"
    );
    assert_eq!(user_parts[3]["type"], "data");
    assert_eq!(user_parts[3]["data"]["ticket"], "HARN-891");

    let agent_parts = response["result"]["history"][1]["parts"]
        .as_array()
        .expect("agent parts");
    assert_eq!(agent_parts, user_parts);
    assert!(response["result"]["artifacts"]
        .as_array()
        .expect("artifacts")
        .iter()
        .any(|artifact| artifact["parts"][0]["type"] == "file"));
}

#[test]
fn response_artifacts_emit_file_and_data_parts() {
    let response = json!({
        "visible_text": "done",
        "artifacts": [
            {
                "_type": "artifact",
                "id": "artifact_file",
                "kind": "file",
                "title": "payload.bin",
                "data": {
                    "bytes": "AAEC/w==",
                    "mimeType": "application/octet-stream",
                    "name": "payload.bin"
                }
            },
            {
                "_type": "artifact",
                "id": "artifact_data",
                "kind": "data",
                "data": {"answer": 42}
            }
        ]
    });

    let parts = super::response_parts(&response);
    assert_eq!(parts[0], json!({"type": "text", "text": "done"}));
    assert_eq!(parts[1]["type"], "file");
    assert_eq!(parts[1]["file"]["bytes"], "AAEC/w==");
    assert_eq!(parts[1]["file"]["mimeType"], "application/octet-stream");
    assert_eq!(parts[2]["type"], "data");
    assert_eq!(parts[2]["data"]["answer"], 42);

    let artifacts = super::response_artifacts(&response, &parts);
    assert_eq!(artifacts[0]["artifactId"], "artifact_file");
    assert_eq!(artifacts[0]["parts"][0]["type"], "file");
    assert_eq!(artifacts[1]["parts"][0]["type"], "data");
}

#[tokio::test]
async fn send_message_surfaces_handoff_metadata() {
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r#"
import "std/agents"

pub fn triage(harness: Harness, task: string) -> dict {
  let review = handoff({
    source_persona: "merge_captain",
    target_persona_or_human: {
      kind: "persona",
      id: "review_captain",
      label: "review_captain"
    },
    task: task,
    reason: "Need explicit code review before merge",
    evidence_refs: [{artifact_id: "artifact_diff", label: "Patch summary"}],
    files_or_entities_touched: ["crates/harn-vm/src/orchestration/handoffs.rs"],
    open_questions: ["Is the side-effect budget acceptable?"],
    blocked_on: ["review_captain approval"],
    requested_capabilities: ["review", "comment"],
    allowed_side_effects: ["comment_on_pr"],
    budget_remaining: {tokens: 900, tool_calls: 2},
    deadline_checkback: {checkback_at: "2026-04-24T10:00:00Z"},
    confidence: 0.74
  })
  return workflow_result_run(
    harness.obs,
    task,
    "triage",
    {visible_text: "handoff ready"},
    [handoff_artifact(review)],
    {}
  )
}
"#,
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "handoff-1",
        "message/send",
        json!({
            "message": {
                "metadata": {"target_agent": "triage"},
                "parts": [{"type": "text", "text": "Review PR #461"}]
            }
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Json(response) = processed.outcome else {
        panic!("expected json response");
    };

    assert_eq!(response["result"]["status"]["state"], "completed");
    assert!(response["result"]["metadata"]["handoff_ids"][0]
        .as_str()
        .is_some_and(|value| !value.is_empty()));
    assert_eq!(
        response["result"]["metadata"]["handoffs"][0]["source_persona"],
        "merge_captain"
    );
    assert_eq!(
        response["result"]["metadata"]["handoffs"][0]["target_persona_or_human"]["label"],
        "review_captain"
    );
}

#[tokio::test]
async fn streaming_send_and_resubscribe_replay_task_events() {
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r"
pub fn triage(task: string) -> string {
  return task
}
",
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "stream-1",
        "message/stream",
        json!({
            "function": "triage",
            "message": {
                "parts": [{"type": "text", "text": "stream me"}]
            }
        }),
    );

    let processed = server
        .clone()
        .process_rpc(request, AuthRequest::default())
        .await;
    let RpcOutcome::Sse(rx) = processed.outcome else {
        panic!("expected sse response");
    };
    let events = collect_task_stream_until_terminal(rx).await;

    let task_id = events[0]["result"]["taskId"].as_str().expect("task id");
    assert!(events.iter().any(|event| {
        event
            .pointer("/result/status/state")
            .and_then(JsonValue::as_str)
            == Some("working")
    }));
    assert!(events.iter().any(|event| {
        event
            .pointer("/result/message/parts/0/text")
            .and_then(JsonValue::as_str)
            == Some("stream me")
    }));

    let resubscribe =
        harn_vm::jsonrpc::request("resub-1", "tasks/resubscribe", json!({"id": task_id}));
    let processed = server
        .process_rpc(resubscribe, AuthRequest::default())
        .await;
    let RpcOutcome::Sse(replay_rx) = processed.outcome else {
        panic!("expected replay stream");
    };
    let replayed = replay_rx.collect::<Vec<_>>().await;
    assert!(replayed.iter().any(|event| {
        event
            .pointer("/result/status/state")
            .and_then(JsonValue::as_str)
            == Some("completed")
    }));
}

#[tokio::test]
async fn streaming_agent_progress_emits_status_update_before_completion() {
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r#"
import { agent_progress } from "std/agent/progress"

pub fn triage(harness: Harness, task: string) -> string {
  agent_progress(harness.agent, {
    message: "Agent is checking progress.",
    entries: [
      {content: "Inspect code.", status: "completed", priority: "high"},
      {content: "Run A2A stream.", status: "in_progress"},
    ],
  })
  return task
}
"#,
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "stream-progress-1",
        "message/stream",
        json!({
            "function": "triage",
            "message": {
                "parts": [{"type": "text", "text": "stream progress"}]
            }
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Sse(rx) = processed.outcome else {
        panic!("expected sse response");
    };
    let events = collect_task_stream_until_terminal(rx).await;

    let progress_count = events
        .iter()
        .filter(|event| is_progress_status_update(event))
        .count();
    assert_eq!(
        progress_count,
        1,
        "progress must stream exactly once: {}",
        events_json(&events)
    );
    let progress_index = events
        .iter()
        .position(is_progress_status_update)
        .unwrap_or_else(|| panic!("progress status update missing: {}", events_json(&events)));
    let completed_index = events
        .iter()
        .position(|event| {
            event
                .pointer("/result/status/state")
                .and_then(JsonValue::as_str)
                == Some("completed")
        })
        .unwrap_or_else(|| panic!("completion status update missing: {}", events_json(&events)));
    assert!(
        progress_index < completed_index,
        "progress must stream before completion: {}",
        events_json(&events)
    );
    let progress = &events[progress_index];
    assert_eq!(
        progress.pointer("/result/type").and_then(JsonValue::as_str),
        Some("status")
    );
    assert_eq!(
        progress
            .pointer("/result/status/state")
            .and_then(JsonValue::as_str),
        Some("working")
    );
    assert_eq!(
        progress
            .pointer("/result/final")
            .and_then(JsonValue::as_bool),
        Some(false)
    );
    assert_eq!(
        progress
            .pointer("/result/status/message/parts/0/text")
            .and_then(JsonValue::as_str),
        Some(
            "Agent is checking progress.\n\nPlan:\n- [x] Inspect code. (priority: high)\n- [ ] Run A2A stream. (in progress)"
        )
    );
}

#[derive(Clone)]
struct ClearCurrentSessionSinksConfigurator;

impl crate::VmConfigurator for ClearCurrentSessionSinksConfigurator {
    fn configure(&self, vm: &mut harn_vm::Vm) -> Result<(), crate::DispatchError> {
        vm.register_builtin("__test_clear_current_session_sinks", |_args, _out| {
            if let Some(session_id) = harn_vm::agent_sessions::current_session_id() {
                harn_vm::agent_events::clear_session_sinks(&session_id);
            }
            Ok(harn_vm::VmValue::Nil)
        });
        Ok(())
    }
}

#[tokio::test]
async fn streaming_agent_progress_survives_global_session_sink_clear() {
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r#"
import { agent_progress } from "std/agent/progress"

pub fn triage(harness: Harness, task: string) -> string {
  __test_clear_current_session_sinks()
  agent_progress(harness.agent, {message: "Still streaming after registry cleanup."})
  return task
}
"#,
    )
    .expect("write script");
    let mut config = DispatchCoreConfig::for_script(&script);
    config.vm_configurator = Arc::new(ClearCurrentSessionSinksConfigurator);
    let core = DispatchCore::new(config).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "stream-progress-reset-1",
        "message/stream",
        json!({
            "function": "triage",
            "message": {
                "parts": [{"type": "text", "text": "stream after reset"}]
            }
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Sse(rx) = processed.outcome else {
        panic!("expected sse response");
    };
    let events = collect_task_stream_until_terminal(rx).await;

    let progress_count = events
        .iter()
        .filter(|event| is_progress_status_update(event))
        .count();
    assert_eq!(
        progress_count,
        1,
        "progress must stream exactly once: {}",
        events_json(&events)
    );
    let progress = events
        .iter()
        .find(|event| is_progress_status_update(event))
        .unwrap_or_else(|| panic!("progress status update missing: {}", events_json(&events)));
    assert_eq!(
        progress
            .pointer("/result/status/message/parts/0/text")
            .and_then(JsonValue::as_str),
        Some("Still streaming after registry cleanup.")
    );
}

#[test]
fn signed_card_adds_signature_envelope() {
    let mut card = json!({"id": "agent", "skills": []});
    sign_card(&mut card, "secret");

    assert!(card["signatures"][0]["protected"].as_str().unwrap().len() > 16);
    assert!(card["signatures"][0]["signature"].as_str().unwrap().len() > 16);
}

use harn_vm::agent_events::AgentEventSink as _;

#[test]
fn a2a_worker_sink_publishes_worker_update_to_task_stream() {
    // The per-task `AgentEventSink` translates canonical worker lifecycle into
    // `worker_update`. This is the A2A side of the ACP/A2A parity
    // contract — same canonical AgentEvent, mapped onto each
    // protocol's wire shape from a single source.
    let task_id = "task-1".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: None,
        status: TaskStatus::Working,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::WorkerUpdate {
        session_id: super::a2a_worker_session_id(&task_id),
        worker_id: "worker-9".into(),
        worker_name: "review".into(),
        worker_task: "review pr".into(),
        worker_mode: "delegated_stage".into(),
        event: harn_vm::agent_events::WorkerEvent::WorkerWaitingForInput,
        status: "awaiting_input".into(),
        metadata: serde_json::json!({"awaiting_started_at": "0193..."}),
        audit: Some(serde_json::json!({"run_id": "run_x"})),
    });

    // Chat chunks are ignored — the sink is intentionally narrow so
    // task-stream extension events don't duplicate task history.
    sink.handle_event(&harn_vm::agent_events::AgentEvent::AgentMessageChunk {
        session_id: super::a2a_worker_session_id(&task_id),
        content: "ignored".into(),
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    let worker_events: Vec<&JsonValue> = task
        .events
        .iter()
        .filter(|event| event.get("type").and_then(JsonValue::as_str) == Some("worker_update"))
        .collect();
    assert_eq!(worker_events.len(), 1, "events: {:?}", task.events);
    let event = worker_events[0];
    assert_eq!(event["taskId"], task_id);
    assert_eq!(event["workerId"], "worker-9");
    assert_eq!(event["status"], "awaiting_input");
    assert_eq!(event["terminal"], false);
    assert_eq!(event["audit"]["run_id"], "run_x");
}

#[test]
fn a2a_worker_sink_publishes_progress_as_status_update() {
    let task_id = "task-progress".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: Some("ctx-progress".to_string()),
        status: TaskStatus::Working,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::ProgressReported {
        session_id: super::a2a_worker_session_id(&task_id),
        message: Some("Patched stdlib API.".to_string()),
        entries: serde_json::json!([
            {"content": "Implement progress helper.", "status": "completed", "priority": "high"},
            {"content": "Run conformance.", "status": "in_progress"}
        ]),
        replace: true,
        metadata: serde_json::json!({"source": "agent_progress"}),
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    assert_eq!(task.status, TaskStatus::Working);
    let event = task
        .events
        .iter()
        .find(|event| event.get("kind").and_then(JsonValue::as_str) == Some("status-update"))
        .expect("status-update event");
    assert_eq!(event["type"], "status");
    assert_eq!(event["taskId"], task_id);
    assert_eq!(event["contextId"], "ctx-progress");
    assert_eq!(event["final"], false);
    assert_eq!(event["status"]["state"], "working");
    assert!(event["status"]["message"]["id"].is_string());
    assert_eq!(event["status"]["message"]["role"], "agent");
    assert_eq!(event["status"]["message"]["parts"][0]["kind"], "text");
    assert_eq!(event["status"]["message"]["parts"][0]["type"], "text");
    assert_eq!(
        event["status"]["message"]["parts"][0]["text"],
        "Patched stdlib API.\n\nPlan:\n- [x] Implement progress helper. (priority: high)\n- [ ] Run conformance. (in progress)"
    );
}

#[test]
fn a2a_worker_sink_publishes_message_only_progress_status() {
    let task_id = "task-progress-message".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: None,
        status: TaskStatus::Working,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::ProgressReported {
        session_id: super::a2a_worker_session_id(&task_id),
        message: Some("Working through verification.".to_string()),
        entries: serde_json::json!([]),
        replace: true,
        metadata: serde_json::json!({}),
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    let event = task
        .events
        .iter()
        .find(|event| event.get("kind").and_then(JsonValue::as_str) == Some("status-update"))
        .expect("status-update event");
    assert_eq!(event["status"]["state"], "working");
    assert_eq!(
        event["status"]["message"]["parts"][0]["text"],
        "Working through verification."
    );
    assert!(event.get("contextId").is_none());
}

#[test]
fn a2a_worker_sink_does_not_override_terminal_task_with_progress() {
    let task_id = "task-progress-terminal".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: None,
        status: TaskStatus::Completed,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::ProgressReported {
        session_id: super::a2a_worker_session_id(&task_id),
        message: Some("This should not revive the task.".to_string()),
        entries: serde_json::json!([
            {"content": "Ignored progress.", "status": "in_progress"}
        ]),
        replace: true,
        metadata: serde_json::json!({}),
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    assert_eq!(task.status, TaskStatus::Completed);
    assert!(
        task.events.is_empty(),
        "terminal task should not publish progress events: {:?}",
        task.events
    );
}

#[tokio::test(flavor = "current_thread")]
async fn worker_event_emitted_during_dispatch_streams_to_task_subscribers() {
    // End-to-end: a Harn function that emits a `WorkerUpdate`
    // through the canonical sink registry must surface as a task
    // event on the A2A SSE stream. This is the integration that
    // closes harn#703's A2A leg — verifying the dispatch wraps
    // execution in the agent-session id the sink subscribes to.
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r"
pub fn run(task: string) -> string {
  return task
}
",
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));

    let task_id = "task-stream-worker".to_string();
    let session_id = super::a2a_worker_session_id(&task_id);
    // Pre-stage a task so the A2aWorkerSink has somewhere to
    // deliver. Subscribe before emitting so the SSE channel
    // captures the event live.
    {
        let mut tasks = server.tasks.lock().expect("tasks");
        tasks.insert(
            task_id.clone(),
            TaskState {
                id: task_id.clone(),
                context_id: None,
                status: TaskStatus::Working,
                history: Vec::new(),
                artifacts: Vec::new(),
                metadata: BTreeMap::new(),
                events: Vec::new(),
                subscribers: Vec::new(),
                cancel_token: None,
            },
        );
    }
    let mut subscriber = server.subscribe(&task_id).expect("subscriber");
    let sink: Arc<dyn harn_vm::agent_events::AgentEventSink> = Arc::new(super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: server.tasks.clone(),
    });
    harn_vm::agent_events::register_sink(session_id.clone(), sink);
    let _sink_cleanup = SessionSinkCleanup(session_id.clone());
    // Push the session so emit_event routes correctly even though
    // we're not going through the full dispatch wrapper here. In
    // production, `invoke_function` does this via the
    // `agent_session_id` request field.
    harn_vm::agent_sessions::open_or_create(Some(session_id.clone()));
    let _guard = harn_vm::agent_sessions::enter_current_session(session_id.clone());

    harn_vm::agent_events::emit_event(&harn_vm::agent_events::AgentEvent::WorkerUpdate {
        session_id: session_id.clone(),
        worker_id: "w-1".into(),
        worker_name: "review".into(),
        worker_task: "review pr".into(),
        worker_mode: "delegated_stage".into(),
        event: harn_vm::agent_events::WorkerEvent::WorkerCompleted,
        status: "completed".into(),
        metadata: serde_json::json!({"finished_at": "0193..."}),
        audit: None,
    });

    let event = tokio::time::timeout(std::time::Duration::from_secs(2), subscriber.next())
        .await
        .expect("worker event emitted")
        .expect("subscriber stream open");
    assert_eq!(
        event.pointer("/result/type").and_then(JsonValue::as_str),
        Some("worker_update"),
        "got: {event}"
    );
    assert_eq!(
        event.pointer("/result/event").and_then(JsonValue::as_str),
        Some("WorkerCompleted")
    );
    assert_eq!(
        event.pointer("/result/status").and_then(JsonValue::as_str),
        Some("completed")
    );
    assert_eq!(
        event
            .pointer("/result/terminal")
            .and_then(JsonValue::as_bool),
        Some(true)
    );
}

struct SessionSinkCleanup(String);

impl Drop for SessionSinkCleanup {
    fn drop(&mut self) {
        harn_vm::agent_events::clear_session_sinks(&self.0);
    }
}

#[test]
fn task_status_renders_a2a_0_3_0_state_strings() {
    // The wire-level state names follow A2A 0.3.0's hyphenated
    // schema. Pin them so a typo can't silently regress the public
    // surface of the SSE / push-config payloads.
    assert_eq!(TaskStatus::Submitted.as_str(), "submitted");
    assert_eq!(TaskStatus::Working.as_str(), "working");
    assert_eq!(TaskStatus::InputRequired.as_str(), "input-required");
    assert_eq!(TaskStatus::AuthRequired.as_str(), "auth-required");
    assert_eq!(TaskStatus::Completed.as_str(), "completed");
    assert_eq!(TaskStatus::Failed.as_str(), "failed");
    assert_eq!(TaskStatus::Cancelled.as_str(), "cancelled");
    assert_eq!(TaskStatus::Rejected.as_str(), "rejected");

    // Terminal states cannot be cancelled or transitioned out of.
    // `input-required` and `auth-required` are pause states — the
    // task is alive and the client is expected to act on it.
    assert!(TaskStatus::Completed.is_terminal());
    assert!(TaskStatus::Failed.is_terminal());
    assert!(TaskStatus::Cancelled.is_terminal());
    assert!(TaskStatus::Rejected.is_terminal());
    assert!(!TaskStatus::Submitted.is_terminal());
    assert!(!TaskStatus::Working.is_terminal());
    assert!(!TaskStatus::InputRequired.is_terminal());
    assert!(!TaskStatus::AuthRequired.is_terminal());
}

#[test]
fn hitl_requested_event_transitions_task_into_input_required() {
    // A2A 0.3.0 `input-required` is the wire signal a client uses
    // to know the task is paused on a HITL waitpoint. Our sink
    // listens for the canonical `AgentEvent::HitlRequested` emitted
    // by the HITL primitives in `harn-vm` and flips task status
    // accordingly. `HitlResolved` flips it back to `working` so
    // subscribers can observe the resume before the task ultimately
    // completes / fails.
    let task_id = "task-hitl".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: None,
        status: TaskStatus::Working,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::HitlRequested {
        session_id: super::a2a_worker_session_id(&task_id),
        request_id: "hitl_question_t1_1".into(),
        kind: "question".into(),
        payload: serde_json::json!({"prompt": "Approve?"}),
    });

    {
        let tasks = tasks.lock().expect("tasks");
        let task = tasks.get(&task_id).expect("task");
        assert_eq!(task.status, TaskStatus::InputRequired);
        let hitl_event = task
            .events
            .iter()
            .find(|event| event.get("type").and_then(JsonValue::as_str) == Some("hitl"))
            .expect("hitl event");
        assert_eq!(hitl_event["phase"], "requested");
        assert_eq!(hitl_event["kind"], "question");
        assert_eq!(hitl_event["requestId"], "hitl_question_t1_1");
        assert_eq!(hitl_event["payload"]["prompt"], "Approve?");
        let status_event = task
            .events
            .iter()
            .filter_map(|event| {
                if event.get("type").and_then(JsonValue::as_str) == Some("status") {
                    event.pointer("/status/state").and_then(JsonValue::as_str)
                } else {
                    None
                }
            })
            .next_back()
            .expect("status event");
        assert_eq!(status_event, "input-required");
    }

    sink.handle_event(&harn_vm::agent_events::AgentEvent::HitlResolved {
        session_id: super::a2a_worker_session_id(&task_id),
        request_id: "hitl_question_t1_1".into(),
        kind: "question".into(),
        outcome: "answered".into(),
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    assert_eq!(task.status, TaskStatus::Working);
    let resolved_event = task
        .events
        .iter()
        .rfind(|event| event.get("type").and_then(JsonValue::as_str) == Some("hitl"))
        .expect("resolved hitl event");
    assert_eq!(resolved_event["phase"], "resolved");
    assert_eq!(resolved_event["outcome"], "answered");
}

#[test]
fn hitl_requested_event_does_not_override_terminal_task() {
    // The waitpoint emit can race with cancellation/completion.
    // Once a task is terminal, a stray `HitlRequested` must not
    // reanimate it into `input-required`.
    let task_id = "task-terminal".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: None,
        status: TaskStatus::Cancelled,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::HitlRequested {
        session_id: super::a2a_worker_session_id(&task_id),
        request_id: "late".into(),
        kind: "question".into(),
        payload: serde_json::json!({}),
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    assert_eq!(task.status, TaskStatus::Cancelled);
    // No HITL event is published either — the late emission is
    // dropped wholesale rather than partially recorded.
    assert!(
        task.events
            .iter()
            .all(|event| event.get("type").and_then(JsonValue::as_str) != Some("hitl")),
        "events: {:?}",
        task.events
    );
}

#[tokio::test]
async fn auth_policy_denial_returns_unauthorized_without_storing_task() {
    let (_dir, server) = server_with_api_key_policy(
        r"
pub fn triage(task: string) -> string {
  return task
}
",
        "secret-key",
    );
    let request = harn_vm::jsonrpc::request(
        "rej-1",
        "message/send",
        json!({
            "message": {
                "metadata": {"target_agent": "triage"},
                "parts": [{"type": "text", "text": "hello"}]
            },
            "configuration": {"blocking": true}
        }),
    );

    let processed = server
        .clone()
        .process_rpc(request, AuthRequest::default())
        .await;
    let RpcOutcome::Json(response) = processed.outcome else {
        panic!("expected json response");
    };

    assert_eq!(processed.status, Some(StatusCode::UNAUTHORIZED));
    assert_eq!(response["error"]["code"], -32000, "got: {response}");
    assert!(
        server.tasks.lock().expect("tasks poisoned").is_empty(),
        "auth failures should not persist caller-provided task content"
    );
    assert!(
        processed.auth_challenge.is_some(),
        "auth failures should advertise a challenge"
    );
}

#[tokio::test]
async fn auth_required_state_surfaces_when_script_raises_auth_error() {
    // Mid-task downstream auth failure: the script raises an
    // auth-classified error (e.g. an LLM/HTTP 401 surfaces through
    // `error_to_category`). The dispatch returns `Execution(...)`
    // wrapping the message; the adapter classifies it via
    // `harn_vm::value::classify_error_message` and flips the task
    // into the non-terminal `auth-required` state so the client
    // can refresh credentials and resubscribe.
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r#"
pub fn triage(task: string) -> string {
  // The auth classifier matches "401" (HTTP status code) and well-
  // known error identifier substrings. This message hits both so the
  // path is exercised regardless of which heuristic fires first.
  throw "downstream HTTP 401: invalid_api_key"
  return task
}
"#,
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "auth-1",
        "message/send",
        json!({
            "message": {
                "metadata": {"target_agent": "triage"},
                "parts": [{"type": "text", "text": "hello"}]
            },
            "configuration": {"blocking": true}
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Json(response) = processed.outcome else {
        panic!("expected json response");
    };

    assert_eq!(
        response["result"]["status"]["state"], "auth-required",
        "got: {response}"
    );
}

#[test]
fn artifact_metadata_includes_timestamp_and_kind() {
    let harn_artifact = json!({
        "_type": "artifact",
        "id": "report",
        "kind": "file",
        "title": "report.bin",
        "data": {
            "bytes": "AAEC/w==",
            "mimeType": "application/octet-stream",
            "name": "report.bin"
        }
    });

    let a2a_artifact = super::a2a_artifact_from_harn_artifact(&harn_artifact);
    let metadata = a2a_artifact["metadata"]
        .as_object()
        .expect("metadata object");
    let timestamp = metadata
        .get("timestamp")
        .and_then(JsonValue::as_str)
        .expect("timestamp string");
    // RFC3339: "YYYY-MM-DDTHH:MM:SS" plus zone — at minimum 19 chars.
    assert!(
        timestamp.len() >= 19 && timestamp.contains('T'),
        "timestamp not RFC3339: {timestamp}"
    );
    assert_eq!(
        metadata.get("artifact_kind").and_then(JsonValue::as_str),
        Some("file")
    );
    assert_eq!(a2a_artifact["artifactId"], "report");
    assert_eq!(a2a_artifact["name"], "report.bin");
}

#[tokio::test]
async fn send_message_surfaces_text_and_binary_outputs_as_separate_artifacts() {
    // Acceptance criterion for harn#892: a script that produces both
    // text and binary outputs must surface them as separate
    // `Artifact` objects on the resulting task — not collapse them
    // into the legacy empty `[]`.
    let dir = tempfile::tempdir().expect("tempdir");
    let script = dir.path().join("server.harn");
    std::fs::write(
        &script,
        r#"
pub fn render_report(task: string) -> dict {
  return {
    visible_text: "summary for " + task,
    artifacts: [
      artifact({
        kind: "file",
        id: "report-bin",
        title: "report.bin",
        data: {
          bytes: "AAEC/w==",
          mimeType: "application/octet-stream",
          name: "report.bin"
        }
      }),
      artifact({
        kind: "data",
        id: "report-summary",
        title: "summary",
        data: {rows: 3, status: "ok"}
      })
    ]
  }
}
"#,
    )
    .expect("write script");
    let core = DispatchCore::new(DispatchCoreConfig::for_script(&script)).expect("core");
    let server = Arc::new(A2aServer::new(A2aServerConfig::new(core)));
    let request = harn_vm::jsonrpc::request(
        "artifacts-1",
        "message/send",
        json!({
            "message": {
                "metadata": {"target_agent": "render_report"},
                "parts": [{"type": "text", "text": "audit-2026-05"}]
            }
        }),
    );

    let processed = server.process_rpc(request, AuthRequest::default()).await;
    let RpcOutcome::Json(response) = processed.outcome else {
        panic!("expected json response");
    };

    assert_eq!(response["result"]["status"]["state"], "completed");
    let artifacts = response["result"]["artifacts"]
        .as_array()
        .expect("artifacts array");
    assert_eq!(artifacts.len(), 2, "got: {response}");

    let by_id: BTreeMap<&str, &JsonValue> = artifacts
        .iter()
        .map(|artifact| {
            (
                artifact["artifactId"].as_str().expect("artifactId"),
                artifact,
            )
        })
        .collect();

    let file_artifact = by_id.get("report-bin").expect("file artifact");
    assert_eq!(file_artifact["name"], "report.bin");
    assert_eq!(file_artifact["parts"][0]["type"], "file");
    assert_eq!(file_artifact["parts"][0]["file"]["bytes"], "AAEC/w==");
    assert_eq!(
        file_artifact["parts"][0]["file"]["mimeType"],
        "application/octet-stream"
    );
    assert!(
        file_artifact["metadata"]["timestamp"].is_string(),
        "missing timestamp on file artifact"
    );

    let data_artifact = by_id.get("report-summary").expect("data artifact");
    assert_eq!(data_artifact["parts"][0]["type"], "data");
    assert_eq!(data_artifact["parts"][0]["data"]["rows"], 3);
    assert!(
        data_artifact["metadata"]["timestamp"].is_string(),
        "missing timestamp on data artifact"
    );
}

#[test]
fn tool_call_completed_emits_artifact_update_event() {
    // A `ToolCallUpdate` with `status: completed` and a `raw_output`
    // must materialise as an A2A `TaskArtifactUpdateEvent` on the
    // task's event stream and as an entry on `task.artifacts`. The
    // canonical `tool_call_id` becomes the artifact's stable id so
    // the streaming event and the eventual `tasks/get` shape share
    // identity.
    let task_id = "task-tool-output".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: Some("ctx-1".into()),
        status: TaskStatus::Working,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::ToolCallUpdate {
        session_id: super::a2a_worker_session_id(&task_id),
        tool_call_id: "tc-42".into(),
        tool_name: "search_files".into(),
        status: harn_vm::agent_events::ToolCallStatus::Completed,
        raw_output: Some(json!({"matches": ["a.rs", "b.rs"]})),
        error: None,
        duration_ms: Some(12),
        execution_duration_ms: Some(10),
        error_category: None,
        mutation_status: harn_vm::agent_events::ToolMutationStatus::Unknown,
        changed_paths: None,
        data: None,
        executor: None,
        parsing: None,
        raw_input: None,
        raw_input_partial: None,
        audit: None,
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    assert_eq!(task.artifacts.len(), 1, "tool output not stored");
    let stored = &task.artifacts[0];
    assert_eq!(stored["artifactId"], "tool-tc-42");
    assert_eq!(stored["name"], "search_files");
    assert_eq!(stored["parts"][0]["type"], "data");
    assert_eq!(stored["parts"][0]["data"]["matches"][0], "a.rs");
    assert_eq!(stored["metadata"]["tool_call_id"], "tc-42");
    assert!(stored["metadata"]["timestamp"].is_string());

    let event = task
        .events
        .iter()
        .find(|event| event.get("kind").and_then(JsonValue::as_str) == Some("artifact-update"))
        .expect("artifact-update event");
    assert_eq!(event["taskId"], task_id);
    assert_eq!(event["contextId"], "ctx-1");
    assert_eq!(event["append"], false);
    assert_eq!(event["lastChunk"], true);
    assert_eq!(event["artifact"]["artifactId"], "tool-tc-42");
}

#[test]
fn agent_artifact_event_emits_artifact_update() {
    let task_id = "task-agent-artifact".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: Some("ctx-artifacts".into()),
        status: TaskStatus::Working,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::Artifact {
        session_id: super::a2a_worker_session_id(&task_id),
        artifact_id: "artifact-chart-1".into(),
        kind: "vega-lite".into(),
        title: Some("Build throughput".into()),
        mime_type: "application/vnd.vegalite.v5+json".into(),
        spec: json!({
            "mark": "bar",
            "data": {"values": [{"name": "a", "count": 2}]},
            "encoding": {"x": {"field": "name"}, "y": {"field": "count"}}
        }),
        fallback: "Build throughput (bar chart)".into(),
        size_bytes: 128,
        provenance: json!({"source": "agent"}),
        metadata: json!({"unit": "builds"}),
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    assert_eq!(task.artifacts.len(), 1, "artifact event not stored");
    let stored = &task.artifacts[0];
    assert_eq!(stored["artifactId"], "artifact-chart-1");
    assert_eq!(stored["name"], "Build throughput");
    assert_eq!(stored["parts"][0]["type"], "data");
    assert_eq!(stored["parts"][0]["data"]["kind"], "vega-lite");
    assert_eq!(
        stored["parts"][0]["data"]["mimeType"],
        "application/vnd.vegalite.v5+json"
    );
    assert_eq!(stored["parts"][0]["data"]["spec"]["mark"], "bar");
    assert_eq!(stored["parts"][1]["type"], "text");
    assert_eq!(stored["parts"][1]["text"], "Build throughput (bar chart)");
    assert_eq!(stored["metadata"]["artifact_kind"], "vega-lite");
    assert_eq!(stored["metadata"]["size_bytes"], 128);
    assert_eq!(stored["metadata"]["provenance"]["source"], "agent");
    assert_eq!(stored["metadata"]["harn_metadata"]["unit"], "builds");
    assert!(stored["metadata"]["timestamp"].is_string());

    let event = task
        .events
        .iter()
        .find(|event| event.get("kind").and_then(JsonValue::as_str) == Some("artifact-update"))
        .expect("artifact-update event");
    assert_eq!(event["taskId"], task_id);
    assert_eq!(event["contextId"], "ctx-artifacts");
    assert_eq!(event["artifact"]["artifactId"], "artifact-chart-1");
}

#[test]
fn agent_artifact_manifest_event_emits_bundle_artifact_update() {
    let task_id = "task-artifact-manifest".to_string();
    let task = TaskState {
        id: task_id.clone(),
        context_id: Some("ctx-artifacts".into()),
        status: TaskStatus::Working,
        history: Vec::new(),
        artifacts: Vec::new(),
        metadata: BTreeMap::new(),
        events: Vec::new(),
        subscribers: Vec::new(),
        cancel_token: None,
    };
    let tasks: TaskStore = Arc::new(Mutex::new(HashMap::from([(task_id.clone(), task)])));
    let sink = super::A2aWorkerSink {
        task_id: task_id.clone(),
        tasks: tasks.clone(),
    };

    sink.handle_event(&harn_vm::agent_events::AgentEvent::Artifact {
        session_id: super::a2a_worker_session_id(&task_id),
        artifact_id: "artifact-manifest-1".into(),
        kind: "artifact_manifest".into(),
        title: Some("Code findings report".into()),
        mime_type: "application/vnd.harn.artifact-manifest+json".into(),
        spec: json!({
            "schema_version": "harn.artifacts.v1",
            "kind": "artifact_manifest",
            "title": "Code findings report",
            "artifact_count": 2,
            "total_size_bytes": 42,
            "artifacts": [
                {
                    "name": "findings.pdf",
                    "relative_path": "artifacts/findings.pdf",
                    "uri": "file:///tmp/findings.pdf",
                    "mime_type": "application/pdf",
                    "size_bytes": 40,
                    "sha256": format!("sha256:{}", "a".repeat(64)),
                },
                {
                    "name": "chart.png",
                    "relative_path": "artifacts/chart.png",
                    "uri": "file:///tmp/chart.png",
                    "mime_type": "image/png",
                    "size_bytes": 2,
                    "sha256": format!("sha256:{}", "b".repeat(64)),
                },
            ],
            "metadata": {
                "contract_package": "@harn/documents",
                "contract_version": "0.1.3",
            },
        }),
        fallback: "Code findings report: findings.pdf, chart.png".into(),
        size_bytes: 512,
        provenance: json!({"generator": "artifact_emit"}),
        metadata: json!({"scope": "bundle"}),
    });

    let tasks = tasks.lock().expect("tasks");
    let task = tasks.get(&task_id).expect("task");
    assert_eq!(task.artifacts.len(), 1, "artifact manifest not stored");
    let stored = &task.artifacts[0];
    assert_eq!(stored["artifactId"], "artifact-manifest-1");
    assert_eq!(stored["name"], "Code findings report");
    assert_eq!(stored["parts"][0]["type"], "data");
    assert_eq!(stored["parts"][0]["data"]["kind"], "artifact_manifest");
    assert_eq!(
        stored["parts"][0]["data"]["mimeType"],
        "application/vnd.harn.artifact-manifest+json"
    );
    assert_eq!(
        stored["parts"][0]["data"]["spec"]["schema_version"],
        "harn.artifacts.v1"
    );
    assert_eq!(stored["parts"][0]["data"]["spec"]["artifact_count"], 2);
    assert_eq!(
        stored["parts"][0]["data"]["spec"]["artifacts"][0]["mime_type"],
        "application/pdf"
    );
    assert_eq!(
        stored["parts"][0]["data"]["spec"]["artifacts"][1]["mime_type"],
        "image/png"
    );
    assert_eq!(stored["parts"][1]["type"], "text");
    assert_eq!(
        stored["parts"][1]["text"],
        "Code findings report: findings.pdf, chart.png"
    );
    assert_eq!(stored["metadata"]["artifact_kind"], "artifact_manifest");
    assert_eq!(
        stored["metadata"]["mime_type"],
        "application/vnd.harn.artifact-manifest+json"
    );
    assert_eq!(stored["metadata"]["size_bytes"], 512);
    assert_eq!(
        stored["metadata"]["provenance"]["generator"],
        "artifact_emit"
    );
    assert_eq!(stored["metadata"]["harn_metadata"]["scope"], "bundle");
    assert!(stored["metadata"]["timestamp"].is_string());

    let event = task
        .events
        .iter()
        .find(|event| event.get("kind").and_then(JsonValue::as_str) == Some("artifact-update"))
        .expect("artifact-update event");
    assert_eq!(event["taskId"], task_id);
    assert_eq!(event["contextId"], "ctx-artifacts");
    assert_eq!(event["artifact"]["artifactId"], "artifact-manifest-1");
}

mod plan_document;