Commit | Line | Data |
---|---|---|
78874324 JH |
1 | #!/bin/sh |
2 | # | |
3 | # Copyright (c) 2007 Junio C Hamano | |
4 | # | |
5 | ||
6 | test_description='Quoting paths in diff output. | |
7 | ' | |
8 | ||
9 | . ./test-lib.sh | |
10 | ||
11 | P0='pathname' | |
12 | P1='pathname with HT' | |
13 | P2='pathname with SP' | |
14 | P3='pathname | |
15 | with LF' | |
69915d88 RJ |
16 | echo 2>/dev/null >"$P1" && test -f "$P1" && rm -f "$P1" || { |
17 | skip_all='Your filesystem does not allow tabs in filenames' | |
18 | test_done | |
19 | } | |
78874324 | 20 | |
69915d88 | 21 | test_expect_success setup ' |
78874324 JH |
22 | echo P0.0 >"$P0.0" && |
23 | echo P0.1 >"$P0.1" && | |
24 | echo P0.2 >"$P0.2" && | |
25 | echo P0.3 >"$P0.3" && | |
26 | echo P1.0 >"$P1.0" && | |
27 | echo P1.2 >"$P1.2" && | |
28 | echo P1.3 >"$P1.3" && | |
29 | git add . && | |
30 | git commit -m initial && | |
31 | git mv "$P0.0" "R$P0.0" && | |
32 | git mv "$P0.1" "R$P1.0" && | |
33 | git mv "$P0.2" "R$P2.0" && | |
34 | git mv "$P0.3" "R$P3.0" && | |
35 | git mv "$P1.0" "R$P0.1" && | |
36 | git mv "$P1.2" "R$P2.1" && | |
37 | git mv "$P1.3" "R$P3.1" && | |
38 | : | |
39 | ' | |
40 | ||
69915d88 | 41 | test_expect_success 'setup expected files' ' |
78874324 JH |
42 | cat >expect <<\EOF |
43 | rename pathname.1 => "Rpathname\twith HT.0" (100%) | |
44 | rename pathname.3 => "Rpathname\nwith LF.0" (100%) | |
45 | rename "pathname\twith HT.3" => "Rpathname\nwith LF.1" (100%) | |
46 | rename pathname.2 => Rpathname with SP.0 (100%) | |
47 | rename "pathname\twith HT.2" => Rpathname with SP.1 (100%) | |
48 | rename pathname.0 => Rpathname.0 (100%) | |
49 | rename "pathname\twith HT.0" => Rpathname.1 (100%) | |
50 | EOF | |
b5fa2891 ÆAB |
51 | ' |
52 | ||
69915d88 | 53 | test_expect_success 'git diff --summary -M HEAD' ' |
78874324 | 54 | git diff --summary -M HEAD >actual && |
3af82863 | 55 | test_cmp expect actual |
78874324 JH |
56 | ' |
57 | ||
69915d88 | 58 | test_expect_success 'git diff --numstat -M HEAD' ' |
6dd88832 JN |
59 | cat >expect <<-\EOF && |
60 | 0 0 pathname.1 => "Rpathname\twith HT.0" | |
61 | 0 0 pathname.3 => "Rpathname\nwith LF.0" | |
62 | 0 0 "pathname\twith HT.3" => "Rpathname\nwith LF.1" | |
63 | 0 0 pathname.2 => Rpathname with SP.0 | |
64 | 0 0 "pathname\twith HT.2" => Rpathname with SP.1 | |
65 | 0 0 pathname.0 => Rpathname.0 | |
66 | 0 0 "pathname\twith HT.0" => Rpathname.1 | |
67 | EOF | |
68 | git diff --numstat -M HEAD >actual && | |
69 | test_cmp expect actual | |
b5fa2891 ÆAB |
70 | ' |
71 | ||
69915d88 | 72 | test_expect_success 'git diff --stat -M HEAD' ' |
6dd88832 | 73 | cat >expect <<-\EOF && |
dc801e71 ZJS |
74 | pathname.1 => "Rpathname\twith HT.0" | 0 |
75 | pathname.3 => "Rpathname\nwith LF.0" | 0 | |
76 | "pathname\twith HT.3" => "Rpathname\nwith LF.1" | 0 | |
77 | pathname.2 => Rpathname with SP.0 | 0 | |
78 | "pathname\twith HT.2" => Rpathname with SP.1 | 0 | |
79 | pathname.0 => Rpathname.0 | 0 | |
80 | "pathname\twith HT.0" => Rpathname.1 | 0 | |
6dd88832 JN |
81 | 7 files changed, 0 insertions(+), 0 deletions(-) |
82 | EOF | |
78874324 | 83 | git diff --stat -M HEAD >actual && |
6dd88832 | 84 | test_i18ncmp expect actual |
78874324 JH |
85 | ' |
86 | ||
87 | test_done |