]> git.ipfire.org Git - thirdparty/git.git/commitdiff
chainlint.pl: allow `|| echo` to signal failure upstream of a pipe
authorEric Sunshine <sunshine@sunshineco.com>
Thu, 1 Sep 2022 00:29:51 +0000 (00:29 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 1 Sep 2022 17:07:41 +0000 (10:07 -0700)
The use of `|| return` (or `|| exit`) to signal failure within a loop
isn't effective when the loop is upstream of a pipe since the pipe
swallows all upstream exit codes and returns only the exit code of the
final command in the pipeline.

To work around this limitation, tests may adopt an alternative strategy
of signaling failure by emitting text which would never be emitted in
the non-failing case. For instance:

    while condition
    do
        command1 &&
        command2 ||
        echo "impossible text"
    done |
    sort >actual &&

Such usage indicates deliberate thought about failure cases by the test
author, thus flagging them as missing `|| return` (or `|| exit`) is not
helpful. Therefore, take this case into consideration when checking for
explicit loop termination.

Signed-off-by: Eric Sunshine <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/chainlint.pl
t/chainlint/loop-upstream-pipe.expect [new file with mode: 0644]
t/chainlint/loop-upstream-pipe.test [new file with mode: 0644]

index 674b3ddf69633e6af6919c5018ef614a1c8e247f..386999ce65d61791916e8bdc01d2847360bcd3ef 100755 (executable)
@@ -487,6 +487,9 @@ sub parse_loop_body {
        my @tokens = $self->SUPER::parse_loop_body(@_);
        # did loop signal failure via "|| return" or "|| exit"?
        return @tokens if !@tokens || grep(/^(?:return|exit|\$\?)$/, @tokens);
+       # did loop upstream of a pipe signal failure via "|| echo 'impossible
+       # text'" as the final command in the loop body?
+       return @tokens if ends_with(\@tokens, [qr/^\|\|$/, "\n", qr/^echo$/, qr/^.+$/]);
        # flag missing "return/exit" handling explicit failure in loop body
        my $n = find_non_nl(\@tokens);
        splice(@tokens, $n + 1, 0, '?!LOOP?!');
diff --git a/t/chainlint/loop-upstream-pipe.expect b/t/chainlint/loop-upstream-pipe.expect
new file mode 100644 (file)
index 0000000..0b82ecc
--- /dev/null
@@ -0,0 +1,10 @@
+(
+       git rev-list --objects --no-object-names base..loose |
+       while read oid
+       do
+               path="$objdir/$(test_oid_to_path "$oid")" &&
+               printf "%s %d\n" "$oid" "$(test-tool chmtime --get "$path")" ||
+               echo "object list generation failed for $oid"
+       done |
+       sort -k1
+) >expect &&
diff --git a/t/chainlint/loop-upstream-pipe.test b/t/chainlint/loop-upstream-pipe.test
new file mode 100644 (file)
index 0000000..efb77da
--- /dev/null
@@ -0,0 +1,11 @@
+(
+       git rev-list --objects --no-object-names base..loose |
+       while read oid
+       do
+# LINT: "|| echo" signals failure in loop upstream of a pipe
+               path="$objdir/$(test_oid_to_path "$oid")" &&
+               printf "%s %d\n" "$oid" "$(test-tool chmtime --get "$path")" ||
+               echo "object list generation failed for $oid"
+       done |
+       sort -k1
+) >expect &&