Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | # |
| 3 | # Copyright (c) 2006 Yann Dirson, based on t3400 by Amos Waterland |
| 4 | # |
| 5 | |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 6 | test_description='git cherry should detect patches integrated upstream |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 7 | |
| 8 | This test cherry-picks one local change of two into master branch, and |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 9 | checks that git cherry only returns the second patch in the local branch |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 10 | ' |
| 11 | . ./test-lib.sh |
| 12 | |
Bryan Donlan | 0e46e70 | 2008-05-04 01:37:58 -0400 | [diff] [blame] | 13 | GIT_AUTHOR_EMAIL=bogus_email_address |
| 14 | export GIT_AUTHOR_EMAIL |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 15 | |
| 16 | test_expect_success \ |
| 17 | 'prepare repository with topic branch, and check cherry finds the 2 patches from there' \ |
| 18 | 'echo First > A && |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 19 | git update-index --add A && |
Nanako Shiraishi | 0cb0e14 | 2008-09-03 17:59:27 +0900 | [diff] [blame] | 20 | git commit -m "Add A." && |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 21 | |
Nanako Shiraishi | 0cb0e14 | 2008-09-03 17:59:27 +0900 | [diff] [blame] | 22 | git checkout -b my-topic-branch && |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 23 | |
| 24 | echo Second > B && |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 25 | git update-index --add B && |
Nanako Shiraishi | 0cb0e14 | 2008-09-03 17:59:27 +0900 | [diff] [blame] | 26 | git commit -m "Add B." && |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 27 | |
| 28 | sleep 2 && |
| 29 | echo AnotherSecond > C && |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 30 | git update-index --add C && |
Nanako Shiraishi | 0cb0e14 | 2008-09-03 17:59:27 +0900 | [diff] [blame] | 31 | git commit -m "Add C." && |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 32 | |
Nanako Shiraishi | 0cb0e14 | 2008-09-03 17:59:27 +0900 | [diff] [blame] | 33 | git checkout -f master && |
Junio C Hamano | fcc387d | 2006-05-17 01:17:46 -0700 | [diff] [blame] | 34 | rm -f B C && |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 35 | |
| 36 | echo Third >> A && |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 37 | git update-index A && |
Nanako Shiraishi | 0cb0e14 | 2008-09-03 17:59:27 +0900 | [diff] [blame] | 38 | git commit -m "Modify A." && |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 39 | |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 40 | expr "$(echo $(git cherry master my-topic-branch) )" : "+ [^ ]* + .*" |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 41 | ' |
| 42 | |
| 43 | test_expect_success \ |
| 44 | 'check that cherry with limit returns only the top patch'\ |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 45 | 'expr "$(echo $(git cherry master my-topic-branch my-topic-branch^1) )" : "+ [^ ]*" |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 46 | ' |
| 47 | |
| 48 | test_expect_success \ |
| 49 | 'cherry-pick one of the 2 patches, and check cherry recognized one and only one as new' \ |
Junio C Hamano | 5be6007 | 2007-07-02 22:52:14 -0700 | [diff] [blame] | 50 | 'git cherry-pick my-topic-branch^0 && |
| 51 | echo $(git cherry master my-topic-branch) && |
| 52 | expr "$(echo $(git cherry master my-topic-branch) )" : "+ [^ ]* - .*" |
Yann Dirson | b91db27 | 2006-01-08 01:38:15 +0100 | [diff] [blame] | 53 | ' |
| 54 | |
| 55 | test_done |