From: Phillip Wood <phillip.wood123@gmail.com>
To: Patrick Steinhardt <ps@pks.im>, redoste <redoste@redoste.xyz>
Cc: git@vger.kernel.org, Jeff King <peff@peff.net>,
"brian m. carlson" <sandals@crustytoothpaste.net>,
Fabian Stelzer <fs@gigacodes.de>,
Junio C Hamano <gitster@pobox.com>,
Elijah Newren <newren@gmail.com>
Subject: Re: [PATCH v2] ssh signing: don't detach the filename strbuf from key_file tempfile
Date: Mon, 7 Jul 2025 10:35:38 +0100 [thread overview]
Message-ID: <05d66f9c-78b6-4624-a0e3-32235df05105@gmail.com> (raw)
In-Reply-To: <aGuNCGNk96DK4GzX@pks.im>
On 07/07/2025 10:02, Patrick Steinhardt wrote:
> On Sun, Jul 06, 2025 at 07:34:49PM +0200, redoste wrote:
>> +test_expect_success GPGSSH 'check temporary files clean up when signing commits' '
>> + test_config gpg.format ssh &&
>> + eval $(ssh-agent) &&
>> + test_when_finished "kill ${SSH_AGENT_PID}" &&
>> + mkdir tmpdir &&
>> + TMPDIR="$(pwd)/tmpdir" &&
>> + export TMPDIR &&
>
> I think this exported environment variable now leaks into subsequent
> tests, doesn't it? We may want to do it in a subshell.
That's a very good point.
>
> mkdir tmpdir &&
> TMPDIR="$(pwd)/tmpdir" &&
> (
> export TMPDIR &&
> ssh-add "${GPGSSH_KEY_PRIMARY}" &&
> echo 1 >file && git add file &&
> git commit -a -m inline -S"$(cat "${GPGSSH_KEY_PRIMARY}.pub")" &&
> echo 2 >file &&
> git commit -a -m file -S"${GPGSSH_KEY_PRIMARY}"
> ) &&
> find tmpdir -type f >tmpfiles &&
> test_line_count = 0 tmpfiles
The idiomatic way to test for an empty file is "test_file_is_empty
<file>" which avoids spawning wc.
As this test is an abridged version of the other test that uses
ssh-agent I think it would be more efficient to tweak that test to check
there are no temporary files left over. Our test suite is slow and
tweaking an existing test to improve our coverage instead of adding a
new test means we don't make it any slower than necessary.
Thanks
Phillip
>
> Patrick
>
>> + ssh-add "${GPGSSH_KEY_PRIMARY}" &&
>> + echo 1 >file && git add file &&
>> + git commit -a -m inline -S"$(cat "${GPGSSH_KEY_PRIMARY}.pub")" &&
>> + echo 2 >file &&
>> + git commit -a -m file -S"${GPGSSH_KEY_PRIMARY}" &&
>> + find tmpdir -type f >tmpfiles &&
>> + test_line_count = 0 tmpfiles
>> +'
>> +
>> test_expect_failure GPGSSH 'detect fudged commit with double signature (TODO)' '
>> sed -e "/gpgsig/,/END PGP/d" forged1 >double-base &&
>> sed -n -e "/gpgsig/,/END PGP/p" forged1 | \
>> --
>> 2.49.0
>>
>>
>
next prev parent reply other threads:[~2025-07-07 9:35 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-04 23:08 [PATCH] ssh signing: don't detach the filename strbuf from key_file tempfile redoste
2025-07-05 19:21 ` Jeff King
2025-07-05 20:07 ` brian m. carlson
2025-07-05 22:50 ` redoste
2025-07-05 23:04 ` redoste
2025-07-06 0:28 ` brian m. carlson
2025-07-06 3:13 ` Jeff King
2025-07-06 17:20 ` redoste
2025-07-06 17:14 ` redoste
2025-07-06 17:34 ` [PATCH v2] " redoste
2025-07-06 21:21 ` brian m. carlson
2025-07-07 9:02 ` Patrick Steinhardt
2025-07-07 9:35 ` Phillip Wood [this message]
2025-07-07 14:25 ` redoste
2025-07-07 15:26 ` Phillip Wood
2025-07-07 16:22 ` redoste
2025-07-07 16:42 ` Phillip Wood
2025-07-07 18:48 ` [PATCH v3] " redoste
2025-07-07 20:57 ` Junio C Hamano
2025-07-08 6:47 ` Patrick Steinhardt
2025-07-08 13:59 ` Phillip Wood
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=05d66f9c-78b6-4624-a0e3-32235df05105@gmail.com \
--to=phillip.wood123@gmail.com \
--cc=fs@gigacodes.de \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=newren@gmail.com \
--cc=peff@peff.net \
--cc=phillip.wood@dunelm.org.uk \
--cc=ps@pks.im \
--cc=redoste@redoste.xyz \
--cc=sandals@crustytoothpaste.net \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).