hpx-browser 2.5.8

Headless browser engine for hpx: HTML parsing, rendering, CDP, and canvas support
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
//! HAR (HTTP Archive) capture and export.
//!
//! Captures CDP Network domain events and builds a HAR 1.2 archive.
//! Uses manual ISO 8601 timestamps to avoid the chrono dependency.

use std::collections::HashMap;

use serde::Serialize;
use tokio::sync::broadcast;

use crate::cdp_client::cdp::CdpMessage;

// ── HAR 1.2 Data Types ──────────────────────────────────────────────────────

/// Top-level HAR archive.
#[derive(Serialize, Debug, Clone)]
pub struct HarArchive {
    pub log: HarLog,
}

/// HAR log containing version, creator info, and captured entries.
#[derive(Serialize, Debug, Clone)]
pub struct HarLog {
    pub version: String,
    pub creator: HarCreator,
    #[serde(rename = "entries")]
    pub entries: Vec<HarEntry>,
}

/// Tool that created the HAR archive.
#[derive(Serialize, Debug, Clone)]
pub struct HarCreator {
    pub name: String,
    pub version: String,
}

/// A single HTTP transaction (request + response).
#[derive(Serialize, Debug, Clone)]
pub struct HarEntry {
    #[serde(rename = "startedDateTime")]
    pub started_date_time: String,
    pub time: f64,
    pub request: HarRequest,
    pub response: HarResponse,
    pub timings: HarTimings,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub cache: Option<HarCache>,
    #[serde(rename = "serverIPAddress", skip_serializing_if = "Option::is_none")]
    pub server_ip_address: Option<String>,
    #[serde(rename = "connection", skip_serializing_if = "Option::is_none")]
    pub connection: Option<String>,
}

/// HTTP request within a HAR entry.
#[derive(Serialize, Debug, Clone)]
pub struct HarRequest {
    pub method: String,
    pub url: String,
    pub http_version: String,
    pub cookies: Vec<HarCookie>,
    pub headers: Vec<HarHeader>,
    #[serde(rename = "queryString")]
    pub query_string: Vec<HarQueryParam>,
    #[serde(rename = "postData", skip_serializing_if = "Option::is_none")]
    pub post_data: Option<HarPostData>,
    pub headers_size: i64,
    pub body_size: i64,
}

/// HTTP response within a HAR entry.
#[derive(Serialize, Debug, Clone)]
pub struct HarResponse {
    pub status: u16,
    #[serde(rename = "statusText")]
    pub status_text: String,
    pub http_version: String,
    pub cookies: Vec<HarCookie>,
    pub headers: Vec<HarHeader>,
    pub content: HarContent,
    #[serde(rename = "redirectURL")]
    pub redirect_url: String,
    pub headers_size: i64,
    pub body_size: i64,
}

/// Timing breakdown for a request.
#[derive(Serialize, Debug, Clone)]
pub struct HarTimings {
    pub dns: f64,
    pub connect: f64,
    pub ssl: f64,
    pub send: f64,
    pub wait: f64,
    pub receive: f64,
}

/// Cache information (typically empty).
#[derive(Serialize, Debug, Clone, Default)]
pub struct HarCache {}

/// A single HTTP header.
#[derive(Serialize, Debug, Clone)]
pub struct HarHeader {
    pub name: String,
    pub value: String,
}

/// A single query string parameter.
#[derive(Serialize, Debug, Clone)]
pub struct HarQueryParam {
    pub name: String,
    pub value: String,
}

/// POST data payload.
#[derive(Serialize, Debug, Clone)]
pub struct HarPostData {
    pub mime_type: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub params: Option<Vec<HarPostDataParam>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
}

/// A single POST data parameter.
#[derive(Serialize, Debug, Clone)]
pub struct HarPostDataParam {
    pub name: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub value: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub file_name: Option<String>,
    #[serde(rename = "contentType", skip_serializing_if = "Option::is_none")]
    pub content_type: Option<String>,
}

/// A single HTTP cookie.
#[derive(Serialize, Debug, Clone)]
pub struct HarCookie {
    pub name: String,
    pub value: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub path: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub domain: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub expires: Option<String>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub http_only: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub secure: Option<bool>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub comment: Option<String>,
}

/// Response content metadata.
#[derive(Serialize, Debug, Clone)]
pub struct HarContent {
    pub size: i64,
    #[serde(rename = "mimeType")]
    pub mime_type: String,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub text: Option<String>,
    #[serde(rename = "encoding", skip_serializing_if = "Option::is_none")]
    pub encoding: Option<String>,
}

// ── Capture State ────────────────────────────────────────────────────────────

/// A request that has been seen but not yet finalized.
#[derive(Debug, Clone)]
struct PendingRequest {
    method: String,
    url: String,
    headers: Vec<HarHeader>,
    started_time: String,
    started_millis: f64,
    http_version: String,
    /// Enriched by responseReceived
    status: Option<u16>,
    status_text: Option<String>,
    response_headers: Option<Vec<HarHeader>>,
    response_content_type: Option<String>,
    response_body_size: Option<i64>,
    /// Enriched by loadingFinished / loadingFailed
    finalized: bool,
    /// Timestamp when loadingFinished or loadingFailed was received.
    finished_timestamp: Option<f64>,
}

/// Mutable capture state guarded by a single async task.
#[derive(Debug)]
struct CaptureState {
    pending: HashMap<String, PendingRequest>,
    entries: Vec<HarEntry>,
}

impl CaptureState {
    fn new() -> Self {
        Self {
            pending: HashMap::new(),
            entries: Vec::new(),
        }
    }
}

// ── HarCapture ───────────────────────────────────────────────────────────────

/// HAR capture engine that listens to CDP Network events.
///
/// Accepts a `broadcast::Receiver<CdpMessage>` for decoupling from the CDP
/// client. Call [`start`](Self::start) to begin capturing, [`stop`](Self::stop)
/// to finalize and return the archive, or [`export`](Self::export) to snapshot
/// without stopping.
#[derive(Debug)]
pub struct HarCapture {
    /// Forwarding channel receiver (messages from background task).
    event_rx: Option<tokio::sync::mpsc::UnboundedReceiver<CdpMessage>>,
    state: CaptureState,
    /// Background task handle (joins on stop).
    handle: Option<tokio::task::JoinHandle<()>>,
    /// Watch channel to signal the background task to stop.
    stop_tx: Option<tokio::sync::watch::Sender<bool>>,
}

impl HarCapture {
    /// Create a new capture bound to the given event receiver.
    pub fn new(rx: broadcast::Receiver<CdpMessage>) -> Self {
        let (event_tx, event_rx) = tokio::sync::mpsc::unbounded_channel();
        let (stop_tx, stop_rx) = tokio::sync::watch::channel(false);

        let handle = tokio::spawn(Self::forward_loop(rx, event_tx, stop_rx));

        Self {
            event_rx: Some(event_rx),
            state: CaptureState::new(),
            handle: Some(handle),
            stop_tx: Some(stop_tx),
        }
    }

    /// Background task that forwards broadcast events to an mpsc channel.
    ///
    /// This exists because `broadcast::Receiver` is `!Unpin` and cannot be
    /// `select!`-ed alongside `oneshot::Receiver` without pinning tricks.
    /// The mpsc channel provides a clean, `Unpin` boundary.
    async fn forward_loop(
        mut rx: broadcast::Receiver<CdpMessage>,
        event_tx: tokio::sync::mpsc::UnboundedSender<CdpMessage>,
        mut stop_rx: tokio::sync::watch::Receiver<bool>,
    ) {
        loop {
            tokio::select! {
                biased;
                _ = stop_rx.changed() => break,
                msg = rx.recv() => {
                    match msg {
                        Ok(msg) => {
                            if event_tx.send(msg).is_err() {
                                break;
                            }
                        }
                        Err(broadcast::error::RecvError::Lagged(_)) => continue,
                        Err(broadcast::error::RecvError::Closed) => break,
                    }
                }
            }
        }
    }

    /// Begin capturing Network events.
    ///
    /// The background forwarding task is already running from construction.
    /// This method is a no-op provided for API clarity; the caller should
    /// enable the CDP Network domain before calling this.
    pub fn start(&mut self) {
        // Background task already started in new(). This is intentionally a no-op
        // to match the documented lifecycle: new() → start() → events → stop().
    }

    /// Drain all pending events from the forwarding channel and process them.
    ///
    /// Call this periodically (e.g. before `export()` or `stop()`) to
    /// ensure capture state is up-to-date.
    pub fn drain(&mut self) {
        let msgs: Vec<_> = self
            .event_rx
            .as_mut()
            .map(|rx| std::iter::from_fn(|| rx.try_recv().ok()).collect::<Vec<_>>())
            .unwrap_or_default();
        for msg in msgs {
            self.process_event(msg);
        }
    }

    /// Stop capturing and return the HAR archive.
    pub async fn stop(&mut self) -> Result<HarArchive, HarCaptureError> {
        // Signal the background task to stop
        if let Some(tx) = self.stop_tx.take() {
            let _ = tx.send(true);
        }

        // Wait for the background task to finish
        if let Some(handle) = self.handle.take() {
            let _ = handle.await;
        }

        // Drain any remaining events
        self.drain();

        Ok(self.build_archive())
    }

    /// Export a snapshot without stopping capture.
    pub fn export(&mut self) -> HarArchive {
        self.drain();
        self.build_archive()
    }

    /// Reset all captured state.
    pub fn clear(&mut self) {
        self.state = CaptureState::new();
    }

    /// Process a single CDP message, updating capture state.
    fn process_event(&mut self, msg: CdpMessage) {
        let method = match msg.method.as_deref() {
            Some(m) => m,
            None => return,
        };

        match method {
            "Network.requestWillBeSent" => {
                self.handle_request_will_be_sent(&msg);
            }
            "Network.responseReceived" => {
                self.handle_response_received(&msg);
            }
            "Network.loadingFinished" => {
                self.handle_loading_finished(&msg);
            }
            "Network.loadingFailed" => {
                self.handle_loading_failed(&msg);
            }
            _ => {}
        }
    }

    /// Handle `Network.requestWillBeSent` — create a pending request.
    fn handle_request_will_be_sent(&mut self, msg: &CdpMessage) {
        let params = match msg.params.as_ref() {
            Some(p) => p,
            None => return,
        };

        let request_id = match params["requestId"].as_str() {
            Some(id) => id.to_string(),
            None => return,
        };

        let request = &params["request"];
        let method = request["method"].as_str().unwrap_or("GET").to_string();
        let url = request["url"].as_str().unwrap_or("").to_string();
        let http_version = request["httpVersion"]
            .as_str()
            .unwrap_or("HTTP/1.1")
            .to_string();

        let headers = extract_headers_from_json(&request["headers"]);
        let timestamp = params["timestamp"].as_f64().unwrap_or(0.0);

        let pending = PendingRequest {
            method,
            url,
            headers,
            started_time: iso_timestamp(timestamp),
            started_millis: timestamp,
            http_version,
            status: None,
            status_text: None,
            response_headers: None,
            response_content_type: None,
            response_body_size: None,
            finalized: false,
            finished_timestamp: None,
        };

        self.state.pending.insert(request_id, pending);
    }

    /// Handle `Network.responseReceived` — enrich pending request with response info.
    fn handle_response_received(&mut self, msg: &CdpMessage) {
        let params = match msg.params.as_ref() {
            Some(p) => p,
            None => return,
        };

        let request_id = match params["requestId"].as_str() {
            Some(id) => id.to_string(),
            None => return,
        };

        let pending = match self.state.pending.get_mut(&request_id) {
            Some(p) => p,
            None => return,
        };

        let response = &params["response"];
        pending.status = response["status"].as_u64().map(|s| s as u16);
        pending.status_text = response["statusText"].as_str().map(String::from);
        pending.response_headers = Some(extract_headers_from_json(&response["headers"]));
        pending.response_content_type = response["headers"]["content-type"]
            .as_str()
            .map(String::from);
        pending.response_body_size = response["bodySize"].as_i64();
    }

    /// Handle `Network.loadingFinished` — finalize the entry.
    fn handle_loading_finished(&mut self, msg: &CdpMessage) {
        let params = match msg.params.as_ref() {
            Some(p) => p,
            None => return,
        };

        let request_id = match params["requestId"].as_str() {
            Some(id) => id.to_string(),
            None => return,
        };

        let encoded_length = params["encodedDataLength"].as_i64().unwrap_or(0);
        let timestamp = params["timestamp"].as_f64();

        if let Some(pending) = self.state.pending.get_mut(&request_id) {
            if pending.finished_timestamp.is_none() {
                pending.finished_timestamp = timestamp;
            }
        }

        self.finalize_entry(&request_id, encoded_length);
    }

    /// Handle `Network.loadingFailed` — finalize with error status.
    fn handle_loading_failed(&mut self, msg: &CdpMessage) {
        let params = match msg.params.as_ref() {
            Some(p) => p,
            None => return,
        };

        let request_id = match params["requestId"].as_str() {
            Some(id) => id.to_string(),
            None => return,
        };

        let timestamp = params["timestamp"].as_f64();

        // Set error status if not already set
        if let Some(pending) = self.state.pending.get_mut(&request_id) {
            if pending.status.is_none() {
                pending.status = Some(0);
                pending.status_text = Some(
                    params["errorText"]
                        .as_str()
                        .unwrap_or("Unknown Error")
                        .to_string(),
                );
            }
            if pending.finished_timestamp.is_none() {
                pending.finished_timestamp = timestamp;
            }
        }

        self.finalize_entry(&request_id, 0);
    }

    /// Finalize a pending request into a HAR entry.
    fn finalize_entry(&mut self, request_id: &str, encoded_length: i64) {
        let pending = match self.state.pending.remove(request_id) {
            Some(p) => p,
            None => return,
        };

        let status = pending.status.unwrap_or(0);
        let status_text = pending.status_text.unwrap_or_default();
        let response_headers = pending.response_headers.unwrap_or_default();
        let body_size = pending.response_body_size.unwrap_or(encoded_length);
        let mime_type = pending
            .response_content_type
            .unwrap_or_else(|| "application/octet-stream".to_string());

        // Compute elapsed time from start to finish (seconds).
        let time = match pending.finished_timestamp {
            Some(finished) => (finished - pending.started_millis).max(0.0),
            None => 0.0,
        };

        let entry = HarEntry {
            started_date_time: pending.started_time,
            time,
            request: HarRequest {
                method: pending.method,
                url: pending.url,
                http_version: pending.http_version,
                cookies: Vec::new(),
                headers: pending.headers,
                query_string: Vec::new(),
                post_data: None,
                headers_size: -1,
                body_size: -1,
            },
            response: HarResponse {
                status,
                status_text,
                http_version: "HTTP/1.1".to_string(),
                cookies: Vec::new(),
                headers: response_headers,
                content: HarContent {
                    size: body_size,
                    mime_type,
                    text: None,
                    encoding: None,
                },
                redirect_url: String::new(),
                headers_size: -1,
                body_size,
            },
            timings: HarTimings {
                dns: -1.0,
                connect: -1.0,
                ssl: -1.0,
                send: 0.0,
                wait: 0.0,
                receive: 0.0,
            },
            cache: None,
            server_ip_address: None,
            connection: None,
        };

        self.state.entries.push(entry);
    }

    /// Build the final HAR archive from current state.
    fn build_archive(&self) -> HarArchive {
        HarArchive {
            log: HarLog {
                version: "1.2".to_string(),
                creator: HarCreator {
                    name: "hpx-browser".to_string(),
                    version: env!("CARGO_PKG_VERSION").to_string(),
                },
                entries: self.state.entries.clone(),
            },
        }
    }
}

// ── JSON Helpers ─────────────────────────────────────────────────────────────

/// Extract headers from a JSON object into `HarHeader` entries.
fn extract_headers_from_json(headers: &serde_json::Value) -> Vec<HarHeader> {
    let obj = match headers.as_object() {
        Some(o) => o,
        None => return Vec::new(),
    };

    obj.iter()
        .map(|(k, v)| HarHeader {
            name: k.clone(),
            value: v.as_str().unwrap_or(&v.to_string()).to_string(),
        })
        .collect()
}

// ── ISO 8601 (Manual, no chrono) ─────────────────────────────────────────────

/// Convert a UNIX timestamp (seconds since epoch) to ISO 8601 format:
/// `YYYY-MM-DDTHH:MM:SS.mmmZ`
///
/// Uses Howard Hinnant's civil_from_days algorithm for calendar conversion.
pub fn iso_timestamp(seconds: f64) -> String {
    let secs = seconds.floor() as i64;
    let millis = ((seconds - secs as f64) * 1000.0).min(999.0).round() as u64;

    let (year, month, day) = civil_from_days(secs.div_euclid(86_400));
    let remaining = secs.rem_euclid(86_400);

    let hours = remaining / 3600;
    let remaining = remaining % 3600;
    let minutes = remaining / 60;
    let secs_part = remaining % 60;

    format!("{year:04}-{month:02}-{day:02}T{hours:02}:{minutes:02}:{secs_part:02}.{millis:03}Z")
}

/// Howard Hinnant's `civil_from_days` algorithm.
///
/// Converts a day count (days since 1970-01-01) to (year, month, day).
/// See: <https://howardhinnant.github.io/date_algorithms.html>
fn civil_from_days(days: i64) -> (i64, i64, i64) {
    let z = days + 719_468;
    let era = if z >= 0 {
        z / 146_097
    } else {
        (z - 146_096) / 146_097
    };
    let doe = z - era * 146_097;
    let yoe = (doe - doe / 1460 + doe / 36524 - doe / 146_096) / 365;
    let y = yoe + era * 400;
    let doy = doe - (365 * yoe + yoe / 4 - yoe / 100);
    let mp = (5 * doy + 2) / 153;
    let d = doy - (153 * mp + 2) / 5 + 1;
    let m = if mp < 10 { mp + 3 } else { mp - 9 };
    let y = if m <= 2 { y + 1 } else { y };
    (y, m, d)
}

// ── Errors ───────────────────────────────────────────────────────────────────

/// Errors that can occur during HAR capture.
#[derive(Debug, thiserror::Error)]
pub enum HarCaptureError {
    /// Failed to start capture.
    #[error("failed to start capture: {0}")]
    StartFailed(String),

    /// Failed to stop capture.
    #[error("failed to stop capture: {0}")]
    StopFailed(String),
}

// ── Tests ────────────────────────────────────────────────────────────────────

#[cfg(test)]
mod tests {
    use super::*;

    // ── ISO 8601 Tests ──────────────────────────────────────────────────

    #[test]
    fn iso_timestamp_epoch() {
        assert_eq!(iso_timestamp(0.0), "1970-01-01T00:00:00.000Z");
    }

    #[test]
    fn iso_timestamp_one_second() {
        assert_eq!(iso_timestamp(1.0), "1970-01-01T00:00:01.000Z");
    }

    #[test]
    fn iso_timestamp_one_minute() {
        assert_eq!(iso_timestamp(60.0), "1970-01-01T00:01:00.000Z");
    }

    #[test]
    fn iso_timestamp_one_hour() {
        assert_eq!(iso_timestamp(3600.0), "1970-01-01T01:00:00.000Z");
    }

    #[test]
    fn iso_timestamp_one_day() {
        assert_eq!(iso_timestamp(86_400.0), "1970-01-02T00:00:00.000Z");
    }

    #[test]
    fn iso_timestamp_millis() {
        assert_eq!(iso_timestamp(0.5), "1970-01-01T00:00:00.500Z");
        assert_eq!(iso_timestamp(1.234), "1970-01-01T00:00:01.234Z");
    }

    #[test]
    fn iso_timestamp_recent_date() {
        // 2024-01-15T12:30:45.000Z = 1705321845
        let ts = iso_timestamp(1_705_321_845.0);
        assert_eq!(ts, "2024-01-15T12:30:45.000Z");
    }

    #[test]
    fn iso_timestamp_with_millis_recent() {
        let ts = iso_timestamp(1_705_321_845.123);
        assert_eq!(ts, "2024-01-15T12:30:45.123Z");
    }

    #[test]
    fn civil_from_days_epoch() {
        let (y, m, d) = civil_from_days(0);
        assert_eq!((y, m, d), (1970, 1, 1));
    }

    #[test]
    fn civil_from_days_one_day_later() {
        let (y, m, d) = civil_from_days(1);
        assert_eq!((y, m, d), (1970, 1, 2));
    }

    #[test]
    fn civil_from_days_leap_year_2000() {
        // 2000-01-01 = day 10957, 2000-02-29 = day 10957 + 59 = 11016
        let (y, m, d) = civil_from_days(11_016);
        assert_eq!((y, m, d), (2000, 2, 29));
    }

    #[test]
    fn civil_from_days_year_boundary() {
        // 2024-01-01 = 19723 days from epoch (54 years, 13 leap years)
        let (y, m, d) = civil_from_days(19_723);
        assert_eq!((y, m, d), (2024, 1, 1));
    }

    // ── HAR Serialization Tests ─────────────────────────────────────────

    #[test]
    fn har_archive_serializes_to_valid_json() {
        let archive = HarArchive {
            log: HarLog {
                version: "1.2".to_string(),
                creator: HarCreator {
                    name: "hpx-browser".to_string(),
                    version: "0.1.0".to_string(),
                },
                entries: vec![HarEntry {
                    started_date_time: "2024-01-15T12:30:45.000Z".to_string(),
                    time: 123.45,
                    request: HarRequest {
                        method: "GET".to_string(),
                        url: "https://example.com/".to_string(),
                        http_version: "HTTP/1.1".to_string(),
                        cookies: Vec::new(),
                        headers: vec![HarHeader {
                            name: "User-Agent".to_string(),
                            value: "hpx-browser/0.1.0".to_string(),
                        }],
                        query_string: Vec::new(),
                        post_data: None,
                        headers_size: -1,
                        body_size: -1,
                    },
                    response: HarResponse {
                        status: 200,
                        status_text: "OK".to_string(),
                        http_version: "HTTP/1.1".to_string(),
                        cookies: Vec::new(),
                        headers: vec![HarHeader {
                            name: "content-type".to_string(),
                            value: "text/html".to_string(),
                        }],
                        content: HarContent {
                            size: 1024,
                            mime_type: "text/html".to_string(),
                            text: None,
                            encoding: None,
                        },
                        redirect_url: String::new(),
                        headers_size: -1,
                        body_size: 1024,
                    },
                    timings: HarTimings {
                        dns: -1.0,
                        connect: -1.0,
                        ssl: -1.0,
                        send: 0.0,
                        wait: 50.0,
                        receive: 73.45,
                    },
                    cache: None,
                    server_ip_address: None,
                    connection: None,
                }],
            },
        };

        let json = serde_json::to_string_pretty(&archive).expect("should serialize");
        let parsed: serde_json::Value = serde_json::from_str(&json).expect("should parse as JSON");

        assert_eq!(parsed["log"]["version"], "1.2");
        assert_eq!(parsed["log"]["creator"]["name"], "hpx-browser");
        assert_eq!(parsed["log"]["entries"].as_array().unwrap().len(), 1);
        assert_eq!(parsed["log"]["entries"][0]["request"]["method"], "GET");
        assert_eq!(parsed["log"]["entries"][0]["response"]["status"], 200);
        assert_eq!(
            parsed["log"]["entries"][0]["startedDateTime"],
            "2024-01-15T12:30:45.000Z"
        );
    }

    #[test]
    fn har_archive_camel_case_serialization() {
        let archive = HarArchive {
            log: HarLog {
                version: "1.2".to_string(),
                creator: HarCreator {
                    name: "test".to_string(),
                    version: "1.0".to_string(),
                },
                entries: Vec::new(),
            },
        };

        let json = serde_json::to_string(&archive).expect("should serialize");
        assert!(json.contains("\"version\""));
        assert!(json.contains("\"creator\""));
        assert!(json.contains("\"entries\""));
    }

    // ── CaptureState Tests ──────────────────────────────────────────────

    #[test]
    fn capture_state_new_is_empty() {
        let state = CaptureState::new();
        assert!(state.pending.is_empty());
        assert!(state.entries.is_empty());
    }

    #[tokio::test]
    async fn har_capture_new_has_empty_state() {
        let (_, rx) = broadcast::channel(1);
        let capture = HarCapture::new(rx);
        assert!(capture.state.pending.is_empty());
        assert!(capture.state.entries.is_empty());
        assert!(capture.handle.is_some());
        assert!(capture.stop_tx.is_some());
    }

    #[tokio::test]
    async fn har_capture_stop_returns_archive() {
        let (_, rx) = broadcast::channel::<CdpMessage>(1);
        let mut capture = HarCapture::new(rx);

        // Process events directly to test stop() returns the archive
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705293045.0,
                "request": {
                    "method": "GET",
                    "url": "https://example.com/",
                    "httpVersion": "HTTP/1.1",
                    "headers": {}
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.loadingFinished".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "encodedDataLength": 100
            })),
            result: None,
            error: None,
            session_id: None,
        });

        let archive = capture.stop().await.expect("stop should succeed");
        assert_eq!(archive.log.version, "1.2");
        assert_eq!(archive.log.entries.len(), 1);
        assert_eq!(archive.log.entries[0].request.url, "https://example.com/");
    }

    // ── Event Processing Tests ──────────────────────────────────────────

    #[tokio::test]
    async fn process_request_will_be_sent() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        let msg = CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705321845.0,
                "request": {
                    "method": "GET",
                    "url": "https://example.com/page",
                    "httpVersion": "HTTP/2",
                    "headers": {
                        "User-Agent": "hpx/1.0",
                        "Accept": "text/html"
                    }
                }
            })),
            result: None,
            error: None,
            session_id: None,
        };

        capture.process_event(msg);

        assert_eq!(capture.state.pending.len(), 1);
        let pending = capture.state.pending.get("req-1").unwrap();
        assert_eq!(pending.method, "GET");
        assert_eq!(pending.url, "https://example.com/page");
        assert_eq!(pending.http_version, "HTTP/2");
        assert_eq!(pending.headers.len(), 2);
        assert_eq!(pending.started_time, "2024-01-15T12:30:45.000Z");
    }

    #[tokio::test]
    async fn process_response_received() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        // First: requestWillBeSent
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705319445.0,
                "request": {
                    "method": "POST",
                    "url": "https://example.com/api",
                    "httpVersion": "HTTP/1.1",
                    "headers": {}
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        // Then: responseReceived
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.responseReceived".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "response": {
                    "status": 201,
                    "statusText": "Created",
                    "headers": {
                        "content-type": "application/json"
                    },
                    "bodySize": 256
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        let pending = capture.state.pending.get("req-1").unwrap();
        assert_eq!(pending.status, Some(201));
        assert_eq!(pending.status_text.as_deref(), Some("Created"));
        assert_eq!(pending.response_body_size, Some(256));
    }

    #[tokio::test]
    async fn process_loading_finished_finalizes_entry() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        // requestWillBeSent
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705319445.0,
                "request": {
                    "method": "GET",
                    "url": "https://example.com/",
                    "httpVersion": "HTTP/1.1",
                    "headers": {}
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        // responseReceived
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.responseReceived".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "response": {
                    "status": 200,
                    "statusText": "OK",
                    "headers": { "content-type": "text/html" },
                    "bodySize": 512
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        // loadingFinished
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.loadingFinished".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "encodedDataLength": 480
            })),
            result: None,
            error: None,
            session_id: None,
        });

        assert!(capture.state.pending.is_empty());
        assert_eq!(capture.state.entries.len(), 1);

        let entry = &capture.state.entries[0];
        assert_eq!(entry.request.method, "GET");
        assert_eq!(entry.request.url, "https://example.com/");
        assert_eq!(entry.response.status, 200);
        assert_eq!(entry.response.content.size, 512);
        assert_eq!(entry.response.content.mime_type, "text/html");
    }

    #[tokio::test]
    async fn process_loading_failed_sets_error_status() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705319445.0,
                "request": {
                    "method": "GET",
                    "url": "https://example.com/timeout",
                    "httpVersion": "HTTP/1.1",
                    "headers": {}
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.loadingFailed".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "errorText": "net::ERR_TIMED_OUT"
            })),
            result: None,
            error: None,
            session_id: None,
        });

        assert!(capture.state.pending.is_empty());
        assert_eq!(capture.state.entries.len(), 1);

        let entry = &capture.state.entries[0];
        assert_eq!(entry.response.status, 0);
        assert_eq!(entry.response.status_text, "net::ERR_TIMED_OUT");
    }

    #[tokio::test]
    async fn ignore_unknown_methods() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        capture.process_event(CdpMessage {
            id: None,
            method: Some("Page.loadEventFired".to_string()),
            params: Some(serde_json::json!({})),
            result: None,
            error: None,
            session_id: None,
        });

        assert!(capture.state.pending.is_empty());
        assert!(capture.state.entries.is_empty());
    }

    #[tokio::test]
    async fn ignore_messages_without_method() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        capture.process_event(CdpMessage {
            id: Some(1),
            method: None,
            params: None,
            result: Some(serde_json::json!({})),
            error: None,
            session_id: None,
        });

        assert!(capture.state.pending.is_empty());
        assert!(capture.state.entries.is_empty());
    }

    // ── stop / export / clear Tests ─────────────────────────────────────

    #[tokio::test]
    async fn export_snapshot_includes_pending() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        // Simulate a request that hasn't finished yet
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705319445.0,
                "request": {
                    "method": "GET",
                    "url": "https://example.com/",
                    "httpVersion": "HTTP/1.1",
                    "headers": {}
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        // Export should return an archive (even if no entries finalized)
        let archive = capture.export();
        assert_eq!(archive.log.version, "1.2");
        assert_eq!(archive.log.entries.len(), 0); // No finalized entries
    }

    #[tokio::test]
    async fn clear_resets_state() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705319445.0,
                "request": {
                    "method": "GET",
                    "url": "https://example.com/",
                    "httpVersion": "HTTP/1.1",
                    "headers": {}
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        assert_eq!(capture.state.pending.len(), 1);

        capture.clear();

        assert!(capture.state.pending.is_empty());
        assert!(capture.state.entries.is_empty());
    }

    #[tokio::test]
    async fn multiple_requests_tracked_independently() {
        let (_, rx) = broadcast::channel(1);
        let mut capture = HarCapture::new(rx);

        // Request 1
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705319445.0,
                "request": {
                    "method": "GET",
                    "url": "https://a.com/",
                    "httpVersion": "HTTP/1.1",
                    "headers": {}
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        // Request 2
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-2",
                "timestamp": 1705319446.0,
                "request": {
                    "method": "POST",
                    "url": "https://b.com/api",
                    "httpVersion": "HTTP/2",
                    "headers": {}
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });

        assert_eq!(capture.state.pending.len(), 2);

        // Finalize req-1
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.loadingFinished".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "encodedDataLength": 100
            })),
            result: None,
            error: None,
            session_id: None,
        });

        assert_eq!(capture.state.pending.len(), 1);
        assert_eq!(capture.state.entries.len(), 1);
        assert_eq!(capture.state.entries[0].request.url, "https://a.com/");

        // Finalize req-2
        capture.process_event(CdpMessage {
            id: None,
            method: Some("Network.loadingFinished".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-2",
                "encodedDataLength": 200
            })),
            result: None,
            error: None,
            session_id: None,
        });

        assert_eq!(capture.state.pending.len(), 0);
        assert_eq!(capture.state.entries.len(), 2);
    }

    // ── extract_headers_from_json Tests ─────────────────────────────────

    #[test]
    fn extract_headers_from_json_object() {
        let json = serde_json::json!({
            "Content-Type": "text/html",
            "X-Custom": "value"
        });
        let headers = extract_headers_from_json(&json);
        assert_eq!(headers.len(), 2);
        assert!(
            headers
                .iter()
                .any(|h| h.name == "Content-Type" && h.value == "text/html")
        );
        assert!(
            headers
                .iter()
                .any(|h| h.name == "X-Custom" && h.value == "value")
        );
    }

    #[test]
    fn extract_headers_from_non_object() {
        let json = serde_json::json!("not an object");
        let headers = extract_headers_from_json(&json);
        assert!(headers.is_empty());
    }

    #[test]
    fn extract_headers_from_empty_object() {
        let json = serde_json::json!({});
        let headers = extract_headers_from_json(&json);
        assert!(headers.is_empty());
    }

    #[test]
    fn extract_headers_non_string_values() {
        let json = serde_json::json!({
            "count": 42,
            "flag": true,
            "name": "test"
        });
        let headers = extract_headers_from_json(&json);
        assert_eq!(headers.len(), 3);
        // Non-string values should be stringified
        let count_header = headers.iter().find(|h| h.name == "count").unwrap();
        assert_eq!(count_header.value, "42");
    }

    // ── Full Lifecycle Test ─────────────────────────────────────────────

    #[tokio::test]
    async fn full_lifecycle_via_broadcast_channel() {
        let (tx, rx) = broadcast::channel::<CdpMessage>(1);
        let mut capture = HarCapture::new(rx);

        // Send requestWillBeSent
        let _ = tx.send(CdpMessage {
            id: None,
            method: Some("Network.requestWillBeSent".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "timestamp": 1705293045.0,
                "request": {
                    "method": "GET",
                    "url": "https://example.com/page",
                    "httpVersion": "HTTP/1.1",
                    "headers": { "Accept": "text/html" }
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });
        tokio::task::yield_now().await;

        // Send responseReceived
        let _ = tx.send(CdpMessage {
            id: None,
            method: Some("Network.responseReceived".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "response": {
                    "status": 200,
                    "statusText": "OK",
                    "headers": { "content-type": "text/html; charset=utf-8" },
                    "bodySize": 4096
                }
            })),
            result: None,
            error: None,
            session_id: None,
        });
        tokio::task::yield_now().await;

        // Send loadingFinished
        let _ = tx.send(CdpMessage {
            id: None,
            method: Some("Network.loadingFinished".to_string()),
            params: Some(serde_json::json!({
                "requestId": "req-1",
                "encodedDataLength": 3800
            })),
            result: None,
            error: None,
            session_id: None,
        });
        tokio::task::yield_now().await;

        let archive = capture.stop().await.expect("stop should succeed");
        let json = serde_json::to_string_pretty(&archive).expect("should serialize");

        assert!(json.contains("\"1.2\""));
        assert!(json.contains("\"hpx-browser\""));
        assert!(json.contains("\"GET\""));
        assert!(json.contains("\"https://example.com/page\""));
        assert!(json.contains("\"startedDateTime\""));
    }
}

#[cfg(all(test, feature = "proptest"))]
mod proptests {
    use proptest::prelude::*;

    use super::*;

    proptest! {
        #[test]
        fn har_archive_serialization_never_panics(
            entries in 0..10usize,
        ) {
            let mut har_entries = Vec::new();
            for i in 0..entries {
                har_entries.push(HarEntry {
                    started_date_time: format!("2024-01-15T12:30:{:02}.000Z", i % 60),
                    time: i as f64 * 10.0,
                    request: HarRequest {
                        method: "GET".to_string(),
                        url: format!("https://example.com/page/{i}"),
                        http_version: "HTTP/1.1".to_string(),
                        cookies: Vec::new(),
                        headers: Vec::new(),
                        query_string: Vec::new(),
                        post_data: None,
                        headers_size: -1,
                        body_size: -1,
                    },
                    response: HarResponse {
                        status: 200,
                        status_text: "OK".to_string(),
                        http_version: "HTTP/1.1".to_string(),
                        cookies: Vec::new(),
                        headers: Vec::new(),
                        content: HarContent {
                            size: 1024,
                            mime_type: "text/html".to_string(),
                            text: None,
                            encoding: None,
                        },
                        redirect_url: String::new(),
                        headers_size: -1,
                        body_size: 1024,
                    },
                    timings: HarTimings {
                        dns: -1.0,
                        connect: -1.0,
                        ssl: -1.0,
                        send: 0.0,
                        wait: 10.0,
                        receive: 10.0,
                    },
                    cache: None,
                    server_ip_address: None,
                    connection: None,
                });
            }

            let archive = HarArchive {
                log: HarLog {
                    version: "1.2".to_string(),
                    creator: HarCreator {
                        name: "hpx-browser".to_string(),
                        version: "0.1.0".to_string(),
                    },
                    entries: har_entries,
                },
            };

            let json = serde_json::to_string(&archive)?;
            let parsed: serde_json::Value = serde_json::from_str(&json)?;
            prop_assert_eq!(parsed["log"]["version"].as_str(), Some("1.2"));
            let entry_count = parsed["log"]["entries"].as_array().map_or(0, |a| a.len());
            prop_assert_eq!(entry_count, entries);
        }

        #[test]
        fn iso_timestamp_matches_format(
            seconds in 0.0f64..5_000_000_000.0f64,
        ) {
            let ts = iso_timestamp(seconds);
            // Must match: YYYY-MM-DDTHH:MM:SS.mmmZ
            prop_assert_eq!(ts.len(), 24, "timestamp length should be 24, got {}: {}", ts.len(), ts);
            prop_assert_eq!(&ts[4..5], "-");
            prop_assert_eq!(&ts[7..8], "-");
            prop_assert_eq!(&ts[10..11], "T");
            prop_assert_eq!(&ts[13..14], ":");
            prop_assert_eq!(&ts[16..17], ":");
            prop_assert_eq!(&ts[23..24], "Z");

            // Parse numeric parts
            let year: i64 = ts[0..4].parse()?;
            let month: i64 = ts[5..7].parse()?;
            let day: i64 = ts[8..10].parse()?;
            let hour: i64 = ts[11..13].parse()?;
            let minute: i64 = ts[14..16].parse()?;
            let sec: i64 = ts[17..19].parse()?;
            let millis: u64 = ts[20..23].parse()?;

            prop_assert!(month >= 1 && month <= 12, "month out of range: {month}");
            prop_assert!(day >= 1 && day <= 31, "day out of range: {day}");
            prop_assert!(hour >= 0 && hour <= 23, "hour out of range: {hour}");
            prop_assert!(minute >= 0 && minute <= 59, "minute out of range: {minute}");
            prop_assert!(sec >= 0 && sec <= 59, "second out of range: {sec}");
            prop_assert!(millis <= 999, "millis out of range: {millis}");

            // Re-derive from seconds to verify consistency
            let secs_floor = seconds.floor() as i64;
            let expected_millis = ((seconds - secs_floor as f64) * 1000.0).min(999.0).round() as u64;
            prop_assert_eq!(millis, expected_millis);
        }
    }
}