]> git.ipfire.org Git - thirdparty/git.git/blame - t/t3902-quoted.sh
wildmatch: rename constants and update prototype
[thirdparty/git.git] / t / t3902-quoted.sh
CommitLineData
9378c161
JH
1#!/bin/sh
2#
3# Copyright (c) 2006 Junio C Hamano
4#
5
6test_description='quoted output'
7
8. ./test-lib.sh
9
10FN='濱野'
11GN='純'
12HT=' '
9378c161
JH
13DQ='"'
14
2b843732 15echo foo 2>/dev/null > "Name and an${HT}HT"
a0beb132
ÆAB
16if ! test -f "Name and an${HT}HT"
17then
18 # FAT/NTFS does not allow tabs in filenames
19 say 'Your filesystem does not allow tabs in filenames'
20else
21 test_set_prereq TABS_IN_FILENAMES
22fi
25482a3c 23
9378c161
JH
24for_each_name () {
25 for name in \
26 Name "Name and a${LF}LF" "Name and an${HT}HT" "Name${DQ}" \
27 "$FN$HT$GN" "$FN$LF$GN" "$FN $GN" "$FN$GN" "$FN$DQ$GN" \
8b2337a5 28 "With SP in it" "$FN/file"
9378c161
JH
29 do
30 eval "$1"
31 done
32}
33
a0beb132 34test_expect_success TABS_IN_FILENAMES 'setup' '
9378c161 35
8b2337a5 36 mkdir "$FN" &&
a48fcd83 37 for_each_name "echo initial >\"\$name\"" &&
9378c161
JH
38 git add . &&
39 git commit -q -m Initial &&
40
41 for_each_name "echo second >\"\$name\"" &&
a48fcd83 42 git commit -a -m Second &&
9378c161
JH
43
44 for_each_name "echo modified >\"\$name\""
45
46'
47
a0beb132 48test_expect_success TABS_IN_FILENAMES 'setup expected files' '
a48fcd83 49cat >expect.quoted <<\EOF &&
9378c161
JH
50Name
51"Name and a\nLF"
52"Name and an\tHT"
53"Name\""
54With SP in it
55"\346\277\261\351\207\216\t\347\264\224"
56"\346\277\261\351\207\216\n\347\264\224"
57"\346\277\261\351\207\216 \347\264\224"
58"\346\277\261\351\207\216\"\347\264\224"
8b2337a5 59"\346\277\261\351\207\216/file"
9378c161
JH
60"\346\277\261\351\207\216\347\264\224"
61EOF
62
63cat >expect.raw <<\EOF
64Name
65"Name and a\nLF"
66"Name and an\tHT"
67"Name\""
68With SP in it
69"濱野\t純"
70"濱野\n純"
71濱野 純
72"濱野\"純"
8b2337a5 73濱野/file
9378c161
JH
74濱野純
75EOF
a0beb132 76'
9378c161 77
a0beb132 78test_expect_success TABS_IN_FILENAMES 'check fully quoted output from ls-files' '
9378c161 79
82ebb0b6 80 git ls-files >current && test_cmp expect.quoted current
9378c161
JH
81
82'
83
a0beb132 84test_expect_success TABS_IN_FILENAMES 'check fully quoted output from diff-files' '
9378c161
JH
85
86 git diff --name-only >current &&
82ebb0b6 87 test_cmp expect.quoted current
9378c161
JH
88
89'
90
a0beb132 91test_expect_success TABS_IN_FILENAMES 'check fully quoted output from diff-index' '
9378c161
JH
92
93 git diff --name-only HEAD >current &&
82ebb0b6 94 test_cmp expect.quoted current
9378c161
JH
95
96'
97
a0beb132 98test_expect_success TABS_IN_FILENAMES 'check fully quoted output from diff-tree' '
9378c161
JH
99
100 git diff --name-only HEAD^ HEAD >current &&
82ebb0b6 101 test_cmp expect.quoted current
9378c161
JH
102
103'
104
a0beb132 105test_expect_success TABS_IN_FILENAMES 'check fully quoted output from ls-tree' '
84249819
JK
106
107 git ls-tree --name-only -r HEAD >current &&
108 test_cmp expect.quoted current
109
110'
111
a0beb132 112test_expect_success TABS_IN_FILENAMES 'setting core.quotepath' '
9378c161
JH
113
114 git config --bool core.quotepath false
115
116'
117
a0beb132 118test_expect_success TABS_IN_FILENAMES 'check fully quoted output from ls-files' '
9378c161 119
82ebb0b6 120 git ls-files >current && test_cmp expect.raw current
9378c161
JH
121
122'
123
a0beb132 124test_expect_success TABS_IN_FILENAMES 'check fully quoted output from diff-files' '
9378c161
JH
125
126 git diff --name-only >current &&
82ebb0b6 127 test_cmp expect.raw current
9378c161
JH
128
129'
130
a0beb132 131test_expect_success TABS_IN_FILENAMES 'check fully quoted output from diff-index' '
9378c161
JH
132
133 git diff --name-only HEAD >current &&
82ebb0b6 134 test_cmp expect.raw current
9378c161
JH
135
136'
137
a0beb132 138test_expect_success TABS_IN_FILENAMES 'check fully quoted output from diff-tree' '
9378c161
JH
139
140 git diff --name-only HEAD^ HEAD >current &&
82ebb0b6 141 test_cmp expect.raw current
9378c161
JH
142
143'
144
a0beb132 145test_expect_success TABS_IN_FILENAMES 'check fully quoted output from ls-tree' '
84249819
JK
146
147 git ls-tree --name-only -r HEAD >current &&
148 test_cmp expect.raw current
149
150'
151
9378c161 152test_done