blob: dadbbc2a9f9b70a4e33f5aa825b8f9fe14eec124 [file] [log] [blame]
Yann Dirsonb91db272006-01-08 01:38:15 +01001#!/bin/sh
2#
3# Copyright (c) 2006 Yann Dirson, based on t3400 by Amos Waterland
4#
5
Junio C Hamano5be60072007-07-02 22:52:14 -07006test_description='git cherry should detect patches integrated upstream
Yann Dirsonb91db272006-01-08 01:38:15 +01007
8This test cherry-picks one local change of two into master branch, and
Junio C Hamano5be60072007-07-02 22:52:14 -07009checks that git cherry only returns the second patch in the local branch
Yann Dirsonb91db272006-01-08 01:38:15 +010010'
11. ./test-lib.sh
12
Bryan Donlan0e46e702008-05-04 01:37:58 -040013GIT_AUTHOR_EMAIL=bogus_email_address
14export GIT_AUTHOR_EMAIL
Yann Dirsonb91db272006-01-08 01:38:15 +010015
16test_expect_success \
17 'prepare repository with topic branch, and check cherry finds the 2 patches from there' \
18 'echo First > A &&
Junio C Hamano5be60072007-07-02 22:52:14 -070019 git update-index --add A &&
Nanako Shiraishi0cb0e142008-09-03 17:59:27 +090020 git commit -m "Add A." &&
Yann Dirsonb91db272006-01-08 01:38:15 +010021
Nanako Shiraishi0cb0e142008-09-03 17:59:27 +090022 git checkout -b my-topic-branch &&
Yann Dirsonb91db272006-01-08 01:38:15 +010023
24 echo Second > B &&
Junio C Hamano5be60072007-07-02 22:52:14 -070025 git update-index --add B &&
Nanako Shiraishi0cb0e142008-09-03 17:59:27 +090026 git commit -m "Add B." &&
Yann Dirsonb91db272006-01-08 01:38:15 +010027
28 sleep 2 &&
29 echo AnotherSecond > C &&
Junio C Hamano5be60072007-07-02 22:52:14 -070030 git update-index --add C &&
Nanako Shiraishi0cb0e142008-09-03 17:59:27 +090031 git commit -m "Add C." &&
Yann Dirsonb91db272006-01-08 01:38:15 +010032
Nanako Shiraishi0cb0e142008-09-03 17:59:27 +090033 git checkout -f master &&
Junio C Hamanofcc387d2006-05-17 01:17:46 -070034 rm -f B C &&
Yann Dirsonb91db272006-01-08 01:38:15 +010035
36 echo Third >> A &&
Junio C Hamano5be60072007-07-02 22:52:14 -070037 git update-index A &&
Nanako Shiraishi0cb0e142008-09-03 17:59:27 +090038 git commit -m "Modify A." &&
Yann Dirsonb91db272006-01-08 01:38:15 +010039
Junio C Hamano5be60072007-07-02 22:52:14 -070040 expr "$(echo $(git cherry master my-topic-branch) )" : "+ [^ ]* + .*"
Yann Dirsonb91db272006-01-08 01:38:15 +010041'
42
43test_expect_success \
44 'check that cherry with limit returns only the top patch'\
Junio C Hamano5be60072007-07-02 22:52:14 -070045 'expr "$(echo $(git cherry master my-topic-branch my-topic-branch^1) )" : "+ [^ ]*"
Yann Dirsonb91db272006-01-08 01:38:15 +010046'
47
48test_expect_success \
49 'cherry-pick one of the 2 patches, and check cherry recognized one and only one as new' \
Junio C Hamano5be60072007-07-02 22:52:14 -070050 '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 Dirsonb91db272006-01-08 01:38:15 +010053'
54
55test_done