mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-05 00:32:17 +01:00
43 lines
1.9 KiB
Diff
43 lines
1.9 KiB
Diff
From: Jakub Jirutka <jakub@jirutka.cz>
|
|
Date: Wed, 05 Nov 2025 16:17:17 +0100
|
|
Subject: [PATCH] Fix tests compatibility with libpq18
|
|
|
|
We build older PostgreSQLs against the latest libpq which changed the error
|
|
messages.
|
|
|
|
diff --git a/src/test/authentication/t/001_password.pl b/src/test/authentication/t/001_password.pl
|
|
index 87e180a..7a84966 100644
|
|
--- a/src/test/authentication/t/001_password.pl
|
|
+++ b/src/test/authentication/t/001_password.pl
|
|
@@ -394,11 +394,11 @@ $node->connect_fails(
|
|
$node->connect_fails(
|
|
"user=scram_role require_auth=!scram-sha-256",
|
|
"SCRAM authentication forbidden, fails with SCRAM auth",
|
|
- expected_stderr => qr/server requested SASL authentication/);
|
|
+ expected_stderr => qr/server requested SCRAM-SHA-256 authentication/);
|
|
$node->connect_fails(
|
|
"user=scram_role require_auth=!password,!md5,!scram-sha-256",
|
|
"multiple authentication types forbidden, fails with SCRAM auth",
|
|
- expected_stderr => qr/server requested SASL authentication/);
|
|
+ expected_stderr => qr/server requested SCRAM-SHA-256 authentication/);
|
|
|
|
# Test that bad passwords are rejected.
|
|
$ENV{"PGPASSWORD"} = 'badpass';
|
|
@@ -454,14 +454,12 @@ $node->connect_fails(
|
|
$node->connect_fails(
|
|
"user=scram_role require_auth=!scram-sha-256",
|
|
"password authentication forbidden, fails with SCRAM auth",
|
|
- expected_stderr =>
|
|
- qr/authentication method requirement "!scram-sha-256" failed: server requested SASL authentication/
|
|
+ expected_stderr => qr/server requested SCRAM-SHA-256 authentication/
|
|
);
|
|
$node->connect_fails(
|
|
"user=scram_role require_auth=!password,!md5,!scram-sha-256",
|
|
"multiple authentication types forbidden, fails with SCRAM auth",
|
|
- expected_stderr =>
|
|
- qr/authentication method requirement "!password,!md5,!scram-sha-256" failed: server requested SASL authentication/
|
|
+ expected_stderr => qr/server requested SCRAM-SHA-256 authentication/
|
|
);
|
|
|
|
# Test SYSTEM_USER <> NULL with parallel workers.
|