TAP tests for psql \g piped into program

Started by Daniel Veriteover 3 years ago4 messageshackers
Jump to latest
#1Daniel Verite
daniel@manitou-mail.org

Hi,

This is a follow-up to commit d2a44904 from the 2022-11 CF [1]https://commitfest.postgresql.org/40/4000/
The TAP tests were left out with the suggestion to use Perl instead of
cat (Unix) / findstr (Windows) as the program to pipe into.

PFA a patch implementing that suggestion.

[1]: https://commitfest.postgresql.org/40/4000/

Best regards,
--
Daniel Vérité
https://postgresql.verite.pro/
Twitter: @DanielVerite

Attachments:

tap-test-psql-g-program.patchtext/plainDownload+47-3
#2Peter Eisentraut
peter_e@gmx.net
In reply to: Daniel Verite (#1)
Re: TAP tests for psql \g piped into program

On 02.01.23 22:32, Daniel Verite wrote:

This is a follow-up to commit d2a44904 from the 2022-11 CF [1]
The TAP tests were left out with the suggestion to use Perl instead of
cat (Unix) / findstr (Windows) as the program to pipe into.

PFA a patch implementing that suggestion.

The perl binary refactoring in this patch caught my attention, since I
ran into this issue in another patch as well. I'm always happy to
consider a refactoring, but I think in this case I wouldn't do it.

If you grep for PostgreSQL::Test::Utils::windows_os, you'll find quite a
few pieces of code that somehow fix up paths for Windows. By hiding the
Perl stuff in a function, we give the illusion that you don't have to
worry about it and it's all taken care of in the test library. But you
have to worry about it in the very next line in
025_stuck_on_old_timeline.pl! We should handle this all on the same
level: either in the test code or in the test library. It would be
useful to work toward a general "prepare path for shell" routine. But
until we have that, I don't think this is sufficient progress.

So for your patch, I would just do the path adjustment ad hoc in-line.
It's just one additional line.

#3Daniel Verite
daniel@manitou-mail.org
In reply to: Peter Eisentraut (#2)
Re: TAP tests for psql \g piped into program

Peter Eisentraut wrote:

So for your patch, I would just do the path adjustment ad hoc in-line.
It's just one additional line.

Here's the patch updated that way.

Best regards,
--
Daniel Vérité
https://postgresql.verite.pro/
Twitter: @DanielVerite

Attachments:

v2-tap-test-psql-g-program.patchtext/plainDownload+29-0
#4Heikki Linnakangas
heikki.linnakangas@enterprisedb.com
In reply to: Daniel Verite (#3)
Re: TAP tests for psql \g piped into program

On 29/03/2023 21:39, Daniel Verite wrote:

Peter Eisentraut wrote:

So for your patch, I would just do the path adjustment ad hoc in-line.
It's just one additional line.

Here's the patch updated that way.

Committed, thanks!

--
Heikki Linnakangas
Neon (https://neon.tech)