]>
Commit | Line | Data |
---|---|---|
6a0ebe8c JH |
1 | #!/bin/sh |
2 | # | |
3 | # Copyright (c) 2005 Junio C Hamano | |
4 | # | |
5 | ||
5be60078 | 6 | test_description='git apply in reverse |
6a0ebe8c JH |
7 | |
8 | ' | |
9 | ||
10 | . ./test-lib.sh | |
11 | ||
12 | test_expect_success setup ' | |
13 | ||
14 | for i in a b c d e f g h i j k l m n; do echo $i; done >file1 && | |
94221d22 | 15 | perl -pe "y/ijk/\\000\\001\\002/" <file1 >file2 && |
6a0ebe8c JH |
16 | |
17 | git add file1 file2 && | |
18 | git commit -m initial && | |
19 | git tag initial && | |
20 | ||
21 | for i in a b c g h i J K L m o n p q; do echo $i; done >file1 && | |
94221d22 | 22 | perl -pe "y/mon/\\000\\001\\002/" <file1 >file2 && |
6a0ebe8c JH |
23 | |
24 | git commit -a -m second && | |
2cda1a21 | 25 | git tag second && |
6a0ebe8c | 26 | |
2cda1a21 | 27 | git diff --binary initial second >patch |
6a0ebe8c JH |
28 | |
29 | ' | |
30 | ||
31 | test_expect_success 'apply in forward' ' | |
32 | ||
991a9c3a | 33 | T0=$(git rev-parse "second^{tree}") && |
2cda1a21 | 34 | git reset --hard initial && |
6a0ebe8c | 35 | git apply --index --binary patch && |
991a9c3a | 36 | T1=$(git write-tree) && |
2cda1a21 | 37 | test "$T0" = "$T1" |
6a0ebe8c JH |
38 | ' |
39 | ||
40 | test_expect_success 'apply in reverse' ' | |
41 | ||
2cda1a21 | 42 | git reset --hard second && |
6a0ebe8c JH |
43 | git apply --reverse --binary --index patch && |
44 | git diff >diff && | |
ec21ac8c | 45 | test_must_be_empty diff |
6a0ebe8c JH |
46 | |
47 | ' | |
48 | ||
2cda1a21 JH |
49 | test_expect_success 'setup separate repository lacking postimage' ' |
50 | ||
925ceccf | 51 | git archive --format=tar --prefix=initial/ initial | $TAR xf - && |
2cda1a21 | 52 | ( |
5c94f87e | 53 | cd initial && git init && git add . |
2cda1a21 JH |
54 | ) && |
55 | ||
925ceccf | 56 | git archive --format=tar --prefix=second/ second | $TAR xf - && |
2cda1a21 | 57 | ( |
5c94f87e | 58 | cd second && git init && git add . |
2cda1a21 JH |
59 | ) |
60 | ||
61 | ' | |
62 | ||
63 | test_expect_success 'apply in forward without postimage' ' | |
64 | ||
991a9c3a | 65 | T0=$(git rev-parse "second^{tree}") && |
2cda1a21 JH |
66 | ( |
67 | cd initial && | |
68 | git apply --index --binary ../patch && | |
991a9c3a | 69 | T1=$(git write-tree) && |
2cda1a21 JH |
70 | test "$T0" = "$T1" |
71 | ) | |
72 | ' | |
73 | ||
74 | test_expect_success 'apply in reverse without postimage' ' | |
75 | ||
991a9c3a | 76 | T0=$(git rev-parse "initial^{tree}") && |
2cda1a21 JH |
77 | ( |
78 | cd second && | |
79 | git apply --index --binary --reverse ../patch && | |
991a9c3a | 80 | T1=$(git write-tree) && |
2cda1a21 JH |
81 | test "$T0" = "$T1" |
82 | ) | |
83 | ' | |
84 | ||
5fda48d6 JS |
85 | test_expect_success 'reversing a whitespace introduction' ' |
86 | sed "s/a/a /" < file1 > file1.new && | |
87 | mv file1.new file1 && | |
88 | git diff | git apply --reverse --whitespace=error | |
89 | ' | |
90 | ||
6a0ebe8c | 91 | test_done |