pgsql: Don't propagate PGAPPNAME through pg_ctl in tests

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Don't propagate PGAPPNAME through pg_ctl in tests
Date: 2019-03-16 08:37:03
Message-ID: E1h54oR-0002BU-NR@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Don't propagate PGAPPNAME through pg_ctl in tests

When libpq is loaded in the server (for instance, by
libpqwalreceiver), it may use libpq environment variables set in the
postmaster environment for connection parameter defaults. This has
some confusing effects in our test suites. For example, the TAP test
infrastructure sets PGAPPNAME to allow identifying clients in the
server log. But this environment variable is also inherited by
temporary servers started with pg_ctl and is then in turn used by
libpqwalreceiver as the application_name for connecting to remote
servers where it then shows up in pg_stat_replication and is relevant
for things like synchronous_standby_names. Replication already has a
suitable default for application_name, and overriding that
accidentally then requires the individual test cases to re-override
that, which is all very confusing and unnecessary.

To fix, unset PGAPPNAME temporarily before running pg_ctl start or
restart in the tests.

More comprehensive approaches like unsetting all environment variables
in pg_ctl were considered but might be too complicated to achieve
portably.

The now unnecessary re-overriding of application_name by test cases is
also removed.

Reviewed-by: Noah Misch <noah(at)leadboat(dot)com>
Discussion: https://www.postgresql.org/message-id/flat/33383613-690e-6f1b-d5ba-4957ff40f6ce(at)2ndquadrant(dot)com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/8e93a516e68bac3c329fd2e7f423ee9aceca943a

Modified Files
--------------
src/bin/pg_rewind/t/RewindTest.pm | 4 ++--
src/test/perl/PostgresNode.pm | 34 ++++++++++++++++++++++++------
src/test/recovery/t/004_timeline_switch.pl | 2 +-
src/test/subscription/t/001_rep_changes.pl | 27 ++++++++++++------------
src/test/subscription/t/002_types.pl | 13 ++++++------
src/test/subscription/t/003_constraints.pl | 11 +++++-----
src/test/subscription/t/004_sync.pl | 15 ++++++-------
src/test/subscription/t/005_encoding.pl | 7 +++---
src/test/subscription/t/006_rewrite.pl | 11 +++++-----
src/test/subscription/t/007_ddl.pl | 5 ++---
src/test/subscription/t/008_diff_schema.pl | 11 +++++-----
src/test/subscription/t/009_matviews.pl | 7 +++---
src/test/subscription/t/010_truncate.pl | 6 +++---
13 files changed, 82 insertions(+), 71 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2019-03-16 09:14:57 pgsql: Avoid casting away a const
Previous Message Michael Meskes 2019-03-16 03:01:12 pgsql: Use correct connection name variable in ecpglib.