mingw: handle GITPERLLIB in t0021 in a Windows-compatible way
[git.git] / t / t4063-diff-blobs.sh
blobbc69e26c524b7cc099aebad7729039a45bedc398
1 #!/bin/sh
3 test_description='test direct comparison of blobs via git-diff'
4 . ./test-lib.sh
6 run_diff () {
7 # use full-index to make it easy to match the index line
8 git diff --full-index "$@" >diff
11 check_index () {
12 grep "^index $1\\.\\.$2" diff
15 check_mode () {
16 grep "^old mode $1" diff &&
17 grep "^new mode $2" diff
20 check_paths () {
21 grep "^diff --git a/$1 b/$2" diff
24 test_expect_success 'create some blobs' '
25 echo one >one &&
26 echo two >two &&
27 chmod +x two &&
28 git add . &&
30 # cover systems where modes are ignored
31 git update-index --chmod=+x two &&
33 git commit -m base &&
35 sha1_one=$(git rev-parse HEAD:one) &&
36 sha1_two=$(git rev-parse HEAD:two)
39 test_expect_success 'diff by sha1' '
40 run_diff $sha1_one $sha1_two
42 test_expect_success 'index of sha1 diff' '
43 check_index $sha1_one $sha1_two
45 test_expect_success 'sha1 diff uses arguments as paths' '
46 check_paths $sha1_one $sha1_two
48 test_expect_success 'sha1 diff has no mode change' '
49 ! grep mode diff
52 test_expect_success 'diff by tree:path (run)' '
53 run_diff HEAD:one HEAD:two
55 test_expect_success 'index of tree:path diff' '
56 check_index $sha1_one $sha1_two
58 test_expect_success 'tree:path diff uses filenames as paths' '
59 check_paths one two
61 test_expect_success 'tree:path diff shows mode change' '
62 check_mode 100644 100755
65 test_expect_success 'diff by ranged tree:path' '
66 run_diff HEAD:one..HEAD:two
68 test_expect_success 'index of ranged tree:path diff' '
69 check_index $sha1_one $sha1_two
71 test_expect_success 'ranged tree:path diff uses filenames as paths' '
72 check_paths one two
74 test_expect_success 'ranged tree:path diff shows mode change' '
75 check_mode 100644 100755
78 test_expect_success 'diff blob against file' '
79 run_diff HEAD:one two
81 test_expect_success 'index of blob-file diff' '
82 check_index $sha1_one $sha1_two
84 test_expect_success 'blob-file diff uses filename as paths' '
85 check_paths one two
87 test_expect_success FILEMODE 'blob-file diff shows mode change' '
88 check_mode 100644 100755
91 test_expect_success 'blob-file diff prefers filename to sha1' '
92 run_diff $sha1_one two &&
93 check_paths two two
96 test_done