]> git.ipfire.org Git - thirdparty/git.git/commitdiff
diff --no-index tests: test mode normalization
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Sun, 21 Mar 2021 22:36:20 +0000 (23:36 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 22 Mar 2021 19:22:26 +0000 (12:22 -0700)
When "git diff --no-index X Y" is run the modes of the files being
differ are normalized by canon_mode() in fill_filespec().

I recently broke that behavior in a patch of mine[1] which would pass
all tests, or not, depending on the umask of the git.git checkout.

Let's test for this explicitly. Arguably this should not be the
behavior of "git diff --no-index". We aren't diffing our own objects
or the index, so it might be useful to show mode differences between
files.

On the other hand diff(1) does not do that, and it would be needlessly
distracting when e.g. diffing an extracted tar archive whose contents
is the same, but whose file modes are different.

1. https://lore.kernel.org/git/20210316155829.31242-2-avarab@gmail.com/

Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4053-diff-no-index.sh

index 44b932fbb200da024a445bd2859df02c87333afe..3feadf0e3595b2950dd6b5698ba0f25969de8b93 100755 (executable)
@@ -149,4 +149,59 @@ test_expect_success 'diff --no-index allows external diff' '
        test_cmp expect actual
 '
 
+test_expect_success 'diff --no-index normalizes mode: no changes' '
+       echo foo >x &&
+       cp x y &&
+       git diff --no-index x y >out &&
+       test_must_be_empty out
+'
+
+test_expect_success POSIXPERM 'diff --no-index normalizes mode: chmod +x' '
+       chmod +x y &&
+       cat >expected <<-\EOF &&
+       diff --git a/x b/y
+       old mode 100644
+       new mode 100755
+       EOF
+       test_expect_code 1 git diff --no-index x y >actual &&
+       test_cmp expected actual
+'
+
+test_expect_success POSIXPERM 'diff --no-index normalizes: mode not like git mode' '
+       chmod 666 x &&
+       chmod 777 y &&
+       cat >expected <<-\EOF &&
+       diff --git a/x b/y
+       old mode 100644
+       new mode 100755
+       EOF
+       test_expect_code 1 git diff --no-index x y >actual &&
+       test_cmp expected actual
+'
+
+test_expect_success POSIXPERM,SYMLINKS 'diff --no-index normalizes: mode not like git mode (symlink)' '
+       ln -s y z &&
+       X_OID=$(git hash-object --stdin <x) &&
+       Z_OID=$(printf y | git hash-object --stdin) &&
+       cat >expected <<-EOF &&
+       diff --git a/x b/x
+       deleted file mode 100644
+       index $X_OID..$ZERO_OID
+       --- a/x
+       +++ /dev/null
+       @@ -1 +0,0 @@
+       -foo
+       diff --git a/z b/z
+       new file mode 120000
+       index $ZERO_OID..$Z_OID
+       --- /dev/null
+       +++ b/z
+       @@ -0,0 +1 @@
+       +y
+       \ No newline at end of file
+       EOF
+       test_expect_code 1 git -c core.abbrev=no diff --no-index x z >actual &&
+       test_cmp expected actual
+'
+
 test_done