mirror of
https://github.com/git/git
synced 2024-11-05 18:59:29 +00:00
4d28c4f75f
"git ls-files --format" can be used to format the output of multiple file entries in the index, while "git ls-tree --format" can be used to format the contents of a tree object. However, the current set of %(objecttype), "(objectsize)", and "%(objectsize:padded)" atoms supported by "git ls-files --format" is a subset of what is available in "git ls-tree --format". Users sometimes need to establish a unified view between the index and tree, which can help with comparison or conversion between the two. Therefore, this patch adds the missing atoms to "git ls-files --format". "%(objecttype)" can be used to retrieve the object type corresponding to a file in the index, "(objectsize)" can be used to retrieve the object size corresponding to a file in the index, and "%(objectsize:padded)" is the same as "(objectsize)", except with padded format. Signed-off-by: ZheNing Hu <adlternative@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
146 lines
3.4 KiB
Bash
Executable file
146 lines
3.4 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
test_description='git ls-files --format test'
|
|
|
|
TEST_PASSES_SANITIZE_LEAK=true
|
|
. ./test-lib.sh
|
|
|
|
for flag in -s -o -k -t --resolve-undo --deduplicate --eol
|
|
do
|
|
test_expect_success "usage: --format is incompatible with $flag" '
|
|
test_expect_code 129 git ls-files --format="%(objectname)" $flag
|
|
'
|
|
done
|
|
|
|
test_expect_success 'setup' '
|
|
printf "LINEONE\nLINETWO\nLINETHREE\n" >o1.txt &&
|
|
printf "LINEONE\r\nLINETWO\r\nLINETHREE\r\n" >o2.txt &&
|
|
printf "LINEONE\r\nLINETWO\nLINETHREE\n" >o3.txt &&
|
|
git add o?.txt &&
|
|
oid=$(git hash-object o1.txt) &&
|
|
git update-index --add --cacheinfo 120000 $oid o4.txt &&
|
|
git update-index --add --cacheinfo 160000 $oid o5.txt &&
|
|
git update-index --add --cacheinfo 100755 $oid o6.txt &&
|
|
git commit -m base
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format objectmode v.s. -s' '
|
|
git ls-files -s >files &&
|
|
cut -d" " -f1 files >expect &&
|
|
git ls-files --format="%(objectmode)" >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format objectname v.s. -s' '
|
|
git ls-files -s >files &&
|
|
cut -d" " -f2 files >expect &&
|
|
git ls-files --format="%(objectname)" >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format objecttype' '
|
|
git ls-files --format="%(objectname)" o1.txt o4.txt o6.txt >objectname &&
|
|
git cat-file --batch-check="%(objecttype)" >expect <objectname &&
|
|
git ls-files --format="%(objecttype)" o1.txt o4.txt o6.txt >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format objectsize' '
|
|
cat>expect <<-\EOF &&
|
|
26
|
|
29
|
|
27
|
|
26
|
|
-
|
|
26
|
|
EOF
|
|
git ls-files --format="%(objectsize)" >actual &&
|
|
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format objectsize:padded' '
|
|
cat>expect <<-\EOF &&
|
|
26
|
|
29
|
|
27
|
|
26
|
|
-
|
|
26
|
|
EOF
|
|
git ls-files --format="%(objectsize:padded)" >actual &&
|
|
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format v.s. --eol' '
|
|
git ls-files --eol >tmp &&
|
|
sed -e "s/ / /g" -e "s/ */ /g" tmp >expect 2>err &&
|
|
test_must_be_empty err &&
|
|
git ls-files --format="i/%(eolinfo:index) w/%(eolinfo:worktree) attr/%(eolattr) %(path)" >actual 2>err &&
|
|
test_must_be_empty err &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format path v.s. -s' '
|
|
git ls-files -s >files &&
|
|
cut -f2 files >expect &&
|
|
git ls-files --format="%(path)" >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format with relative path' '
|
|
cat >expect <<-\EOF &&
|
|
../o1.txt
|
|
../o2.txt
|
|
../o3.txt
|
|
../o4.txt
|
|
../o5.txt
|
|
../o6.txt
|
|
EOF
|
|
mkdir sub &&
|
|
cd sub &&
|
|
git ls-files --format="%(path)" ":/" >../actual &&
|
|
cd .. &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format with -m' '
|
|
echo change >o1.txt &&
|
|
cat >expect <<-\EOF &&
|
|
o1.txt
|
|
o4.txt
|
|
o5.txt
|
|
o6.txt
|
|
EOF
|
|
git ls-files --format="%(path)" -m >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format with -d' '
|
|
echo o7 >o7.txt &&
|
|
git add o7.txt &&
|
|
rm o7.txt &&
|
|
cat >expect <<-\EOF &&
|
|
o4.txt
|
|
o5.txt
|
|
o6.txt
|
|
o7.txt
|
|
EOF
|
|
git ls-files --format="%(path)" -d >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format v.s -s' '
|
|
git ls-files --stage >expect &&
|
|
git ls-files --format="%(objectmode) %(objectname) %(stage)%x09%(path)" >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_expect_success 'git ls-files --format with --debug' '
|
|
git ls-files --debug >expect &&
|
|
git ls-files --format="%(path)" --debug >actual &&
|
|
test_cmp expect actual
|
|
'
|
|
|
|
test_done
|