pgwire-replication 0.3.0

Tokio-based Postgres wire-protocol logical replication client (pgoutput) with TLS and SCRAM.
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
#![cfg(feature = "integration-tests")]

//! Integration tests for pgwire-replication core functionality.
//!
//! Run with:
//! ```bash
//! cargo test --features integration-tests -- --nocapture
//! ```
//!
//! Override port with PG_ITEST_PORT=55432 if needed.

use anyhow::{Context, Result};
use bytes::Bytes;
use pgwire_replication::{
    client::ReplicationEvent, Lsn, ReplicationClient, ReplicationConfig, TlsConfig,
};
use std::time::{Duration, Instant};
use testcontainers::runners::AsyncRunner;
use testcontainers::ContainerRequest;
use testcontainers::{core::IntoContainerPort, core::WaitFor, GenericImage, ImageExt};
use tokio::io::AsyncBufReadExt;
use tokio::task;
use tokio_postgres::NoTls;
use tracing::{debug, info, warn};

// ============================================================================
// Test Infrastructure
// ============================================================================

fn init_tracing() {
    let _ = tracing_subscriber::fmt()
        .with_env_filter(
            tracing_subscriber::EnvFilter::try_from_default_env().unwrap_or_else(|_| "info".into()),
        )
        .with_test_writer()
        .try_init();
}

fn get_available_port() -> u16 {
    std::net::TcpListener::bind("127.0.0.1:0")
        .expect("bind ephemeral port")
        .local_addr()
        .expect("get local addr")
        .port()
}

fn postgres_image(host_port: u16) -> ContainerRequest<GenericImage> {
    GenericImage::new("postgres", "16-alpine")
        .with_wait_for(WaitFor::message_on_stderr(
            "database system is ready to accept connections",
        ))
        .with_env_var("POSTGRES_PASSWORD", "postgres")
        .with_env_var("POSTGRES_USER", "postgres")
        .with_env_var("POSTGRES_DB", "postgres")
        .with_cmd([
            "postgres",
            "-c",
            "wal_level=logical",
            "-c",
            "max_replication_slots=10",
            "-c",
            "max_wal_senders=10",
            "-c",
            "wal_keep_size=256MB",
        ])
        .with_mapped_port(host_port, 5432.tcp())
}

async fn follow_container_logs(container: &testcontainers::ContainerAsync<GenericImage>) {
    {
        let mut out = container.stdout(true);
        task::spawn(async move {
            let mut line = String::new();
            loop {
                line.clear();
                match out.read_line(&mut line).await {
                    Ok(0) => break,
                    Ok(_) => {
                        let l = line.trim_end();
                        if !l.is_empty() {
                            info!(target: "container:stdout", "{l}");
                        }
                    }
                    Err(e) => {
                        warn!(target: "container:stdout", "stdout follower error: {e}");
                        break;
                    }
                }
            }
        });
    }

    {
        let mut err = container.stderr(true);
        task::spawn(async move {
            let mut line = String::new();
            loop {
                line.clear();
                match err.read_line(&mut line).await {
                    Ok(0) => break,
                    Ok(_) => {
                        let l = line.trim_end();
                        if !l.is_empty() {
                            info!(target: "container:stderr", "{l}");
                        }
                    }
                    Err(e) => {
                        warn!(target: "container:stderr", "stderr follower error: {e}");
                        break;
                    }
                }
            }
        });
    }
}

// ============================================================================
// Postgres Helpers
// ============================================================================

async fn connect_pg(port: u16) -> Result<tokio_postgres::Client> {
    let dsn = format!("host=127.0.0.1 port={port} user=postgres password=postgres dbname=postgres");
    let (client, conn) = tokio_postgres::connect(&dsn, NoTls)
        .await
        .context("connect control-plane postgres")?;

    tokio::spawn(async move {
        if let Err(e) = conn.await {
            warn!("control-plane connection error: {e}");
        }
    });

    Ok(client)
}

async fn wait_for_pg_ready(port: u16, timeout: Duration) -> Result<tokio_postgres::Client> {
    let start = Instant::now();
    loop {
        match connect_pg(port).await {
            Ok(c) => return Ok(c),
            Err(e) => {
                if start.elapsed() > timeout {
                    return Err(e).context("postgres did not become ready in time");
                }
                tokio::time::sleep(Duration::from_millis(200)).await;
            }
        }
    }
}

async fn current_wal_lsn(client: &tokio_postgres::Client) -> Result<Lsn> {
    let row = client
        .query_one("SELECT pg_current_wal_lsn()::text", &[])
        .await
        .context("read pg_current_wal_lsn")?;
    let lsn_str: String = row.get(0);
    Lsn::parse(&lsn_str).context(format!("parse lsn: {lsn_str}"))
}

async fn setup_publication_and_slot(
    client: &tokio_postgres::Client,
    slot: &str,
    publication: &str,
) -> Result<()> {
    client
        .batch_execute("CREATE TABLE IF NOT EXISTS t(id INT PRIMARY KEY, v TEXT);")
        .await
        .context("create table")?;

    client
        .batch_execute(&format!("DROP PUBLICATION IF EXISTS {publication};"))
        .await
        .context("drop publication")?;

    client
        .batch_execute(&format!("CREATE PUBLICATION {publication} FOR TABLE t;"))
        .await
        .context("create publication")?;

    client
        .batch_execute(&format!(
            "SELECT pg_drop_replication_slot('{slot}')
             WHERE EXISTS (SELECT 1 FROM pg_replication_slots WHERE slot_name='{slot}');"
        ))
        .await
        .context("drop slot if exists")?;

    client
        .batch_execute(&format!(
            "SELECT * FROM pg_create_logical_replication_slot('{slot}','pgoutput');"
        ))
        .await
        .context("create logical slot")?;

    Ok(())
}

// ============================================================================
// Replication Helpers
// ============================================================================

fn replication_config(
    host_port: u16,
    slot: &str,
    publication: &str,
    start_lsn: Lsn,
    stop_at_lsn: Option<Lsn>,
) -> ReplicationConfig {
    ReplicationConfig {
        host: "127.0.0.1".into(),
        port: host_port,
        user: "postgres".into(),
        password: "postgres".into(),
        database: "postgres".into(),
        tls: TlsConfig::disabled(),
        slot: slot.into(),
        publication: publication.into(),
        start_lsn,
        stop_at_lsn,
        status_interval: Duration::from_secs(1),
        idle_wakeup_interval: Duration::from_secs(15),
        buffer_events: 2048,
    }
}

async fn start_repl(
    host_port: u16,
    start_lsn: Lsn,
    stop_at_lsn: Option<Lsn>,
) -> Result<ReplicationClient> {
    ReplicationClient::connect(replication_config(
        host_port,
        "slot1",
        "pub1",
        start_lsn,
        stop_at_lsn,
    ))
    .await
    .context("connect replication client")
}

/// Receive events until XLogData arrives. Returns (wal_end, payload, keepalive_count).
async fn recv_until_xlog(
    client: &mut ReplicationClient,
    timeout: Duration,
) -> Result<(Lsn, Bytes, usize)> {
    let deadline = Instant::now() + timeout;
    let mut keepalives = 0usize;

    while Instant::now() < deadline {
        let ev = client.recv().await.context("recv replication event")?;
        let Some(ev) = ev else {
            anyhow::bail!("replication stream ended unexpectedly");
        };
        match ev {
            ReplicationEvent::XLogData { wal_end, data, .. } => {
                debug!("received XLogData wal_end={wal_end} bytes={}", data.len());
                client.update_applied_lsn(wal_end);
                return Ok((wal_end, data, keepalives));
            }
            ReplicationEvent::KeepAlive {
                wal_end,
                reply_requested,
                ..
            } => {
                keepalives += 1;
                debug!("received KeepAlive wal_end={wal_end} reply_requested={reply_requested}");
            }
            ReplicationEvent::Begin { .. } => {}
            ReplicationEvent::Commit { end_lsn, .. } => {
                // Commit boundary; safe to advance (best-effort) while waiting for data
                client.update_applied_lsn(end_lsn);
            }
            ReplicationEvent::Message { .. } => {}
            ReplicationEvent::StoppedAt { reached } => {
                anyhow::bail!("stopped unexpectedly at {reached} without observing XLogData");
            }
        }
    }

    anyhow::bail!("timeout waiting for XLogData");
}

/// Drain all available XLogData events until idle (keepalive) or timeout.
/// Returns count of XLogData events received.
async fn drain_xlog_events(
    client: &mut ReplicationClient,
    idle_wakeup_interval: Duration,
) -> Result<usize> {
    let mut count = 0usize;

    loop {
        match tokio::time::timeout(idle_wakeup_interval, client.recv()).await {
            Ok(Ok(Some(ReplicationEvent::XLogData { wal_end, .. }))) => {
                client.update_applied_lsn(wal_end);
                count += 1;
            }
            Ok(Ok(Some(ReplicationEvent::KeepAlive { .. }))) => {
                // Idle - we've caught up
                break;
            }
            Ok(Ok(Some(ReplicationEvent::Begin { .. }))) => {}
            Ok(Ok(Some(ReplicationEvent::Commit { end_lsn, .. }))) => {
                client.update_applied_lsn(end_lsn);
            }
            Ok(Ok(Some(ReplicationEvent::Message { .. }))) => {}
            Ok(Ok(Some(ReplicationEvent::StoppedAt { .. }))) => break,
            Ok(Ok(None)) => break, // stream ended
            Ok(Err(e)) => return Err(e.into()),
            Err(_) => break, // timeout - assume caught up
        }
    }

    Ok(count)
}

async fn recv_keepalive(client: &mut ReplicationClient, timeout: Duration) -> Result<Lsn> {
    let deadline = Instant::now() + timeout;
    while Instant::now() < deadline {
        let ev = client.recv().await.context("recv replication event")?;
        let Some(ev) = ev else {
            anyhow::bail!("replication stream ended unexpectedly");
        };
        match ev {
            ReplicationEvent::KeepAlive { wal_end, .. } => return Ok(wal_end),
            ReplicationEvent::XLogData { wal_end, .. } => {
                client.update_applied_lsn(wal_end);
            }
            ReplicationEvent::Begin { .. } => {}
            ReplicationEvent::Commit { end_lsn, .. } => {
                client.update_applied_lsn(end_lsn);
            }
            ReplicationEvent::Message { .. } => {}
            ReplicationEvent::StoppedAt { reached } => {
                anyhow::bail!("stopped unexpectedly at {reached}")
            }
        }
    }
    anyhow::bail!("timeout waiting for KeepAlive");
}

async fn recv_stopped_at(client: &mut ReplicationClient, timeout: Duration) -> Result<Lsn> {
    let deadline = Instant::now() + timeout;
    while Instant::now() < deadline {
        let ev = client.recv().await.context("recv replication event")?;
        let Some(ev) = ev else {
            anyhow::bail!("replication stream ended unexpectedly");
        };
        match ev {
            ReplicationEvent::StoppedAt { reached } => return Ok(reached),
            ReplicationEvent::XLogData { wal_end, .. } => client.update_applied_lsn(wal_end),
            ReplicationEvent::Message { .. } => {}
            ReplicationEvent::Begin { .. } => {}
            ReplicationEvent::Commit { end_lsn, .. } => client.update_applied_lsn(end_lsn),
            ReplicationEvent::KeepAlive { wal_end, .. } => {
                debug!("keepalive while waiting stop reached wal_end={wal_end}")
            }
        }
    }
    anyhow::bail!("timeout waiting for StoppedAt");
}

/// Receive events until a Message event arrives.
async fn recv_until_message_event(
    client: &mut ReplicationClient,
    timeout: Duration,
) -> Result<(String, Bytes, bool)> {
    let deadline = Instant::now() + timeout;
    while Instant::now() < deadline {
        let ev = client.recv().await.context("recv")?;
        let Some(ev) = ev else {
            anyhow::bail!("stream ended unexpectedly");
        };
        match ev {
            ReplicationEvent::Message {
                prefix,
                content,
                transactional,
                ..
            } => return Ok((prefix, content, transactional)),
            ReplicationEvent::Commit { end_lsn, .. } => {
                client.update_applied_lsn(end_lsn);
            }
            ReplicationEvent::XLogData { wal_end, .. } => {
                client.update_applied_lsn(wal_end);
            }
            _ => {}
        }
    }
    anyhow::bail!("timeout waiting for Message event");
}

// ============================================================================
// Tests
// ============================================================================

/// Core E2E test covering:
/// - Keepalive handling while idle
/// - INSERT/UPDATE/DELETE replication
/// - Seek (reconnect from known LSN)
/// - Bounded replay (stop_at_lsn)
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn postgres_replication_e2e() -> Result<()> {
    init_tracing();

    let host_port: u16 = std::env::var("PG_ITEST_PORT")
        .ok()
        .and_then(|s| s.parse().ok())
        .unwrap_or_else(get_available_port);

    info!("starting postgres container on host port {host_port}");
    let image = postgres_image(host_port);
    let container = image.start().await.expect("start postgres");
    info!("container id={}", container.id());

    follow_container_logs(&container).await;

    let client = wait_for_pg_ready(host_port, Duration::from_secs(30)).await?;
    setup_publication_and_slot(&client, "slot1", "pub1").await?;

    // Clean slate
    client.execute("DELETE FROM t", &[]).await?;

    let base_lsn = current_wal_lsn(&client).await?;
    info!("base LSN: {base_lsn}");

    // -------------------------------------------------------------------------
    // Phase 1: Keepalive handling while idle
    // -------------------------------------------------------------------------
    let mut repl = start_repl(host_port, base_lsn, None).await?;
    info!("replication connected from base_lsn={base_lsn}");

    let ka_wal_end = recv_keepalive(&mut repl, Duration::from_secs(10)).await?;
    info!("phase 1: observed keepalive wal_end={ka_wal_end}");

    // -------------------------------------------------------------------------
    // Phase 2: INSERT replication
    // -------------------------------------------------------------------------
    client
        .execute("INSERT INTO t(id, v) VALUES (1, 'hello')", &[])
        .await
        .context("insert")?;

    let (wal_end_insert, data, _) = recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;
    info!(
        "phase 2: INSERT observed wal_end={wal_end_insert} payload_bytes={}",
        data.len()
    );
    anyhow::ensure!(
        !data.is_empty(),
        "expected non-empty pgoutput payload for INSERT"
    );

    // -------------------------------------------------------------------------
    // Phase 3: UPDATE replication
    // -------------------------------------------------------------------------
    client
        .execute("UPDATE t SET v = 'updated' WHERE id = 1", &[])
        .await
        .context("update")?;

    let (_wal_end_update, data, _) = recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;
    info!("phase 3: UPDATE observed payload_bytes={}", data.len());
    anyhow::ensure!(
        !data.is_empty(),
        "expected non-empty pgoutput payload for UPDATE"
    );
    // Note: wal_end in XLogData can be 0/0 for messages within a transaction.
    // Only commit messages reliably have the actual LSN.

    // -------------------------------------------------------------------------
    // Phase 4: DELETE replication
    // -------------------------------------------------------------------------
    client
        .execute("DELETE FROM t WHERE id = 1", &[])
        .await
        .context("delete")?;

    let (_wal_end_delete, data, _) = recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;
    info!("phase 4: DELETE observed payload_bytes={}", data.len());
    anyhow::ensure!(
        !data.is_empty(),
        "expected non-empty pgoutput payload for DELETE"
    );

    let lsn_after_delete = current_wal_lsn(&client).await?;

    // Stop first replication session
    repl.stop();
    let _ = repl.join().await;

    // -------------------------------------------------------------------------
    // Phase 5: Seek - reconnect from known LSN
    // -------------------------------------------------------------------------
    // Insert while disconnected
    client
        .execute("INSERT INTO t(id, v) VALUES (2, 'world')", &[])
        .await
        .context("insert while disconnected")?;

    // Reconnect from lsn_after_delete - should see the new insert
    let mut repl2 = start_repl(host_port, lsn_after_delete, None).await?;
    info!("phase 5: reconnected from lsn_after_delete={lsn_after_delete}");

    let (wal_end_reconnect, _, _) = recv_until_xlog(&mut repl2, Duration::from_secs(10)).await?;
    let lsn_after_reconnect = current_wal_lsn(&client).await?;
    info!("phase 5: seek verified wal_end={wal_end_reconnect} sql_lsn={lsn_after_reconnect}");

    anyhow::ensure!(
        lsn_after_reconnect > lsn_after_delete,
        "expected LSN to advance after reconnect insert"
    );

    repl2.stop();
    let _ = repl2.join().await;

    // -------------------------------------------------------------------------
    // Phase 6: Bounded replay (stop_at_lsn)
    // -------------------------------------------------------------------------
    let stop_target = lsn_after_reconnect;
    let mut repl3 = start_repl(host_port, lsn_after_delete, Some(stop_target)).await?;
    info!("phase 6: bounded replay start={lsn_after_delete} stop_at={stop_target}");

    let reached = recv_stopped_at(&mut repl3, Duration::from_secs(15)).await?;
    info!("phase 6: bounded replay stopped at reached={reached}");

    anyhow::ensure!(
        reached >= stop_target,
        "expected reached >= stop_at; reached={reached}, stop_at={stop_target}"
    );

    repl3.stop();
    let _ = repl3.join().await;

    info!("E2E test completed successfully");
    Ok(())
}

/// Test batch inserts - ensures we handle rapid WAL production correctly.
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn postgres_replication_batch_insert() -> Result<()> {
    init_tracing();

    let host_port: u16 = std::env::var("PG_ITEST_PORT")
        .ok()
        .and_then(|s| s.parse().ok())
        .unwrap_or_else(get_available_port);

    info!("starting postgres container on host port {host_port}");
    let image = postgres_image(host_port);
    let container = image.start().await.expect("start postgres");

    follow_container_logs(&container).await;

    let client = wait_for_pg_ready(host_port, Duration::from_secs(30)).await?;
    setup_publication_and_slot(&client, "slot_batch", "pub_batch").await?;

    client.execute("DELETE FROM t", &[]).await?;

    let base_lsn = current_wal_lsn(&client).await?;

    let mut repl = ReplicationClient::connect(replication_config(
        host_port,
        "slot_batch",
        "pub_batch",
        base_lsn,
        None,
    ))
    .await?;

    // Wait for connection to stabilize
    recv_keepalive(&mut repl, Duration::from_secs(10)).await?;

    // Batch insert 100 rows
    const BATCH_SIZE: i32 = 100;
    for i in 0..BATCH_SIZE {
        client
            .execute(
                "INSERT INTO t(id, v) VALUES ($1, $2) ON CONFLICT (id) DO UPDATE SET v = excluded.v",
                &[&i, &format!("batch_val_{i}")],
            )
            .await?;
    }
    info!("inserted {BATCH_SIZE} rows");

    // Wait for at least one XLogData event (proves replication is working)
    let (first_wal_end, first_data, _) =
        recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;
    info!(
        "first batch event: wal_end={first_wal_end} bytes={}",
        first_data.len()
    );

    // Drain remaining XLogData events
    let remaining = drain_xlog_events(&mut repl, Duration::from_secs(2)).await?;
    let total = 1 + remaining;
    info!("received {total} total XLogData events from batch insert");

    // We should receive at least some events (exact count depends on transaction batching)
    anyhow::ensure!(
        total > 0,
        "expected at least one XLogData event from batch insert"
    );

    repl.stop();
    let _ = repl.join().await;

    info!("batch insert test completed successfully");
    Ok(())
}

/// Test error handling: connecting with a nonexistent slot should fail.
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn postgres_replication_invalid_slot_error() -> Result<()> {
    init_tracing();

    let host_port: u16 = std::env::var("PG_ITEST_PORT")
        .ok()
        .and_then(|s| s.parse().ok())
        .unwrap_or_else(get_available_port);

    info!("starting postgres container on host port {host_port}");
    let image = postgres_image(host_port);
    let container = image.start().await.expect("start postgres");

    follow_container_logs(&container).await;

    let client = wait_for_pg_ready(host_port, Duration::from_secs(30)).await?;

    // Create publication but NOT the slot
    client
        .batch_execute("CREATE TABLE IF NOT EXISTS t(id INT PRIMARY KEY, v TEXT);")
        .await?;
    client
        .batch_execute("DROP PUBLICATION IF EXISTS pub_noexist;")
        .await?;
    client
        .batch_execute("CREATE PUBLICATION pub_noexist FOR TABLE t;")
        .await?;

    let base_lsn = current_wal_lsn(&client).await?;

    // Attempt to connect with nonexistent slot
    let result = ReplicationClient::connect(replication_config(
        host_port,
        "nonexistent_slot_xyz",
        "pub_noexist",
        base_lsn,
        None,
    ))
    .await;

    match result {
        Ok(mut repl) => {
            // Connection might succeed but first recv should fail
            let recv_result = repl.recv().await;
            anyhow::ensure!(
                recv_result.is_err(),
                "expected error when using nonexistent slot, got: {:?}",
                recv_result
            );
            info!("invalid slot error surfaced on recv (as expected)");
        }
        Err(e) => {
            info!("invalid slot error surfaced on connect (as expected): {e}");
        }
    }

    info!("invalid slot error test completed successfully");
    Ok(())
}

/// Test multi-table publication (verifies we handle multiple relations).
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn postgres_replication_multi_table() -> Result<()> {
    init_tracing();

    let host_port: u16 = std::env::var("PG_ITEST_PORT")
        .ok()
        .and_then(|s| s.parse().ok())
        .unwrap_or_else(get_available_port);

    info!("starting postgres container on host port {host_port}");
    let image = postgres_image(host_port);
    let container = image.start().await.expect("start postgres");

    follow_container_logs(&container).await;

    let client = wait_for_pg_ready(host_port, Duration::from_secs(30)).await?;

    // Create two tables
    client
        .batch_execute(
            "CREATE TABLE IF NOT EXISTS t1(id INT PRIMARY KEY, v TEXT);
             CREATE TABLE IF NOT EXISTS t2(id INT PRIMARY KEY, v TEXT);",
        )
        .await?;

    client
        .batch_execute("DROP PUBLICATION IF EXISTS pub_multi;")
        .await?;
    client
        .batch_execute("CREATE PUBLICATION pub_multi FOR TABLE t1, t2;")
        .await?;

    client
        .batch_execute(
            "SELECT pg_drop_replication_slot('slot_multi')
             WHERE EXISTS (SELECT 1 FROM pg_replication_slots WHERE slot_name='slot_multi');",
        )
        .await?;
    client
        .batch_execute("SELECT * FROM pg_create_logical_replication_slot('slot_multi','pgoutput');")
        .await?;

    client.execute("DELETE FROM t1", &[]).await?;
    client.execute("DELETE FROM t2", &[]).await?;

    let base_lsn = current_wal_lsn(&client).await?;

    let mut repl = ReplicationClient::connect(replication_config(
        host_port,
        "slot_multi",
        "pub_multi",
        base_lsn,
        None,
    ))
    .await?;

    recv_keepalive(&mut repl, Duration::from_secs(10)).await?;

    // Insert into both tables
    client
        .execute("INSERT INTO t1(id, v) VALUES (1, 'table1_row')", &[])
        .await?;
    let (_wal_t1, data_t1, _) = recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;
    info!("t1 insert: bytes={}", data_t1.len());

    client
        .execute("INSERT INTO t2(id, v) VALUES (1, 'table2_row')", &[])
        .await?;
    let (_wal_t2, data_t2, _) = recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;
    info!("t2 insert: bytes={}", data_t2.len());

    anyhow::ensure!(!data_t1.is_empty(), "expected payload for t1 insert");
    anyhow::ensure!(!data_t2.is_empty(), "expected payload for t2 insert");
    // Note: wal_end ordering not checked - can be 0/0 for messages within transactions

    repl.stop();
    let _ = repl.join().await;

    info!("multi-table test completed successfully");
    Ok(())
}

/// Test that `pg_logical_emit_message()` messages are received.
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
async fn postgres_logical_emit_message() -> Result<()> {
    init_tracing();

    let host_port: u16 = std::env::var("PG_ITEST_PORT")
        .ok()
        .and_then(|s| s.parse().ok())
        .unwrap_or_else(get_available_port);

    info!("starting postgres container on host port {host_port}");
    let image = postgres_image(host_port);
    let container = image.start().await.expect("start postgres");

    follow_container_logs(&container).await;

    let client = wait_for_pg_ready(host_port, Duration::from_secs(30)).await?;
    setup_publication_and_slot(&client, "slot_msg", "pub_msg").await?;
    let base_lsn = current_wal_lsn(&client).await?;

    let mut repl = ReplicationClient::connect(replication_config(
        host_port, "slot_msg", "pub_msg", base_lsn, None,
    ))
    .await
    .context("connect")?;

    let _ = recv_keepalive(&mut repl, Duration::from_secs(10)).await?;

    // Non-transactional message
    client
        .batch_execute("SELECT pg_logical_emit_message(false, 'test.ping', 'hello from pg');")
        .await?;

    let (prefix, content, transactional) =
        recv_until_message_event(&mut repl, Duration::from_secs(10)).await?;
    assert_eq!(prefix, "test.ping");
    assert_eq!(&content[..], b"hello from pg");
    assert!(!transactional);

    // Transactional message inside a transaction with DML
    client
        .batch_execute(
            "BEGIN;
             INSERT INTO t(id, v) VALUES (100, 'msg_test');
             SELECT pg_logical_emit_message(true, 'test.checkpoint', 'txn-marker');
             COMMIT;",
        )
        .await?;

    let (prefix, content, transactional) =
        recv_until_message_event(&mut repl, Duration::from_secs(10)).await?;
    assert_eq!(prefix, "test.checkpoint");
    assert_eq!(&content[..], b"txn-marker");
    assert!(transactional);

    repl.stop();
    let _ = repl.join().await;
    info!("pg_logical_emit_message test passed");
    Ok(())
}

// ============================================================================
// SCRAM-SHA-256 Authentication Test
// ============================================================================

/// Test SCRAM-SHA-256 authentication (the default in PostgreSQL 14+).
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
#[cfg(feature = "scram")]
async fn postgres_replication_scram_auth() -> Result<()> {
    init_tracing();
    let host_port = get_available_port();

    // Create pg_hba.conf that requires scram-sha-256
    let hba_content = r#"
# TYPE  DATABASE        USER            ADDRESS                 METHOD
local   all             all                                     scram-sha-256
host    all             all             0.0.0.0/0               scram-sha-256
host    all             all             ::/0                    scram-sha-256
host    replication     all             0.0.0.0/0               scram-sha-256
host    replication     all             ::/0                    scram-sha-256
"#;

    let temp_dir = tempfile::tempdir()?;
    let hba_path = temp_dir.path().join("pg_hba.conf");
    std::fs::write(&hba_path, hba_content)?;

    info!("starting postgres container with SCRAM auth on port {host_port}");

    let image = GenericImage::new("postgres", "16-alpine")
        .with_wait_for(WaitFor::message_on_stderr(
            "database system is ready to accept connections",
        ))
        .with_env_var("POSTGRES_PASSWORD", "scram_test_password")
        .with_env_var("POSTGRES_USER", "scram_user")
        .with_env_var("POSTGRES_DB", "postgres")
        .with_env_var("POSTGRES_HOST_AUTH_METHOD", "scram-sha-256")
        .with_env_var(
            "POSTGRES_INITDB_ARGS",
            "--auth-host=scram-sha-256 --auth-local=scram-sha-256",
        )
        .with_cmd([
            "postgres",
            "-c",
            "wal_level=logical",
            "-c",
            "max_replication_slots=10",
            "-c",
            "max_wal_senders=10",
            "-c",
            "password_encryption=scram-sha-256",
        ])
        .with_mapped_port(host_port, 5432.tcp());

    let container = image.start().await.expect("start postgres with SCRAM");
    follow_container_logs(&container).await;

    // Connect with tokio-postgres first to set up slot (it handles SCRAM internally)
    let dsn = format!(
        "host=127.0.0.1 port={host_port} user=scram_user password=scram_test_password dbname=postgres"
    );

    let client = loop {
        match tokio_postgres::connect(&dsn, NoTls).await {
            Ok((client, conn)) => {
                tokio::spawn(async move {
                    let _ = conn.await;
                });
                break client;
            }
            Err(_) => tokio::time::sleep(Duration::from_millis(500)).await,
        }
    };

    // Setup replication
    client
        .batch_execute("CREATE TABLE IF NOT EXISTS t(id INT PRIMARY KEY, v TEXT);")
        .await?;
    client
        .batch_execute("DROP PUBLICATION IF EXISTS pub_scram;")
        .await?;
    client
        .batch_execute("CREATE PUBLICATION pub_scram FOR TABLE t;")
        .await?;
    client
        .batch_execute(
            "SELECT pg_drop_replication_slot('slot_scram')
             WHERE EXISTS (SELECT 1 FROM pg_replication_slots WHERE slot_name='slot_scram');",
        )
        .await?;
    client
        .batch_execute("SELECT * FROM pg_create_logical_replication_slot('slot_scram','pgoutput');")
        .await?;

    let base_lsn = current_wal_lsn(&client).await?;
    info!("SCRAM test: base_lsn={base_lsn}");

    // Now connect with our replication client using SCRAM
    let config = ReplicationConfig {
        host: "127.0.0.1".into(),
        port: host_port,
        user: "scram_user".into(),
        password: "scram_test_password".into(),
        database: "postgres".into(),
        tls: TlsConfig::disabled(),
        slot: "slot_scram".into(),
        publication: "pub_scram".into(),
        start_lsn: base_lsn,
        stop_at_lsn: None,
        status_interval: Duration::from_secs(1),
        idle_wakeup_interval: Duration::from_secs(15),
        buffer_events: 1024,
    };

    let mut repl = ReplicationClient::connect(config)
        .await
        .context("connect with SCRAM auth")?;

    info!("SCRAM auth successful, waiting for keepalive");

    // Verify connection works
    let ka = recv_keepalive(&mut repl, Duration::from_secs(10)).await?;
    info!("SCRAM test: received keepalive wal_end={ka}");

    // Test actual replication
    client
        .execute("INSERT INTO t(id, v) VALUES (1, 'scram_test')", &[])
        .await?;

    let (wal_end, data, _) = recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;
    info!(
        "SCRAM test: received XLogData wal_end={wal_end} bytes={}",
        data.len()
    );

    anyhow::ensure!(
        !data.is_empty(),
        "expected payload from SCRAM-authenticated replication"
    );

    repl.stop();
    let _ = repl.join().await;

    info!("SCRAM authentication test completed successfully");
    Ok(())
}

// ============================================================================
// TLS Connection Test
// ============================================================================

/// Test TLS connection with certificate verification.
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
#[cfg(feature = "tls-rustls")]
async fn postgres_replication_tls() -> Result<()> {
    use std::process::Command;

    init_tracing();

    let host_port = get_available_port();

    // Create temp directory for certificates
    let cert_dir = tempfile::tempdir()?;
    let cert_path = cert_dir.path();

    // Generate X.509v3 CA certificate (rustls requires v3 with proper extensions)
    let ca_key = cert_path.join("ca.key");
    let ca_cert = cert_path.join("ca.crt");

    let status = Command::new("openssl")
        .args([
            "req",
            "-new",
            "-x509",
            "-days",
            "1",
            "-nodes",
            "-newkey",
            "rsa:2048",
            "-keyout",
            ca_key.to_str().unwrap(),
            "-out",
            ca_cert.to_str().unwrap(),
            "-subj",
            "/CN=Test-CA",
            "-addext",
            "basicConstraints=critical,CA:TRUE",
            "-addext",
            "keyUsage=critical,keyCertSign,cRLSign",
        ])
        .status()
        .context("generate CA cert")?;
    anyhow::ensure!(status.success(), "openssl CA generation failed");

    // Server key and CSR
    let server_key = cert_path.join("server.key");
    let server_csr = cert_path.join("server.csr");
    let server_cert = cert_path.join("server.crt");

    let status = Command::new("openssl")
        .args([
            "req",
            "-new",
            "-nodes",
            "-newkey",
            "rsa:2048",
            "-keyout",
            server_key.to_str().unwrap(),
            "-out",
            server_csr.to_str().unwrap(),
            "-subj",
            "/CN=localhost",
        ])
        .status()
        .context("generate server key/CSR")?;
    anyhow::ensure!(status.success(), "openssl server key generation failed");

    // Create extensions file for server cert (X.509v3)
    let ext_file = cert_path.join("server.ext");
    std::fs::write(
        &ext_file,
        "basicConstraints=CA:FALSE\n\
         keyUsage=critical,digitalSignature,keyEncipherment\n\
         extendedKeyUsage=serverAuth\n\
         subjectAltName=DNS:localhost,IP:127.0.0.1\n",
    )?;

    // Sign server cert with CA (with extensions for X.509v3)
    let status = Command::new("openssl")
        .args([
            "x509",
            "-req",
            "-days",
            "1",
            "-in",
            server_csr.to_str().unwrap(),
            "-CA",
            ca_cert.to_str().unwrap(),
            "-CAkey",
            ca_key.to_str().unwrap(),
            "-CAcreateserial",
            "-out",
            server_cert.to_str().unwrap(),
            "-extfile",
            ext_file.to_str().unwrap(),
        ])
        .status()
        .context("sign server cert")?;
    anyhow::ensure!(status.success(), "openssl signing failed");

    info!("generated TLS certificates in {}", cert_path.display());

    // Start container with certs mounted
    let image = GenericImage::new("postgres", "16-alpine")
        .with_wait_for(WaitFor::message_on_stdout(
            "database system is ready to accept connections",
        ))
        .with_env_var("POSTGRES_PASSWORD", "postgres")
        .with_env_var("POSTGRES_USER", "postgres")
        .with_env_var("POSTGRES_DB", "postgres")
        .with_mount(testcontainers::core::Mount::bind_mount(
            cert_path.to_str().unwrap(),
            "/certs",
        ))
        .with_cmd([
            "sh",
            "-c",
            "chown postgres:postgres /certs/* && chmod 600 /certs/server.key && \
             exec /usr/local/bin/docker-entrypoint.sh postgres \
                -c wal_level=logical \
                -c max_replication_slots=10 \
                -c max_wal_senders=10 \
                -c ssl=on \
                -c ssl_cert_file=/certs/server.crt \
                -c ssl_key_file=/certs/server.key \
                -c ssl_ca_file=/certs/ca.crt",
        ])
        .with_mapped_port(host_port, 5432.tcp());

    info!("starting postgres container with TLS on port {host_port}");
    let container = image.start().await.expect("start postgres with TLS");
    follow_container_logs(&container).await;

    // Wait for postgres with TLS
    let client = wait_for_pg_ready(host_port, Duration::from_secs(30)).await?;

    // Setup replication
    client
        .batch_execute("CREATE TABLE IF NOT EXISTS t(id INT PRIMARY KEY, v TEXT);")
        .await?;
    client
        .batch_execute("DROP PUBLICATION IF EXISTS pub_tls;")
        .await?;
    client
        .batch_execute("CREATE PUBLICATION pub_tls FOR TABLE t;")
        .await?;
    client
        .batch_execute(
            "SELECT pg_drop_replication_slot('slot_tls')
             WHERE EXISTS (SELECT 1 FROM pg_replication_slots WHERE slot_name='slot_tls');",
        )
        .await?;
    client
        .batch_execute("SELECT * FROM pg_create_logical_replication_slot('slot_tls','pgoutput');")
        .await?;

    let base_lsn = current_wal_lsn(&client).await?;
    info!("TLS test: base_lsn={base_lsn}");

    // Connect with TLS (verify-ca mode since we're using localhost)
    let tls_config = TlsConfig::verify_ca(Some(ca_cert.clone()));

    let config = ReplicationConfig {
        host: "127.0.0.1".into(),
        port: host_port,
        user: "postgres".into(),
        password: "postgres".into(),
        database: "postgres".into(),
        tls: tls_config,
        slot: "slot_tls".into(),
        publication: "pub_tls".into(),
        start_lsn: base_lsn,
        stop_at_lsn: None,
        status_interval: Duration::from_secs(1),
        idle_wakeup_interval: Duration::from_secs(15),
        buffer_events: 1024,
    };

    info!("TLS connection successful, waiting for keepalive");

    let mut repl = ReplicationClient::connect(config)
        .await
        .context("connect with TLS")?;

    // Verify connection works
    let ka = recv_keepalive(&mut repl, Duration::from_secs(10)).await?;
    info!("TLS test: received keepalive wal_end={ka}");

    // Test actual replication over TLS
    client
        .execute("INSERT INTO t(id, v) VALUES (1, 'tls_test')", &[])
        .await?;

    let (wal_end, data, _) = recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;
    info!(
        "TLS test: received XLogData wal_end={wal_end} bytes={}",
        data.len()
    );

    anyhow::ensure!(
        !data.is_empty(),
        "expected payload from TLS-encrypted replication"
    );

    repl.stop();
    let _ = repl.join().await;

    info!("TLS connection test completed successfully");
    Ok(())
}

/// Test TLS with require mode (no verification - just encryption).
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
#[cfg(feature = "tls-rustls")]
async fn postgres_replication_tls_require_mode() -> Result<()> {
    use std::process::Command;

    init_tracing();

    let host_port = get_available_port();

    // Create temp directory for certificates
    let cert_dir = tempfile::tempdir()?;
    let cert_path = cert_dir.path();

    // Generate self-signed server certificate (no CA needed for require mode)
    let server_key = cert_path.join("server.key");
    let server_cert = cert_path.join("server.crt");

    let status = Command::new("openssl")
        .args([
            "req",
            "-new",
            "-x509",
            "-days",
            "1",
            "-nodes",
            "-newkey",
            "rsa:2048",
            "-keyout",
            server_key.to_str().unwrap(),
            "-out",
            server_cert.to_str().unwrap(),
            "-subj",
            "/CN=localhost",
        ])
        .status()
        .context("generate self-signed cert")?;
    anyhow::ensure!(status.success(), "openssl generation failed");

    info!("generated self-signed cert in {}", cert_path.display());

    let image = GenericImage::new("postgres", "16-alpine")
        .with_wait_for(WaitFor::message_on_stdout(
            "database system is ready to accept connections",
        ))
        .with_env_var("POSTGRES_PASSWORD", "postgres")
        .with_env_var("POSTGRES_USER", "postgres")
        .with_env_var("POSTGRES_DB", "postgres")
        .with_mount(testcontainers::core::Mount::bind_mount(
            cert_path.to_str().unwrap(),
            "/certs",
        ))
        .with_cmd([
            "sh",
            "-c",
            "chown postgres:postgres /certs/* && chmod 600 /certs/server.key && \
             exec /usr/local/bin/docker-entrypoint.sh postgres \
                -c wal_level=logical \
                -c max_replication_slots=10 \
                -c ssl=on \
                -c ssl_cert_file=/certs/server.crt \
                -c ssl_key_file=/certs/server.key",
        ])
        .with_mapped_port(host_port, 5432.tcp());

    info!("starting postgres with TLS (require mode) on port {host_port}");
    let container = image.start().await.expect("start postgres");
    follow_container_logs(&container).await;

    let client = wait_for_pg_ready(host_port, Duration::from_secs(30)).await?;

    // Setup
    client
        .batch_execute("CREATE TABLE IF NOT EXISTS t(id INT PRIMARY KEY, v TEXT);")
        .await?;
    client
        .batch_execute("DROP PUBLICATION IF EXISTS pub_tls_req;")
        .await?;
    client
        .batch_execute("CREATE PUBLICATION pub_tls_req FOR TABLE t;")
        .await?;
    client
        .batch_execute(
            "SELECT pg_drop_replication_slot('slot_tls_req')
             WHERE EXISTS (SELECT 1 FROM pg_replication_slots WHERE slot_name='slot_tls_req');",
        )
        .await?;
    client
        .batch_execute(
            "SELECT * FROM pg_create_logical_replication_slot('slot_tls_req','pgoutput');",
        )
        .await?;

    let base_lsn = current_wal_lsn(&client).await?;

    // Connect with TLS require mode (no verification)
    let config = ReplicationConfig {
        host: "127.0.0.1".into(),
        port: host_port,
        user: "postgres".into(),
        password: "postgres".into(),
        database: "postgres".into(),
        tls: TlsConfig::require(),
        slot: "slot_tls_req".into(),
        publication: "pub_tls_req".into(),
        start_lsn: base_lsn,
        stop_at_lsn: None,
        status_interval: Duration::from_secs(1),
        idle_wakeup_interval: Duration::from_secs(15),
        buffer_events: 1024,
    };

    let mut repl = ReplicationClient::connect(config)
        .await
        .context("connect with TLS require mode")?;

    let ka = recv_keepalive(&mut repl, Duration::from_secs(10)).await?;
    info!("TLS require mode: received keepalive wal_end={ka}");

    // Verify replication works
    client
        .execute("INSERT INTO t(id, v) VALUES (1, 'tls_require')", &[])
        .await?;
    let (wal_end, data, _) = recv_until_xlog(&mut repl, Duration::from_secs(10)).await?;

    anyhow::ensure!(!data.is_empty(), "expected payload");
    info!("TLS require mode: replication working, wal_end={wal_end}");

    repl.stop();
    let _ = repl.join().await;

    info!("TLS require mode test completed successfully");
    Ok(())
}

/// Test that TLS verification fails with wrong CA.
#[tokio::test(flavor = "multi_thread", worker_threads = 2)]
#[cfg(feature = "tls-rustls")]
async fn postgres_replication_tls_wrong_ca_fails() -> Result<()> {
    use std::process::Command;

    init_tracing();

    let host_port = get_available_port();
    let cert_dir = tempfile::tempdir()?;
    let cert_path = cert_dir.path();

    // Generate server cert
    let server_key = cert_path.join("server.key");
    let server_cert = cert_path.join("server.crt");

    Command::new("openssl")
        .args([
            "req",
            "-new",
            "-x509",
            "-days",
            "1",
            "-nodes",
            "-newkey",
            "rsa:2048",
            "-keyout",
            server_key.to_str().unwrap(),
            "-out",
            server_cert.to_str().unwrap(),
            "-subj",
            "/CN=localhost",
        ])
        .status()?;

    // Generate a DIFFERENT CA (that didn't sign the server cert)
    let wrong_ca = cert_path.join("wrong_ca.crt");
    Command::new("openssl")
        .args([
            "req",
            "-new",
            "-x509",
            "-days",
            "1",
            "-nodes",
            "-newkey",
            "rsa:2048",
            "-keyout",
            cert_path.join("wrong_ca.key").to_str().unwrap(),
            "-out",
            wrong_ca.to_str().unwrap(),
            "-subj",
            "/CN=Wrong-CA",
        ])
        .status()?;

    let image = GenericImage::new("postgres", "16-alpine")
        .with_wait_for(WaitFor::message_on_stdout(
            "database system is ready to accept connections",
        ))
        .with_env_var("POSTGRES_PASSWORD", "postgres")
        .with_env_var("POSTGRES_USER", "postgres")
        .with_env_var("POSTGRES_DB", "postgres")
        .with_mount(testcontainers::core::Mount::bind_mount(
            cert_path.to_str().unwrap(),
            "/certs",
        ))
        .with_cmd([
            "sh",
            "-c",
            "chown postgres:postgres /certs/* && chmod 600 /certs/server.key && \
             exec /usr/local/bin/docker-entrypoint.sh postgres \
                -c wal_level=logical \
                -c max_replication_slots=10 \
                -c ssl=on \
                -c ssl_cert_file=/certs/server.crt \
                -c ssl_key_file=/certs/server.key",
        ])
        .with_mapped_port(host_port, 5432.tcp());

    let container = image.start().await.expect("start postgres");
    follow_container_logs(&container).await;

    let client = wait_for_pg_ready(host_port, Duration::from_secs(30)).await?;

    client
        .batch_execute("CREATE TABLE IF NOT EXISTS t(id INT PRIMARY KEY, v TEXT);")
        .await?;
    client
        .batch_execute("DROP PUBLICATION IF EXISTS pub_wrong_ca;")
        .await?;
    client
        .batch_execute("CREATE PUBLICATION pub_wrong_ca FOR TABLE t;")
        .await?;
    client
        .batch_execute(
            "SELECT pg_drop_replication_slot('slot_wrong_ca')
             WHERE EXISTS (SELECT 1 FROM pg_replication_slots WHERE slot_name='slot_wrong_ca');",
        )
        .await?;
    client
        .batch_execute(
            "SELECT * FROM pg_create_logical_replication_slot('slot_wrong_ca','pgoutput');",
        )
        .await?;

    let base_lsn = current_wal_lsn(&client).await?;

    // Try to connect with wrong CA - should fail verification
    let config = ReplicationConfig {
        host: "127.0.0.1".into(),
        port: host_port,
        user: "postgres".into(),
        password: "postgres".into(),
        database: "postgres".into(),
        tls: TlsConfig::verify_ca(Some(wrong_ca)), // Wrong CA!
        slot: "slot_wrong_ca".into(),
        publication: "pub_wrong_ca".into(),
        start_lsn: base_lsn,
        stop_at_lsn: None,
        status_interval: Duration::from_secs(1),
        idle_wakeup_interval: Duration::from_secs(15),
        buffer_events: 1024,
    };

    let result = ReplicationClient::connect(config).await;

    match result {
        Ok(mut repl) => {
            // Connection might succeed but first operation should fail
            let recv_result = repl.recv().await;
            anyhow::ensure!(
                recv_result.is_err(),
                "expected TLS verification to fail with wrong CA"
            );
            info!("TLS verification failed as expected (on recv)");
        }
        Err(e) => {
            info!("TLS verification failed as expected: {e}");
            anyhow::ensure!(
                e.to_string().to_lowercase().contains("tls")
                    || e.to_string().to_lowercase().contains("certificate")
                    || e.to_string().to_lowercase().contains("ssl")
                    || e.to_string().to_lowercase().contains("verify"),
                "expected TLS-related error, got: {e}"
            );
        }
    }

    info!("TLS wrong CA test completed successfully");
    Ok(())
}