Junio C Hamano | 6620498 | 2005-05-31 18:46:47 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2005 Junio C Hamano |
| 4 | # |
| 5 | |
| 6 | test_description='Pathspec restrictions |
| 7 | |
| 8 | Prepare: |
| 9 | file0 |
| 10 | path1/file1 |
| 11 | ' |
| 12 | . ./test-lib.sh |
| 13 | . ../diff-lib.sh ;# test-lib chdir's into trash |
| 14 | |
| 15 | test_expect_success \ |
| 16 | setup \ |
| 17 | 'echo frotz >file0 && |
| 18 | mkdir path1 && |
| 19 | echo rezrov >path1/file1 && |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 20 | git update-index --add file0 path1/file1 && |
| 21 | tree=`git write-tree` && |
Junio C Hamano | 6620498 | 2005-05-31 18:46:47 -0700 | [diff] [blame] | 22 | echo "$tree" && |
| 23 | echo nitfol >file0 && |
| 24 | echo yomin >path1/file1 && |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 25 | git update-index file0 path1/file1' |
Junio C Hamano | 6620498 | 2005-05-31 18:46:47 -0700 | [diff] [blame] | 26 | |
| 27 | cat >expected <<\EOF |
| 28 | EOF |
| 29 | test_expect_success \ |
| 30 | 'limit to path should show nothing' \ |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 31 | 'git diff-index --cached $tree -- path >current && |
Junio C Hamano | 6620498 | 2005-05-31 18:46:47 -0700 | [diff] [blame] | 32 | compare_diff_raw current expected' |
| 33 | |
| 34 | cat >expected <<\EOF |
| 35 | :100644 100644 766498d93a4b06057a8e49d23f4068f1170ff38f 0a41e115ab61be0328a19b29f18cdcb49338d516 M path1/file1 |
| 36 | EOF |
| 37 | test_expect_success \ |
| 38 | 'limit to path1 should show path1/file1' \ |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 39 | 'git diff-index --cached $tree -- path1 >current && |
Junio C Hamano | 6620498 | 2005-05-31 18:46:47 -0700 | [diff] [blame] | 40 | compare_diff_raw current expected' |
| 41 | |
| 42 | cat >expected <<\EOF |
| 43 | :100644 100644 766498d93a4b06057a8e49d23f4068f1170ff38f 0a41e115ab61be0328a19b29f18cdcb49338d516 M path1/file1 |
| 44 | EOF |
| 45 | test_expect_success \ |
| 46 | 'limit to path1/ should show path1/file1' \ |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 47 | 'git diff-index --cached $tree -- path1/ >current && |
Junio C Hamano | 6620498 | 2005-05-31 18:46:47 -0700 | [diff] [blame] | 48 | compare_diff_raw current expected' |
| 49 | |
| 50 | cat >expected <<\EOF |
| 51 | :100644 100644 766498d93a4b06057a8e49d23f4068f1170ff38f 0a41e115ab61be0328a19b29f18cdcb49338d516 M file0 |
| 52 | EOF |
| 53 | test_expect_success \ |
| 54 | 'limit to file0 should show file0' \ |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 55 | 'git diff-index --cached $tree -- file0 >current && |
Junio C Hamano | 6620498 | 2005-05-31 18:46:47 -0700 | [diff] [blame] | 56 | compare_diff_raw current expected' |
| 57 | |
| 58 | cat >expected <<\EOF |
| 59 | EOF |
| 60 | test_expect_success \ |
| 61 | 'limit to file0/ should emit nothing.' \ |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 62 | 'git diff-index --cached $tree -- file0/ >current && |
Junio C Hamano | 6620498 | 2005-05-31 18:46:47 -0700 | [diff] [blame] | 63 | compare_diff_raw current expected' |
| 64 | |
| 65 | test_done |