Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2006, Junio C Hamano |
| 4 | # |
| 5 | |
| 6 | test_description='fmt-merge-msg test' |
| 7 | |
| 8 | . ./test-lib.sh |
| 9 | |
| 10 | datestamp=1151939923 |
| 11 | setdate () { |
| 12 | GIT_COMMITTER_DATE="$datestamp +0200" |
| 13 | GIT_AUTHOR_DATE="$datestamp +0200" |
| 14 | datestamp=`expr "$datestamp" + 1` |
| 15 | export GIT_COMMITTER_DATE GIT_AUTHOR_DATE |
| 16 | } |
| 17 | |
| 18 | test_expect_success setup ' |
| 19 | echo one >one && |
| 20 | git add one && |
| 21 | setdate && |
| 22 | git commit -m "Initial" && |
| 23 | |
| 24 | echo uno >one && |
| 25 | echo dos >two && |
| 26 | git add two && |
| 27 | setdate && |
| 28 | git commit -a -m "Second" && |
| 29 | |
| 30 | git checkout -b left && |
| 31 | |
| 32 | echo $datestamp >one && |
| 33 | setdate && |
| 34 | git commit -a -m "Common #1" && |
| 35 | |
| 36 | echo $datestamp >one && |
| 37 | setdate && |
| 38 | git commit -a -m "Common #2" && |
| 39 | |
| 40 | git branch right && |
| 41 | |
| 42 | echo $datestamp >two && |
| 43 | setdate && |
| 44 | git commit -a -m "Left #3" && |
| 45 | |
| 46 | echo $datestamp >two && |
| 47 | setdate && |
| 48 | git commit -a -m "Left #4" && |
| 49 | |
| 50 | echo $datestamp >two && |
| 51 | setdate && |
| 52 | git commit -a -m "Left #5" && |
| 53 | |
| 54 | git checkout right && |
| 55 | |
| 56 | echo $datestamp >three && |
| 57 | git add three && |
| 58 | setdate && |
| 59 | git commit -a -m "Right #3" && |
| 60 | |
| 61 | echo $datestamp >three && |
| 62 | setdate && |
| 63 | git commit -a -m "Right #4" && |
| 64 | |
| 65 | echo $datestamp >three && |
| 66 | setdate && |
| 67 | git commit -a -m "Right #5" && |
| 68 | |
| 69 | git show-branch |
| 70 | ' |
| 71 | |
| 72 | cat >expected <<\EOF |
| 73 | Merge branch 'left' |
| 74 | EOF |
| 75 | |
| 76 | test_expect_success 'merge-msg test #1' ' |
| 77 | |
| 78 | git checkout master && |
| 79 | git fetch . left && |
| 80 | |
| 81 | git fmt-merge-msg <.git/FETCH_HEAD >actual && |
Johannes Schindelin | 5bd7450 | 2007-02-25 23:36:53 +0100 | [diff] [blame] | 82 | git diff actual expected |
Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 83 | ' |
| 84 | |
| 85 | cat >expected <<\EOF |
| 86 | Merge branch 'left' of ../trash |
| 87 | EOF |
| 88 | |
| 89 | test_expect_success 'merge-msg test #2' ' |
| 90 | |
| 91 | git checkout master && |
| 92 | git fetch ../trash left && |
| 93 | |
| 94 | git fmt-merge-msg <.git/FETCH_HEAD >actual && |
Johannes Schindelin | 5bd7450 | 2007-02-25 23:36:53 +0100 | [diff] [blame] | 95 | git diff actual expected |
Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 96 | ' |
| 97 | |
| 98 | cat >expected <<\EOF |
| 99 | Merge branch 'left' |
| 100 | |
| 101 | * left: |
| 102 | Left #5 |
| 103 | Left #4 |
| 104 | Left #3 |
| 105 | Common #2 |
| 106 | Common #1 |
| 107 | EOF |
| 108 | |
| 109 | test_expect_success 'merge-msg test #3' ' |
| 110 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 111 | git config merge.summary true && |
Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 112 | |
| 113 | git checkout master && |
| 114 | setdate && |
| 115 | git fetch . left && |
| 116 | |
| 117 | git fmt-merge-msg <.git/FETCH_HEAD >actual && |
Johannes Schindelin | 5bd7450 | 2007-02-25 23:36:53 +0100 | [diff] [blame] | 118 | git diff actual expected |
Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 119 | ' |
| 120 | |
| 121 | cat >expected <<\EOF |
| 122 | Merge branches 'left' and 'right' |
| 123 | |
| 124 | * left: |
| 125 | Left #5 |
| 126 | Left #4 |
| 127 | Left #3 |
| 128 | Common #2 |
| 129 | Common #1 |
| 130 | |
| 131 | * right: |
| 132 | Right #5 |
| 133 | Right #4 |
| 134 | Right #3 |
| 135 | Common #2 |
| 136 | Common #1 |
| 137 | EOF |
| 138 | |
| 139 | test_expect_success 'merge-msg test #4' ' |
| 140 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 141 | git config merge.summary true && |
Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 142 | |
| 143 | git checkout master && |
| 144 | setdate && |
| 145 | git fetch . left right && |
| 146 | |
| 147 | git fmt-merge-msg <.git/FETCH_HEAD >actual && |
Johannes Schindelin | 5bd7450 | 2007-02-25 23:36:53 +0100 | [diff] [blame] | 148 | git diff actual expected |
Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 149 | ' |
| 150 | |
| 151 | test_expect_success 'merge-msg test #5' ' |
| 152 | |
Tom Prince | e0d10e1 | 2007-01-28 16:16:53 -0800 | [diff] [blame] | 153 | git config merge.summary yes && |
Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 154 | |
| 155 | git checkout master && |
| 156 | setdate && |
| 157 | git fetch . left right && |
| 158 | |
| 159 | git fmt-merge-msg <.git/FETCH_HEAD >actual && |
Johannes Schindelin | 5bd7450 | 2007-02-25 23:36:53 +0100 | [diff] [blame] | 160 | git diff actual expected |
Junio C Hamano | 30a95f3 | 2006-07-03 18:09:54 -0700 | [diff] [blame] | 161 | ' |
| 162 | |
| 163 | test_done |