blob: 8eff308ebfa7e7477096522ac041b42a24df27f1 [file] [log] [blame]
#!/bin/sh
# Copyright (c) 2006 Karl Hasselström
test_description='Test the delete command (deleting many patches at once).'
. ./test-lib.sh
test_expect_success \
'Initialize the StGIT repository' \
'stg init'
test_expect_success \
'Create five applied and five unapplied patches' \
'
stg new p0 -m p0 &&
echo p0 > foo.txt &&
stg add foo.txt &&
stg refresh &&
for i in 1 2 3 4 5 6 7 8 9; do
stg new p$i -m p$i &&
echo p$i >> foo.txt &&
stg refresh;
done &&
stg pop -n 5
'
test_expect_success \
'Delete some patches' \
'
[ "$(echo $(stg applied))" = "p0 p1 p2 p3 p4" ] &&
[ "$(echo $(stg unapplied))" = "p5 p6 p7 p8 p9" ] &&
stg delete p7 p6 p3 p4 &&
[ "$(echo $(stg applied))" = "p0 p1 p2" ] &&
[ "$(echo $(stg unapplied))" = "p5 p8 p9" ]
'
test_expect_success \
'Delete some more patches, some of which do not exist' \
'
[ "$(echo $(stg applied))" = "p0 p1 p2" ] &&
[ "$(echo $(stg unapplied))" = "p5 p8 p9" ] &&
! stg delete p7 p8 p2 p0 &&
[ "$(echo $(stg applied))" = "p0 p1 p2" ] &&
[ "$(echo $(stg unapplied))" = "p5 p8 p9" ]
'
test_expect_success \
'Delete a range of patches' \
'
[ "$(echo $(stg applied))" = "p0 p1 p2" ] &&
[ "$(echo $(stg unapplied))" = "p5 p8 p9" ] &&
stg delete p1..p8 &&
[ "$(echo $(stg applied))" = "p0" ] &&
[ "$(echo $(stg unapplied))" = "p9" ]
'
test_done