edgefirst-client 2.10.3

EdgeFirst Client Library and CLI
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
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
// SPDX-License-Identifier: Apache-2.0
// Copyright © 2025 Au-Zone Technologies. All Rights Reserved.

//! Wiremock-backed integration tests for the DE-2565 surface.
//!
//! These tests stand up a local wiremock HTTP server, point the client at
//! it via [`Client::with_url`], and exercise the full request/response
//! cycle for the new methods without a live Studio server. The goal is
//! coverage of the wire paths that pure unit tests can't reach:
//!
//! * [`Client::rpc_download`] (binary stream, JSON file payload, JSON-RPC
//!   error envelope, HTTP 413, empty-parent guard for bare filenames)
//! * [`Client::post_multipart`] (success, HTTP 413, JSON-RPC error
//!   envelope)
//! * [`Client::job_run`] / [`Client::jobs`] / [`Client::job_stop`]
//! * [`TaskInfo::data_list`] / `upload_data` / `download_data` /
//!   `list_charts` / `get_chart` / `add_chart`
//! * [`ValidationSession::data_list`] / `upload_data` / `download_data`
//!
//! All tests are offline — they require no Studio credentials and run
//! deterministically in CI.
//!
//! Wire conventions in this client:
//!
//! * Regular JSON-RPC calls go to `POST {url}/api` with the method name
//!   in the JSON body (`{"method": "<name>", ...}`). Matched here via
//!   `body_partial_json`.
//! * Binary downloads (`Client::rpc_download`) hit the same `/api` path
//!   with the method in the body, but the response is raw bytes.
//! * Multipart uploads (`Client::post_multipart`) hit
//!   `POST {url}/api?method=<name>` with the method in the query string.
//!   Matched here via `query_param`.

use base64::Engine as _;
use edgefirst_client::{
    Client, DatasetID, Error, Parameter, SampleDimensionUpdate, SampleID, TaskID,
    ValidationSessionID,
};
use serde_json::json;
use serial_test::serial;
use wiremock::matchers::{body_partial_json, method, path, query_param};
use wiremock::{Mock, MockServer, ResponseTemplate};

// ---------------------------------------------------------------------------
// Test helpers
// ---------------------------------------------------------------------------

fn b64(bytes: &[u8]) -> String {
    base64::engine::general_purpose::STANDARD_NO_PAD.encode(bytes)
}

/// Build a minimal JWT carrying `server="test"` and a far-future `exp`,
/// so the client treats it as valid and never tries to renew during a
/// test. The signature is opaque — the client never verifies it.
fn fake_jwt() -> String {
    let header = b64(b"{\"alg\":\"none\",\"typ\":\"JWT\"}");
    // exp = 2_000_000_000 → 2033-05-18. Well past the test deadline.
    let payload = b64(b"{\"server\":\"test\",\"exp\":2000000000}");
    let signature = b64(b"signature");
    format!("{header}.{payload}.{signature}")
}

/// Build a Client pointed at `mock_url`, pre-seeded with a fake JWT so
/// `rpc()` skips the auth-renewal path. Token storage is in-memory.
fn client_for(mock_url: &str) -> Client {
    Client::new()
        .expect("Client::new")
        .with_memory_storage()
        .with_token(&fake_jwt())
        .expect("with_token")
        .with_url(mock_url)
        .expect("with_url")
}

/// Standard JSON-RPC envelope. The Studio RpcResponse type deserializes
/// `id` as a `String`, so the mock must serialize it that way.
fn rpc_result(result: serde_json::Value) -> serde_json::Value {
    json!({ "jsonrpc": "2.0", "id": "0", "result": result })
}

/// Standard JSON-RPC error envelope.
fn rpc_error(code: i32, message: &str) -> serde_json::Value {
    json!({
        "jsonrpc": "2.0",
        "id": "0",
        "error": { "code": code, "message": message }
    })
}

/// Match a JSON-RPC body whose `method` field is exactly `m`.
fn rpc_method_body(m: &str) -> wiremock::matchers::BodyPartialJsonMatcher {
    body_partial_json(json!({ "method": m }))
}

// ---------------------------------------------------------------------------
// Mock setup for the auxiliary `task.info` / `val.get` round-trips used
// to obtain a TaskInfo / ValidationSession before exercising the real
// method under test.
// ---------------------------------------------------------------------------

async fn mock_task_info(server: &MockServer, id: u64) -> edgefirst_client::TaskInfo {
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.get"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "id": id,
            "type": "edgefirst-validator:2.10.0",
            "task_description": "wiremock test task",
            "status": "running",
        }))))
        .mount(server)
        .await;
    let client = client_for(&server.uri());
    client
        .task_info(TaskID::from(id))
        .await
        .expect("task_info via mock")
}

async fn mock_validation_session(
    server: &MockServer,
    id: u64,
) -> edgefirst_client::ValidationSession {
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("validate.session.get"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "id": id,
            "experiment_id": 1,
            "training_session_id": 2,
            "dataset_id": 3,
            // Wire-rename: ValidationSession.annotation_set_id is serialized
            // as gt_annotation_set_id (matches server schema).
            "gt_annotation_set_id": 4,
            "description": "wiremock test session",
            // The session embeds the model `params` object (validator
            // params live under .model_params.validation) and the
            // underlying docker task — both required by the deserializer.
            "params": {
                "model_params": { "validation": {} },
                "validate_params": { "model": "wiremock-model" }
            },
            "docker_task": {
                "id": id,
                "name": "wiremock-task",
                "type": "edgefirst-validator:2.10.0",
                "status": "running",
                "manage_type": null,
                "instance_type": "wiremock",
                "date": "2026-05-15T00:00:00Z"
            }
        }))))
        .mount(server)
        .await;
    let client = client_for(&server.uri());
    client
        .validation_session(ValidationSessionID::from(id))
        .await
        .expect("validation_session via mock")
}

// ---------------------------------------------------------------------------
// rpc_download
// ---------------------------------------------------------------------------

#[tokio::test]
async fn rpc_download_streams_binary_body_to_disk() {
    let server = MockServer::start().await;
    let payload: &[u8] = b"\x00\x01\x02 binary blob \xff\xfe\xfd";

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.data.download"))
        .respond_with(
            ResponseTemplate::new(200)
                .set_body_bytes(payload.to_vec())
                .insert_header("content-type", "application/octet-stream"),
        )
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    task.download_data(&client, "blob.bin", None, tmp.path(), None)
        .await
        .expect("binary download");
    assert_eq!(tokio::fs::read(tmp.path()).await.unwrap(), payload);
}

#[tokio::test]
async fn rpc_download_persists_json_artifact_when_not_an_envelope() {
    // A legit JSON metrics file with a `Content-Type: application/json` —
    // must NOT be misread as a JSON-RPC error envelope, even though it has
    // a free-form `error` field.
    let server = MockServer::start().await;
    let body = json!({
        "metric": "loss",
        "value": 0.42,
        "error": { "code": "ENV_NOT_FOUND", "message": "ignored" }
    });

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.data.download"))
        .respond_with(
            ResponseTemplate::new(200)
                .set_body_json(body.clone())
                .insert_header("content-type", "application/json"),
        )
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    task.download_data(&client, "metrics.json", None, tmp.path(), None)
        .await
        .expect("json artifact download");

    let on_disk: serde_json::Value =
        serde_json::from_slice(&tokio::fs::read(tmp.path()).await.unwrap()).unwrap();
    assert_eq!(on_disk, body);
}

#[tokio::test]
async fn rpc_download_decodes_jsonrpc_error_envelope_into_typed_error() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.data.download"))
        .respond_with(
            ResponseTemplate::new(200)
                .set_body_json(rpc_error(101, "Cannot find task with id 0x42"))
                .insert_header("content-type", "application/json"),
        )
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    let err = task
        .download_data(&client, "any.bin", None, tmp.path(), None)
        .await
        .expect_err("envelope should surface as typed TaskNotFound");
    assert!(
        matches!(err, Error::TaskNotFound(_)),
        "expected TaskNotFound, got {err:?}"
    );
}

#[tokio::test]
async fn rpc_download_maps_http_413_to_payload_too_large() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.data.download"))
        .respond_with(ResponseTemplate::new(413).set_body_string("request too large"))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    let err = task
        .download_data(&client, "any.bin", None, tmp.path(), None)
        .await
        .expect_err("HTTP 413 should map to PayloadTooLarge");
    assert!(
        matches!(err, Error::PayloadTooLarge { .. }),
        "expected PayloadTooLarge, got {err:?}"
    );
}

/// RAII guard around `std::env::set_current_dir`.
///
/// CWD is process-global, so the `Drop` impl restores it even on panic.
/// Combined with `#[serial]` on the surrounding test, no other test
/// observes a mid-flight CWD.
struct CwdGuard {
    original: std::path::PathBuf,
}

impl CwdGuard {
    fn enter(new_cwd: &std::path::Path) -> std::io::Result<Self> {
        let original = std::env::current_dir()?;
        std::env::set_current_dir(new_cwd)?;
        Ok(Self { original })
    }
}

impl Drop for CwdGuard {
    fn drop(&mut self) {
        // Best-effort restore — if this fails, the process is already in
        // a weird state and `expect` would just trip a double-panic.
        let _ = std::env::set_current_dir(&self.original);
    }
}

// `#[serial]` (single-threaded) is mandatory: CWD is process-wide, so
// running this in parallel with other tests would race their file-path
// assertions or fixture lookups. The `CwdGuard` restores CWD on drop so
// a panic mid-test still leaves the process clean for the next test.
#[tokio::test]
#[serial]
async fn rpc_download_accepts_bare_filename_without_dirname() {
    // Regression: `Path::parent` for "metrics.bin" returns `Some("")`, and
    // `create_dir_all("")` errors. The guard should let the bare filename
    // land in the current directory.
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.data.download"))
        .respond_with(
            ResponseTemplate::new(200)
                .set_body_bytes(b"hello".to_vec())
                .insert_header("content-type", "application/octet-stream"),
        )
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let tmp_dir = tempfile::tempdir().unwrap();
    let bare = tmp_dir.path().join("metrics.bin");
    let _cwd = CwdGuard::enter(tmp_dir.path()).expect("enter tempdir");
    task.download_data(
        &client,
        "any.bin",
        None,
        std::path::Path::new("metrics.bin"),
        None,
    )
    .await
    .expect("bare filename download");
    assert_eq!(tokio::fs::read(&bare).await.unwrap(), b"hello");
    // `_cwd` drops here and restores CWD even if the assertions panic.
}

#[tokio::test]
async fn rpc_download_emits_completion_progress_for_json_path() {
    let server = MockServer::start().await;
    let body = json!({ "ok": true });

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.data.download"))
        .respond_with(
            ResponseTemplate::new(200)
                .set_body_json(body.clone())
                .insert_header("content-type", "application/json"),
        )
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let (tx, mut rx) = tokio::sync::mpsc::channel(8);
    let tmp = tempfile::NamedTempFile::new().unwrap();
    task.download_data(&client, "metrics.json", None, tmp.path(), Some(tx))
        .await
        .expect("json download with progress");

    let mut last = None;
    while let Some(p) = rx.recv().await {
        last = Some(p);
    }
    let p = last.expect("at least one progress event");
    assert!(p.total > 0, "expected total > 0, got {}", p.total);
    assert_eq!(
        p.current, p.total,
        "completion progress should have current == total"
    );
}

// ---------------------------------------------------------------------------
// post_multipart — exercised via TaskInfo::upload_data and
// ValidationSession::upload_data.
// ---------------------------------------------------------------------------

#[tokio::test]
async fn post_multipart_uploads_file_and_returns_ok() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(query_param("method", "task.data.upload"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "message": "ok",
            "path": "/uploads/1.bin",
            "size": 16,
        }))))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    tokio::fs::write(tmp.path(), b"hello multipart!")
        .await
        .unwrap();

    task.upload_data(&client, tmp.path(), Some("predictions"), None)
        .await
        .expect("multipart upload");
}

#[tokio::test]
async fn post_multipart_maps_http_413_to_payload_too_large() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(query_param("method", "val.data.upload"))
        .respond_with(ResponseTemplate::new(413).set_body_string("too big"))
        .mount(&server)
        .await;

    let session = mock_validation_session(&server, 2707).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    tokio::fs::write(tmp.path(), b"payload").await.unwrap();

    let err = session
        .upload_data(
            &client,
            &[("result.bin".to_string(), tmp.path().to_path_buf())],
            None,
            None,
        )
        .await
        .expect_err("413 should map");
    assert!(
        matches!(err, Error::PayloadTooLarge { .. }),
        "expected PayloadTooLarge, got {err:?}"
    );
}

#[tokio::test]
async fn post_multipart_surfaces_jsonrpc_error_envelope() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(query_param("method", "task.data.upload"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_error(403, "forbidden")))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    tokio::fs::write(tmp.path(), b"x").await.unwrap();

    let err = task
        .upload_data(&client, tmp.path(), None, None)
        .await
        .expect_err("403 envelope should map");
    assert!(
        matches!(err, Error::PermissionDenied(_)),
        "expected PermissionDenied, got {err:?}"
    );
}

#[tokio::test]
async fn upload_data_emits_terminal_progress_event() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(query_param("method", "task.data.upload"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "message": "ok",
            "path": "/",
            "size": 0,
        }))))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    let body = b"completion event probe payload";
    tokio::fs::write(tmp.path(), body).await.unwrap();

    let (tx, mut rx) = tokio::sync::mpsc::channel(8);
    task.upload_data(&client, tmp.path(), None, Some(tx))
        .await
        .expect("upload");

    let mut last = None;
    while let Some(p) = rx.recv().await {
        last = Some(p);
    }
    let p = last.expect("terminal progress must fire");
    assert_eq!(p.current, body.len());
    assert_eq!(p.total, body.len());
}

// ---------------------------------------------------------------------------
// job_run / jobs / job_stop
// ---------------------------------------------------------------------------

#[tokio::test]
async fn job_run_returns_full_job_record_from_bk_batch_shape() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("job.run"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "code": "edgefirst-validator:2.10.0",
            "title": "EdgeFirst Validator",
            "job_name": "smoke",
            "job_id": "aws-batch-xyz",
            "state": "SUBMITTED",
            "task_id": 0x1234,
        }))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let job = client
        .job_run(
            "edgefirst-validator",
            "smoke",
            std::collections::HashMap::new(),
            std::collections::HashMap::new(),
        )
        .await
        .expect("job.run");
    assert_eq!(job.code, "edgefirst-validator:2.10.0");
    assert_eq!(job.task_id, 0x1234);
    assert_eq!(job.task_id().value(), 0x1234);
}

#[tokio::test]
async fn job_run_surfaces_permission_denied() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("job.run"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_error(403, "no access")))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let err = client
        .job_run(
            "edgefirst-validator",
            "smoke",
            std::collections::HashMap::new(),
            std::collections::HashMap::new(),
        )
        .await
        .expect_err("403 maps");
    assert!(matches!(err, Error::PermissionDenied(_)));
}

#[tokio::test]
async fn jobs_returns_vec_of_job() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("job.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([
            { "code": "a", "task_id": 1, "state": "RUNNING" },
            { "code": "b", "task_id": 2, "state": "SUCCEEDED" }
        ]))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let jobs = client.jobs(None).await.expect("job.list");
    assert_eq!(jobs.len(), 2);
    assert_eq!(jobs[0].task_id, 1);
}

#[tokio::test]
async fn jobs_substring_filter_is_client_side() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("job.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([
            { "code": "a", "task_id": 1, "state": "RUNNING", "job_name": "alpha-run" },
            { "code": "b", "task_id": 2, "state": "SUCCEEDED", "job_name": "beta-run" }
        ]))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let filtered = client.jobs(Some("alpha")).await.expect("filtered job.list");
    assert_eq!(filtered.len(), 1);
    assert_eq!(filtered[0].job_name, "alpha-run");
}

#[tokio::test]
async fn job_stop_maps_typed_errors() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("job.stop"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_error(101, "Cannot find task")))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let err = client
        .job_stop(TaskID::from(0xdeadu64))
        .await
        .expect_err("101 maps");
    assert!(matches!(err, Error::TaskNotFound(_)));
}

#[tokio::test]
async fn job_stop_success_returns_unit() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("job.stop"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({}))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    client
        .job_stop(TaskID::from(0x42u64))
        .await
        .expect("job.stop");
}

// ---------------------------------------------------------------------------
// TaskInfo data + chart APIs
// ---------------------------------------------------------------------------

#[tokio::test]
async fn task_data_list_returns_folder_map() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.data.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "server": "studio.example.com",
            "organization_uid": "org-1",
            "traces": ["trace/imx95.json"],
            "data": {
                "predictions": ["a.parquet", "b.parquet"],
                "metrics": ["loss.json"]
            }
        }))))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let listing = task.data_list(&client).await.expect("task.data.list");
    assert_eq!(listing.server, "studio.example.com");
    assert_eq!(listing.data["predictions"].len(), 2);
    assert_eq!(listing.traces, vec!["trace/imx95.json".to_string()]);
}

#[tokio::test]
async fn task_data_list_maps_task_not_found() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.data.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_error(101, "Cannot find task")))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let err = task.data_list(&client).await.expect_err("101 maps");
    assert!(matches!(err, Error::TaskNotFound(_)));
}

#[tokio::test]
async fn task_list_charts_round_trips() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.chart.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "server": "studio.example.com",
            "organization_uid": "org-1",
            "traces": [],
            "data": { "metrics": ["loss.json", "accuracy.json"] }
        }))))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let listing = task
        .list_charts(&client, Some("metrics"))
        .await
        .expect("task.chart.list");
    assert_eq!(listing.data["metrics"].len(), 2);
}

#[tokio::test]
async fn task_get_chart_returns_parameter_body() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.chart.get"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "type": "line",
            "series": [{ "x": [1, 2, 3], "y": [0.1, 0.2, 0.3] }]
        }))))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let chart = task
        .get_chart(&client, "metrics", "loss")
        .await
        .expect("task.chart.get");
    let json: serde_json::Value = serde_json::to_value(&chart).unwrap();
    assert_eq!(json["type"], "line");
}

#[tokio::test]
async fn task_get_chart_rejects_empty_group_locally() {
    // validate_chart_args fires before the request — should not call the
    // server. We register no mock and assert we still get InvalidParameters.
    let server = MockServer::start().await;
    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let err = task
        .get_chart(&client, "", "loss")
        .await
        .expect_err("empty group rejected locally");
    assert!(matches!(err, Error::InvalidParameters(_)));
}

#[tokio::test]
async fn task_add_chart_round_trips_with_param_body() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("task.chart.add"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({}))))
        .mount(&server)
        .await;

    let task = mock_task_info(&server, 0x42).await;
    let client = client_for(&server.uri());

    let body = Parameter::Object(std::collections::HashMap::from([(
        "type".into(),
        Parameter::String("line".into()),
    )]));
    task.add_chart(&client, "metrics", "loss", body, None)
        .await
        .expect("task.chart.add");
}

// ---------------------------------------------------------------------------
// ValidationSession data APIs
// ---------------------------------------------------------------------------

#[tokio::test]
async fn val_data_list_returns_flat_vec_of_strings() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("val.data.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([
            "trace/imx95.json",
            "metrics/loss.parquet"
        ]))))
        .mount(&server)
        .await;

    let session = mock_validation_session(&server, 2707).await;
    let client = client_for(&server.uri());

    let files = session.data_list(&client).await.expect("val.data.list");
    assert_eq!(files.len(), 2);
    assert!(files.contains(&"trace/imx95.json".to_string()));
}

#[tokio::test]
async fn val_data_download_writes_file() {
    let server = MockServer::start().await;
    let payload: &[u8] = b"validation result bytes";

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("val.data.download"))
        .respond_with(
            ResponseTemplate::new(200)
                .set_body_bytes(payload.to_vec())
                .insert_header("content-type", "application/octet-stream"),
        )
        .mount(&server)
        .await;

    let session = mock_validation_session(&server, 2707).await;
    let client = client_for(&server.uri());

    let tmp = tempfile::NamedTempFile::new().unwrap();
    session
        .download_data(&client, "result.bin", tmp.path(), None)
        .await
        .expect("val.data.download");
    assert_eq!(tokio::fs::read(tmp.path()).await.unwrap(), payload);
}

// ---------------------------------------------------------------------------
// `Client::start_validation_session` / `Client::delete_validation_sessions`
// ---------------------------------------------------------------------------

#[tokio::test]
async fn start_validation_session_round_trips_user_managed_request() {
    let server = MockServer::start().await;

    // The server returns a BackgroundTask row (subset of fields used by
    // our deserializer). `val_session_id` is the freshly-minted session
    // handle the caller will use for downstream data uploads and the
    // matching delete on teardown.
    Mock::given(method("POST"))
        .and(path("/api"))
        // The frontend send shape: `type` must be "validation" and
        // `is_local: true` flips the server to user-managed mode.
        .and(body_partial_json(json!({
            "method": "cloud.server.start",
            "params": {
                "type": "validation",
                "is_local": true,
                "is_kubernetes": false,
                "name": "smoke-session",
                "training_session_id": 0x111,
                "model_file": "best.pt",
                "val_type": "modelpack",
            }
        })))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "id": 0x1234,
            "val_session_id": 0x5678,
        }))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let req = edgefirst_client::StartValidationRequest {
        project_id: edgefirst_client::ProjectID::from(0x222u64),
        name: "smoke-session".into(),
        training_session_id: edgefirst_client::TrainingSessionID::from(0x111u64),
        model_file: "best.pt".into(),
        val_type: "modelpack".into(),
        params: std::collections::HashMap::new(),
        is_local: true,
        is_kubernetes: false,
        description: None,
        dataset_id: Some(edgefirst_client::DatasetID::from(0x333u64)),
        annotation_set_id: Some(edgefirst_client::AnnotationSetID::from(0x444u64)),
        snapshot_id: None,
    };

    let session = client
        .start_validation_session(req)
        .await
        .expect("cloud.server.start via mock");
    assert_eq!(session.task_id, TaskID::from(0x1234u64));
    assert_eq!(
        session.session_id,
        Some(ValidationSessionID::from(0x5678u64))
    );
}

#[tokio::test]
async fn delete_validation_sessions_passes_session_ids_array() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(body_partial_json(json!({
            "method": "validate.session.delete",
            "params": { "session_ids": [0x5678, 0x9abc] }
        })))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!("ok"))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    client
        .delete_validation_sessions(&[
            ValidationSessionID::from(0x5678u64),
            ValidationSessionID::from(0x9abcu64),
        ])
        .await
        .expect("validate.session.delete via mock");
}

#[tokio::test]
async fn delete_validation_sessions_maps_permission_denied() {
    let server = MockServer::start().await;
    // 100 = generic permission code on the Studio server.
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("validate.session.delete"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_error(100, "permission denied")))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let err = client
        .delete_validation_sessions(&[ValidationSessionID::from(0x5678u64)])
        .await
        .expect_err("expected permission failure");
    assert!(
        matches!(err, Error::PermissionDenied(_) | Error::RpcError(100, _)),
        "expected PermissionDenied or RpcError(100), got {err:?}"
    );
}

// ---------------------------------------------------------------------------
// update_sample_dimensions
// ---------------------------------------------------------------------------

#[tokio::test]
#[serial]
async fn test_update_sample_dimensions_empty() {
    let client = client_for("http://localhost:1");
    // Empty updates should short-circuit without any RPC call.
    let updated = client
        .update_sample_dimensions(DatasetID::from(1u64), vec![])
        .await
        .expect("empty updates should succeed");
    assert_eq!(updated, 0);
}

#[tokio::test]
#[serial]
async fn test_update_sample_dimensions_single_batch() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.update_dimensions"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "updated": 3 }))))
        .expect(1)
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let updates = vec![
        SampleDimensionUpdate {
            id: SampleID::from(1u64),
            width: 640,
            height: 480,
        },
        SampleDimensionUpdate {
            id: SampleID::from(2u64),
            width: 1920,
            height: 1080,
        },
        SampleDimensionUpdate {
            id: SampleID::from(3u64),
            width: 800,
            height: 600,
        },
    ];
    let updated = client
        .update_sample_dimensions(DatasetID::from(42u64), updates)
        .await
        .expect("update should succeed");
    assert_eq!(updated, 3);
}

#[tokio::test]
#[serial]
async fn test_update_sample_dimensions_multi_batch() {
    let server = MockServer::start().await;

    // With 500-item batching, 501 items should produce exactly 2 RPC calls.
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.update_dimensions"))
        .respond_with(
            ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "updated": 250 }))),
        )
        .expect(2)
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let updates: Vec<SampleDimensionUpdate> = (1..=501)
        .map(|i| SampleDimensionUpdate {
            id: SampleID::from(i as u64),
            width: 100,
            height: 100,
        })
        .collect();
    let updated = client
        .update_sample_dimensions(DatasetID::from(7u64), updates)
        .await
        .expect("batched update should succeed");
    // 250 + 250 from the two mocked responses
    assert_eq!(updated, 500);
}

// ---------------------------------------------------------------------------
// backfill_sample_dimensions
// ---------------------------------------------------------------------------

/// Minimal 1×1 red PNG (67 bytes). Used to mock image downloads so
/// `imagesize::blob_size` can extract dimensions.
fn png_1x1() -> Vec<u8> {
    // Pre-computed minimal valid PNG with IHDR(1×1, 8-bit RGB), IDAT, IEND.
    vec![
        0x89, 0x50, 0x4E, 0x47, 0x0D, 0x0A, 0x1A, 0x0A, // PNG signature
        0x00, 0x00, 0x00, 0x0D, 0x49, 0x48, 0x44, 0x52, // IHDR length + type
        0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x01, // 1x1
        0x08, 0x02, 0x00, 0x00, 0x00, 0x90, 0x77, 0x53, 0xDE, // 8-bit RGB + CRC
        0x00, 0x00, 0x00, 0x0C, 0x49, 0x44, 0x41, 0x54, // IDAT length + type
        0x08, 0xD7, 0x63, 0xF8, 0xCF, 0xC0, 0x00, 0x00, // deflated data
        0x00, 0x02, 0x00, 0x01, 0xE2, 0x21, 0xBC, 0x33, // + CRC
        0x00, 0x00, 0x00, 0x00, 0x49, 0x45, 0x4E, 0x44, // IEND
        0xAE, 0x42, 0x60, 0x82, // IEND CRC
    ]
}

#[tokio::test]
#[serial]
async fn test_backfill_sample_dimensions_no_missing() {
    let server = MockServer::start().await;

    // labels
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("label.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([]))))
        .mount(&server)
        .await;

    // samples.count
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.count"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "total": 1 }))))
        .mount(&server)
        .await;

    // samples.list - all samples already have dimensions
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "samples": [{
                "id": 10,
                "image_name": "img001.png",
                "group_name": "train",
                "width": 640,
                "height": 480,
            }],
            "continue_token": null
        }))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let updated = client
        .backfill_sample_dimensions(DatasetID::from(1u64), None)
        .await
        .expect("backfill should succeed when nothing to update");
    assert_eq!(updated, 0);
}

#[tokio::test]
#[serial]
async fn test_backfill_sample_dimensions_with_missing() {
    let server = MockServer::start().await;

    // labels
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("label.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([]))))
        .mount(&server)
        .await;

    // samples.count
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.count"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "total": 2 }))))
        .mount(&server)
        .await;

    // samples.list - one has dimensions, one does not
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "samples": [
                {
                    "id": 10,
                    "image_name": "img001.png",
                    "group_name": "train",
                    "width": 640,
                    "height": 480,
                },
                {
                    "id": 20,
                    "image_name": "img002.png",
                    "image_url": format!("{}/images/img002.png", server.uri()),
                    "group_name": "train",
                }
            ],
            "continue_token": null
        }))))
        .mount(&server)
        .await;

    // Mock image download for the sample missing dimensions
    Mock::given(method("GET"))
        .and(path("/images/img002.png"))
        .respond_with(ResponseTemplate::new(200).set_body_bytes(png_1x1()))
        .expect(1)
        .mount(&server)
        .await;

    // samples.update_dimensions
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.update_dimensions"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "updated": 1 }))))
        .expect(1)
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let (tx, mut rx) = tokio::sync::mpsc::channel(8);

    let updated = client
        .backfill_sample_dimensions(DatasetID::from(1u64), Some(tx))
        .await
        .expect("backfill should succeed");
    assert_eq!(updated, 1);

    // Verify progress was emitted
    let mut progress_messages = vec![];
    while let Ok(p) = rx.try_recv() {
        progress_messages.push(p);
    }
    assert_eq!(
        progress_messages.len(),
        1,
        "should emit exactly 1 progress update for 1 sample missing dims"
    );
    assert_eq!(progress_messages[0].current, 1);
    assert_eq!(progress_messages[0].total, 1);
}

#[tokio::test]
#[serial]
async fn test_backfill_sample_dimensions_no_image_url() {
    let server = MockServer::start().await;

    // labels
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("label.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([]))))
        .mount(&server)
        .await;

    // samples.count
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.count"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "total": 1 }))))
        .mount(&server)
        .await;

    // samples.list - sample has no image_url and no dimensions
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "samples": [{
                "id": 30,
                "image_name": "img003.png",
                "group_name": "test",
            }],
            "continue_token": null
        }))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    // Should gracefully skip sample with no image_url and update 0.
    let updated = client
        .backfill_sample_dimensions(DatasetID::from(1u64), None)
        .await
        .expect("backfill should succeed even with no image URL");
    assert_eq!(updated, 0);
}

#[tokio::test]
#[serial]
async fn test_backfill_sample_dimensions_no_image_url_with_progress() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("label.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([]))))
        .mount(&server)
        .await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.count"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "total": 1 }))))
        .mount(&server)
        .await;

    // Sample with no image_url and no dimensions
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "samples": [{
                "id": 30,
                "image_name": "img003.png",
                "group_name": "test",
            }],
            "continue_token": null
        }))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let (tx, mut rx) = tokio::sync::mpsc::channel(8);

    let updated = client
        .backfill_sample_dimensions(DatasetID::from(1u64), Some(tx))
        .await
        .expect("backfill should succeed");
    assert_eq!(updated, 0);

    // Progress should still be emitted for the skipped sample
    let mut progress_messages = vec![];
    while let Ok(p) = rx.try_recv() {
        progress_messages.push(p);
    }
    assert_eq!(progress_messages.len(), 1);
    assert_eq!(progress_messages[0].current, 1);
    assert_eq!(progress_messages[0].total, 1);
}

#[tokio::test]
#[serial]
async fn test_backfill_sample_dimensions_download_failure() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("label.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([]))))
        .mount(&server)
        .await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.count"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "total": 1 }))))
        .mount(&server)
        .await;

    // Sample with image_url pointing to an unreachable host (connection refused)
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "samples": [{
                "id": 40,
                "image_name": "broken.png",
                "image_url": "http://127.0.0.1:1/images/broken.png",
                "group_name": "train",
            }],
            "continue_token": null
        }))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let (tx, mut rx) = tokio::sync::mpsc::channel(8);

    let updated = client
        .backfill_sample_dimensions(DatasetID::from(1u64), Some(tx))
        .await
        .expect("backfill should succeed even when download fails");
    assert_eq!(updated, 0);

    // Progress still emitted for skipped sample
    let mut progress_messages = vec![];
    while let Ok(p) = rx.try_recv() {
        progress_messages.push(p);
    }
    assert_eq!(progress_messages.len(), 1);
}

#[tokio::test]
#[serial]
async fn test_backfill_sample_dimensions_http_error_status() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("label.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([]))))
        .mount(&server)
        .await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.count"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "total": 1 }))))
        .mount(&server)
        .await;

    // Sample with image_url that returns HTTP 404
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "samples": [{
                "id": 45,
                "image_name": "missing.png",
                "image_url": format!("{}/images/missing.png", server.uri()),
                "group_name": "train",
            }],
            "continue_token": null
        }))))
        .mount(&server)
        .await;

    // Image download returns 404 Not Found
    Mock::given(method("GET"))
        .and(path("/images/missing.png"))
        .respond_with(ResponseTemplate::new(404))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let (tx, mut rx) = tokio::sync::mpsc::channel(8);

    let updated = client
        .backfill_sample_dimensions(DatasetID::from(1u64), Some(tx))
        .await
        .expect("backfill should succeed even with HTTP error");
    assert_eq!(updated, 0);

    // Progress still emitted for skipped sample
    let mut progress_messages = vec![];
    while let Ok(p) = rx.try_recv() {
        progress_messages.push(p);
    }
    assert_eq!(progress_messages.len(), 1);
}

#[tokio::test]
#[serial]
async fn test_backfill_sample_dimensions_invalid_image_data() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("label.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([]))))
        .mount(&server)
        .await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.count"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "total": 1 }))))
        .mount(&server)
        .await;

    // Sample with image_url that returns garbage bytes
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "samples": [{
                "id": 50,
                "image_name": "garbage.png",
                "image_url": format!("{}/images/garbage.png", server.uri()),
                "group_name": "train",
            }],
            "continue_token": null
        }))))
        .mount(&server)
        .await;

    // Return non-image bytes (imagesize::blob_size will fail)
    Mock::given(method("GET"))
        .and(path("/images/garbage.png"))
        .respond_with(
            ResponseTemplate::new(200).set_body_bytes(b"this is not a valid image file".to_vec()),
        )
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let (tx, mut rx) = tokio::sync::mpsc::channel(8);

    let updated = client
        .backfill_sample_dimensions(DatasetID::from(1u64), Some(tx))
        .await
        .expect("backfill should succeed even with invalid image data");
    assert_eq!(updated, 0);

    // Progress still emitted for skipped sample
    let mut progress_messages = vec![];
    while let Ok(p) = rx.try_recv() {
        progress_messages.push(p);
    }
    assert_eq!(progress_messages.len(), 1);
}

#[tokio::test]
#[serial]
async fn test_backfill_sample_dimensions_null_id_with_progress() {
    let server = MockServer::start().await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("label.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!([]))))
        .mount(&server)
        .await;

    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.count"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({ "total": 1 }))))
        .mount(&server)
        .await;

    // Sample with null id (missing dimensions, id is null)
    Mock::given(method("POST"))
        .and(path("/api"))
        .and(rpc_method_body("samples.list"))
        .respond_with(ResponseTemplate::new(200).set_body_json(rpc_result(json!({
            "samples": [{
                "id": null,
                "image_name": "orphan.png",
                "group_name": "train",
            }],
            "continue_token": null
        }))))
        .mount(&server)
        .await;

    let client = client_for(&server.uri());
    let (tx, mut rx) = tokio::sync::mpsc::channel(8);

    let updated = client
        .backfill_sample_dimensions(DatasetID::from(1u64), Some(tx))
        .await
        .expect("backfill should succeed with null id sample");
    assert_eq!(updated, 0);

    // Progress still emitted
    let mut progress_messages = vec![];
    while let Ok(p) = rx.try_recv() {
        progress_messages.push(p);
    }
    assert_eq!(progress_messages.len(), 1);
}