Junio C Hamano | 3fed15f | 2007-04-21 19:09:02 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | test_description='blob conversion via gitattributes' |
| 4 | |
| 5 | . ./test-lib.sh |
| 6 | |
Johannes Sixt | fa7151a | 2010-01-01 23:14:06 +0100 | [diff] [blame] | 7 | cat <<EOF >rot13.sh |
| 8 | #!$SHELL_PATH |
Jeff King | 7339eb0 | 2008-03-11 13:40:45 -0400 | [diff] [blame] | 9 | tr \ |
| 10 | 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ' \ |
| 11 | 'nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM' |
Junio C Hamano | aa4ed40 | 2007-04-21 03:14:13 -0700 | [diff] [blame] | 12 | EOF |
| 13 | chmod +x rot13.sh |
| 14 | |
Junio C Hamano | 3fed15f | 2007-04-21 19:09:02 -0700 | [diff] [blame] | 15 | test_expect_success setup ' |
Junio C Hamano | aa4ed40 | 2007-04-21 03:14:13 -0700 | [diff] [blame] | 16 | git config filter.rot13.smudge ./rot13.sh && |
| 17 | git config filter.rot13.clean ./rot13.sh && |
| 18 | |
Junio C Hamano | 3fed15f | 2007-04-21 19:09:02 -0700 | [diff] [blame] | 19 | { |
Junio C Hamano | aa4ed40 | 2007-04-21 03:14:13 -0700 | [diff] [blame] | 20 | echo "*.t filter=rot13" |
Junio C Hamano | 3fed15f | 2007-04-21 19:09:02 -0700 | [diff] [blame] | 21 | echo "*.i ident" |
| 22 | } >.gitattributes && |
| 23 | |
| 24 | { |
| 25 | echo a b c d e f g h i j k l m |
| 26 | echo n o p q r s t u v w x y z |
Andy Parkins | af9b54b | 2007-05-14 14:37:25 +0100 | [diff] [blame] | 27 | echo '\''$Id$'\'' |
Junio C Hamano | 3fed15f | 2007-04-21 19:09:02 -0700 | [diff] [blame] | 28 | } >test && |
| 29 | cat test >test.t && |
| 30 | cat test >test.o && |
| 31 | cat test >test.i && |
| 32 | git add test test.t test.i && |
| 33 | rm -f test test.t test.i && |
| 34 | git checkout -- test test.t test.i |
| 35 | ' |
| 36 | |
Andy Parkins | af9b54b | 2007-05-14 14:37:25 +0100 | [diff] [blame] | 37 | script='s/^\$Id: \([0-9a-f]*\) \$/\1/p' |
Junio C Hamano | 3fed15f | 2007-04-21 19:09:02 -0700 | [diff] [blame] | 38 | |
| 39 | test_expect_success check ' |
| 40 | |
| 41 | cmp test.o test && |
| 42 | cmp test.o test.t && |
| 43 | |
| 44 | # ident should be stripped in the repository |
| 45 | git diff --raw --exit-code :test :test.i && |
| 46 | id=$(git rev-parse --verify :test) && |
| 47 | embedded=$(sed -ne "$script" test.i) && |
Johannes Sixt | a0ae35a | 2007-10-19 21:48:04 +0200 | [diff] [blame] | 48 | test "z$id" = "z$embedded" && |
| 49 | |
| 50 | git cat-file blob :test.t > test.r && |
| 51 | |
| 52 | ./rot13.sh < test.o > test.t && |
| 53 | cmp test.r test.t |
Junio C Hamano | 3fed15f | 2007-04-21 19:09:02 -0700 | [diff] [blame] | 54 | ' |
| 55 | |
Andy Parkins | dfab71c | 2007-05-27 11:52:11 +0100 | [diff] [blame] | 56 | # If an expanded ident ever gets into the repository, we want to make sure that |
| 57 | # it is collapsed before being expanded again on checkout |
| 58 | test_expect_success expanded_in_repo ' |
| 59 | { |
| 60 | echo "File with expanded keywords" |
| 61 | echo "\$Id\$" |
| 62 | echo "\$Id:\$" |
| 63 | echo "\$Id: 0000000000000000000000000000000000000000 \$" |
| 64 | echo "\$Id: NoSpaceAtEnd\$" |
| 65 | echo "\$Id:NoSpaceAtFront \$" |
| 66 | echo "\$Id:NoSpaceAtEitherEnd\$" |
| 67 | echo "\$Id: NoTerminatingSymbol" |
Henrik Grubbström | a9f3049 | 2010-04-06 14:46:37 +0200 | [diff] [blame] | 68 | echo "\$Id: Foreign Commit With Spaces \$" |
Junio C Hamano | 6b6cab3 | 2011-05-24 18:02:48 -0700 | [diff] [blame] | 69 | } >expanded-keywords.0 && |
Andy Parkins | dfab71c | 2007-05-27 11:52:11 +0100 | [diff] [blame] | 70 | |
Junio C Hamano | 6b6cab3 | 2011-05-24 18:02:48 -0700 | [diff] [blame] | 71 | { |
| 72 | cat expanded-keywords.0 && |
| 73 | printf "\$Id: NoTerminatingSymbolAtEOF" |
| 74 | } >expanded-keywords && |
| 75 | cat expanded-keywords >expanded-keywords-crlf && |
| 76 | git add expanded-keywords expanded-keywords-crlf && |
Andy Parkins | dfab71c | 2007-05-27 11:52:11 +0100 | [diff] [blame] | 77 | git commit -m "File with keywords expanded" && |
René Scharfe | dd555d8 | 2011-05-21 23:25:06 +0200 | [diff] [blame] | 78 | id=$(git rev-parse --verify :expanded-keywords) && |
| 79 | |
| 80 | { |
| 81 | echo "File with expanded keywords" |
| 82 | echo "\$Id: $id \$" |
| 83 | echo "\$Id: $id \$" |
| 84 | echo "\$Id: $id \$" |
| 85 | echo "\$Id: $id \$" |
| 86 | echo "\$Id: $id \$" |
| 87 | echo "\$Id: $id \$" |
| 88 | echo "\$Id: NoTerminatingSymbol" |
| 89 | echo "\$Id: Foreign Commit With Spaces \$" |
Junio C Hamano | 6b6cab3 | 2011-05-24 18:02:48 -0700 | [diff] [blame] | 90 | } >expected-output.0 && |
| 91 | { |
| 92 | cat expected-output.0 && |
René Scharfe | dd555d8 | 2011-05-21 23:25:06 +0200 | [diff] [blame] | 93 | printf "\$Id: NoTerminatingSymbolAtEOF" |
Junio C Hamano | 6b6cab3 | 2011-05-24 18:02:48 -0700 | [diff] [blame] | 94 | } >expected-output && |
| 95 | { |
| 96 | append_cr <expected-output.0 && |
| 97 | printf "\$Id: NoTerminatingSymbolAtEOF" |
| 98 | } >expected-output-crlf && |
| 99 | { |
| 100 | echo "expanded-keywords ident" |
| 101 | echo "expanded-keywords-crlf ident text eol=crlf" |
| 102 | } >>.gitattributes && |
Andy Parkins | dfab71c | 2007-05-27 11:52:11 +0100 | [diff] [blame] | 103 | |
Junio C Hamano | 6b6cab3 | 2011-05-24 18:02:48 -0700 | [diff] [blame] | 104 | rm -f expanded-keywords expanded-keywords-crlf && |
Andy Parkins | dfab71c | 2007-05-27 11:52:11 +0100 | [diff] [blame] | 105 | |
Andy Parkins | dfab71c | 2007-05-27 11:52:11 +0100 | [diff] [blame] | 106 | git checkout -- expanded-keywords && |
Junio C Hamano | 6b6cab3 | 2011-05-24 18:02:48 -0700 | [diff] [blame] | 107 | test_cmp expanded-keywords expected-output && |
| 108 | |
| 109 | git checkout -- expanded-keywords-crlf && |
| 110 | test_cmp expanded-keywords-crlf expected-output-crlf |
Andy Parkins | dfab71c | 2007-05-27 11:52:11 +0100 | [diff] [blame] | 111 | ' |
| 112 | |
Pete Wyckoff | a2b665d | 2010-12-22 06:40:13 -0800 | [diff] [blame] | 113 | # The use of %f in a filter definition is expanded to the path to |
| 114 | # the filename being smudged or cleaned. It must be shell escaped. |
| 115 | # First, set up some interesting file names and pet them in |
| 116 | # .gitattributes. |
| 117 | test_expect_success 'filter shell-escaped filenames' ' |
| 118 | cat >argc.sh <<-EOF && |
| 119 | #!$SHELL_PATH |
Junio C Hamano | 4290f69 | 2010-12-22 15:18:47 -0800 | [diff] [blame] | 120 | cat >/dev/null |
Pete Wyckoff | a2b665d | 2010-12-22 06:40:13 -0800 | [diff] [blame] | 121 | echo argc: \$# "\$@" |
| 122 | EOF |
| 123 | normal=name-no-magic && |
| 124 | special="name with '\''sq'\'' and \$x" && |
| 125 | echo some test text >"$normal" && |
| 126 | echo some test text >"$special" && |
| 127 | git add "$normal" "$special" && |
| 128 | git commit -q -m "add files" && |
| 129 | echo "name* filter=argc" >.gitattributes && |
| 130 | |
| 131 | # delete the files and check them out again, using a smudge filter |
| 132 | # that will count the args and echo the command-line back to us |
| 133 | git config filter.argc.smudge "sh ./argc.sh %f" && |
| 134 | rm "$normal" "$special" && |
| 135 | git checkout -- "$normal" "$special" && |
| 136 | |
| 137 | # make sure argc.sh counted the right number of args |
| 138 | echo "argc: 1 $normal" >expect && |
| 139 | test_cmp expect "$normal" && |
| 140 | echo "argc: 1 $special" >expect && |
| 141 | test_cmp expect "$special" && |
| 142 | |
| 143 | # do the same thing, but with more args in the filter expression |
| 144 | git config filter.argc.smudge "sh ./argc.sh %f --my-extra-arg" && |
| 145 | rm "$normal" "$special" && |
| 146 | git checkout -- "$normal" "$special" && |
| 147 | |
| 148 | # make sure argc.sh counted the right number of args |
| 149 | echo "argc: 2 $normal --my-extra-arg" >expect && |
| 150 | test_cmp expect "$normal" && |
| 151 | echo "argc: 2 $special --my-extra-arg" >expect && |
| 152 | test_cmp expect "$special" && |
| 153 | : |
| 154 | ' |
| 155 | |
Junio C Hamano | 3fed15f | 2007-04-21 19:09:02 -0700 | [diff] [blame] | 156 | test_done |