blob: ec5d3c3c1ffc9dcbb41424249b764d21fdf60577 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/bin/sh
test_description='git-diff check diffstat filepaths length when containing UTF-8 chars'
. ./test-lib.sh
create_files () {
mkdir -p "d你好" &&
touch "d你好/f再见"
}
test_expect_success 'setup' '
git init &&
git config core.quotepath off &&
git commit -m "Initial commit" --allow-empty &&
create_files &&
git add . &&
git commit -m "Added files"
'
test_expect_success 'test name-width long enough for filepath' '
git diff HEAD~1 HEAD --stat --stat-name-width=12 >out &&
grep "d你好/f再见 |" out &&
git diff HEAD~1 HEAD --stat --stat-name-width=11 >out &&
grep "d你好/f再见 |" out
'
test_expect_success 'test name-width not long enough for dir name' '
git diff HEAD~1 HEAD --stat --stat-name-width=10 >out &&
grep ".../f再见 |" out &&
git diff HEAD~1 HEAD --stat --stat-name-width=9 >out &&
grep ".../f再见 |" out
'
test_expect_success 'test name-width not long enough for slash' '
git diff HEAD~1 HEAD --stat --stat-name-width=8 >out &&
grep "...f再见 |" out
'
test_expect_success 'test name-width not long enough for file name' '
git diff HEAD~1 HEAD --stat --stat-name-width=7 >out &&
grep "...再见 |" out &&
git diff HEAD~1 HEAD --stat --stat-name-width=6 >out &&
grep "...见 |" out &&
git diff HEAD~1 HEAD --stat --stat-name-width=5 >out &&
grep "...见 |" out &&
git diff HEAD~1 HEAD --stat --stat-name-width=4 >out &&
grep "... |" out
'
test_expect_success 'test name-width minimum length' '
git diff HEAD~1 HEAD --stat --stat-name-width=3 >out &&
grep "... |" out &&
git diff HEAD~1 HEAD --stat --stat-name-width=2 >out &&
grep "... |" out &&
git diff HEAD~1 HEAD --stat --stat-name-width=1 >out &&
grep "... |" out
'
test_done
|