Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2005 Junio C Hamano |
| 4 | # |
| 5 | |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 6 | test_description='git checkout-index --prefix test. |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 7 | |
| 8 | This test makes sure that --prefix option works as advertised, and |
| 9 | also verifies that such leading path may contain symlinks, unlike |
| 10 | the GIT controlled paths. |
| 11 | ' |
| 12 | |
| 13 | . ./test-lib.sh |
| 14 | |
John Keeping | 013c3bb | 2013-03-14 20:00:50 +0000 | [diff] [blame] | 15 | test_expect_success 'setup' ' |
| 16 | mkdir path1 && |
| 17 | echo frotz >path0 && |
| 18 | echo rezrov >path1/file1 && |
| 19 | git update-index --add path0 path1/file1 |
| 20 | ' |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 21 | |
John Keeping | 013c3bb | 2013-03-14 20:00:50 +0000 | [diff] [blame] | 22 | test_expect_success SYMLINKS 'have symlink in place where dir is expected.' ' |
| 23 | rm -fr path0 path1 && |
| 24 | mkdir path2 && |
| 25 | ln -s path2 path1 && |
| 26 | git checkout-index -f -a && |
| 27 | test ! -h path1 && test -d path1 && |
| 28 | test -f path1/file1 && test ! -f path2/file1 |
| 29 | ' |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 30 | |
John Keeping | 013c3bb | 2013-03-14 20:00:50 +0000 | [diff] [blame] | 31 | test_expect_success 'use --prefix=path2/' ' |
| 32 | rm -fr path0 path1 path2 && |
| 33 | mkdir path2 && |
| 34 | git checkout-index --prefix=path2/ -f -a && |
| 35 | test -f path2/path0 && |
| 36 | test -f path2/path1/file1 && |
| 37 | test ! -f path0 && |
| 38 | test ! -f path1/file1 |
| 39 | ' |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 40 | |
John Keeping | 013c3bb | 2013-03-14 20:00:50 +0000 | [diff] [blame] | 41 | test_expect_success 'use --prefix=tmp-' ' |
| 42 | rm -fr path0 path1 path2 tmp* && |
| 43 | git checkout-index --prefix=tmp- -f -a && |
| 44 | test -f tmp-path0 && |
| 45 | test -f tmp-path1/file1 && |
| 46 | test ! -f path0 && |
| 47 | test ! -f path1/file1 |
| 48 | ' |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 49 | |
John Keeping | 013c3bb | 2013-03-14 20:00:50 +0000 | [diff] [blame] | 50 | test_expect_success 'use --prefix=tmp- but with a conflicting file and dir' ' |
| 51 | rm -fr path0 path1 path2 tmp* && |
| 52 | echo nitfol >tmp-path1 && |
| 53 | mkdir tmp-path0 && |
| 54 | git checkout-index --prefix=tmp- -f -a && |
| 55 | test -f tmp-path0 && |
| 56 | test -f tmp-path1/file1 && |
| 57 | test ! -f path0 && |
| 58 | test ! -f path1/file1 |
| 59 | ' |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 60 | |
John Keeping | 013c3bb | 2013-03-14 20:00:50 +0000 | [diff] [blame] | 61 | test_expect_success SYMLINKS 'use --prefix=tmp/orary/ where tmp is a symlink' ' |
| 62 | rm -fr path0 path1 path2 tmp* && |
| 63 | mkdir tmp1 tmp1/orary && |
| 64 | ln -s tmp1 tmp && |
| 65 | git checkout-index --prefix=tmp/orary/ -f -a && |
| 66 | test -d tmp1/orary && |
| 67 | test -f tmp1/orary/path0 && |
| 68 | test -f tmp1/orary/path1/file1 && |
| 69 | test -h tmp |
| 70 | ' |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 71 | |
John Keeping | 013c3bb | 2013-03-14 20:00:50 +0000 | [diff] [blame] | 72 | test_expect_success SYMLINKS 'use --prefix=tmp/orary- where tmp is a symlink' ' |
| 73 | rm -fr path0 path1 path2 tmp* && |
| 74 | mkdir tmp1 && |
| 75 | ln -s tmp1 tmp && |
| 76 | git checkout-index --prefix=tmp/orary- -f -a && |
| 77 | test -f tmp1/orary-path0 && |
| 78 | test -f tmp1/orary-path1/file1 && |
| 79 | test -h tmp |
| 80 | ' |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 81 | |
John Keeping | 013c3bb | 2013-03-14 20:00:50 +0000 | [diff] [blame] | 82 | test_expect_success SYMLINKS 'use --prefix=tmp- where tmp-path1 is a symlink' ' |
| 83 | rm -fr path0 path1 path2 tmp* && |
| 84 | mkdir tmp1 && |
| 85 | ln -s tmp1 tmp-path1 && |
| 86 | git checkout-index --prefix=tmp- -f -a && |
| 87 | test -f tmp-path0 && |
| 88 | test ! -h tmp-path1 && |
| 89 | test -d tmp-path1 && |
| 90 | test -f tmp-path1/file1 |
| 91 | ' |
Junio C Hamano | d7f6ea3 | 2005-05-24 01:51:27 -0700 | [diff] [blame] | 92 | |
John Keeping | 7297a44 | 2013-03-14 20:00:51 +0000 | [diff] [blame] | 93 | test_expect_success 'apply filter from working tree .gitattributes with --prefix' ' |
| 94 | rm -fr path0 path1 path2 tmp* && |
| 95 | mkdir path1 && |
| 96 | mkdir tmp && |
Johannes Sixt | 8be412a | 2013-03-20 09:47:57 +0100 | [diff] [blame] | 97 | git config filter.replace-all.smudge "sed -e s/./,/g" && |
John Keeping | 7297a44 | 2013-03-14 20:00:51 +0000 | [diff] [blame] | 98 | git config filter.replace-all.clean cat && |
| 99 | git config filter.replace-all.required true && |
| 100 | echo "file1 filter=replace-all" >path1/.gitattributes && |
| 101 | git checkout-index --prefix=tmp/ -f -a && |
| 102 | echo frotz >expected && |
| 103 | test_cmp expected tmp/path0 && |
Johannes Sixt | 8be412a | 2013-03-20 09:47:57 +0100 | [diff] [blame] | 104 | echo ,,,,,, >expected && |
John Keeping | 7297a44 | 2013-03-14 20:00:51 +0000 | [diff] [blame] | 105 | test_cmp expected tmp/path1/file1 |
| 106 | ' |
| 107 | |
| 108 | test_expect_success 'apply CRLF filter from working tree .gitattributes with --prefix' ' |
| 109 | rm -fr path0 path1 path2 tmp* && |
| 110 | mkdir path1 && |
| 111 | mkdir tmp && |
| 112 | echo "file1 eol=crlf" >path1/.gitattributes && |
| 113 | git checkout-index --prefix=tmp/ -f -a && |
| 114 | echo rezrovQ >expected && |
| 115 | tr \\015 Q <tmp/path1/file1 >actual && |
| 116 | test_cmp expected actual |
| 117 | ' |
| 118 | |
Pavel Roskin | da7bc9b | 2005-08-10 22:15:02 -0400 | [diff] [blame] | 119 | test_done |