2007-08-15 18:55:18 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (c) 2007 Eric Wong
|
|
|
|
#
|
|
|
|
|
2008-09-08 12:02:08 +02:00
|
|
|
test_description='git svn log tests'
|
2007-08-15 18:55:18 +02:00
|
|
|
. ./lib-git-svn.sh
|
|
|
|
|
2008-05-04 07:37:59 +02:00
|
|
|
test_expect_success 'setup repository and import' '
|
2007-08-15 18:55:18 +02:00
|
|
|
mkdir import &&
|
2010-09-07 03:42:54 +02:00
|
|
|
(
|
|
|
|
cd import &&
|
|
|
|
for i in trunk branches/a branches/b tags/0.1 tags/0.2 tags/0.3
|
|
|
|
do
|
|
|
|
mkdir -p $i &&
|
|
|
|
echo hello >>$i/README ||
|
|
|
|
exit 1
|
|
|
|
done &&
|
2009-05-08 10:06:16 +02:00
|
|
|
svn_cmd import -m test . "$svnrepo"
|
2010-09-07 03:42:54 +02:00
|
|
|
) &&
|
2008-09-08 12:02:08 +02:00
|
|
|
git svn init "$svnrepo" -T trunk -b branches -t tags &&
|
|
|
|
git svn fetch &&
|
2007-08-15 18:55:18 +02:00
|
|
|
git reset --hard trunk &&
|
|
|
|
echo bye >> README &&
|
|
|
|
git commit -a -m bye &&
|
|
|
|
git svn dcommit &&
|
|
|
|
git reset --hard a &&
|
|
|
|
echo why >> FEEDME &&
|
|
|
|
git update-index --add FEEDME &&
|
|
|
|
git commit -m feedme &&
|
|
|
|
git svn dcommit &&
|
|
|
|
git reset --hard trunk &&
|
|
|
|
echo aye >> README &&
|
|
|
|
git commit -a -m aye &&
|
2007-11-12 07:56:52 +01:00
|
|
|
git svn dcommit &&
|
|
|
|
git reset --hard b &&
|
|
|
|
echo spy >> README &&
|
|
|
|
git commit -a -m spy &&
|
|
|
|
echo try >> README &&
|
|
|
|
git commit -a -m try &&
|
2007-08-15 18:55:18 +02:00
|
|
|
git svn dcommit
|
2008-05-04 07:37:59 +02:00
|
|
|
'
|
2007-08-15 18:55:18 +02:00
|
|
|
|
|
|
|
test_expect_success 'run log' "
|
|
|
|
git reset --hard a &&
|
|
|
|
git svn log -r2 trunk | grep ^r2 &&
|
|
|
|
git svn log -r4 trunk | grep ^r4 &&
|
|
|
|
git svn log -r3 | grep ^r3
|
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'run log against a from trunk' "
|
|
|
|
git reset --hard trunk &&
|
|
|
|
git svn log -r3 a | grep ^r3
|
|
|
|
"
|
|
|
|
|
2007-11-11 07:10:34 +01:00
|
|
|
printf 'r1 \nr2 \nr4 \n' > expected-range-r1-r2-r4
|
2007-11-11 07:10:33 +01:00
|
|
|
|
|
|
|
test_expect_success 'test ascending revision range' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 1:4 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r1-r2-r4 -
|
2007-11-11 07:10:33 +01:00
|
|
|
"
|
|
|
|
|
2007-11-11 07:10:34 +01:00
|
|
|
printf 'r4 \nr2 \nr1 \n' > expected-range-r4-r2-r1
|
2007-11-11 07:10:33 +01:00
|
|
|
|
|
|
|
test_expect_success 'test descending revision range' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 4:1 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r4-r2-r1 -
|
2007-11-11 07:10:33 +01:00
|
|
|
"
|
|
|
|
|
2007-11-12 07:56:52 +01:00
|
|
|
printf 'r1 \nr2 \n' > expected-range-r1-r2
|
|
|
|
|
|
|
|
test_expect_success 'test ascending revision range with unreachable revision' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 1:3 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r1-r2 -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
printf 'r2 \nr1 \n' > expected-range-r2-r1
|
|
|
|
|
|
|
|
test_expect_success 'test descending revision range with unreachable revision' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 3:1 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r2-r1 -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
printf 'r2 \n' > expected-range-r2
|
|
|
|
|
|
|
|
test_expect_success 'test ascending revision range with unreachable upper boundary revision and 1 commit' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 2:3 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r2 -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'test descending revision range with unreachable upper boundary revision and 1 commit' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 3:2 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r2 -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
printf 'r4 \n' > expected-range-r4
|
|
|
|
|
|
|
|
test_expect_success 'test ascending revision range with unreachable lower boundary revision and 1 commit' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 3:4 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r4 -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'test descending revision range with unreachable lower boundary revision and 1 commit' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 4:3 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r4 -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
printf -- '------------------------------------------------------------------------\n' > expected-separator
|
|
|
|
|
|
|
|
test_expect_success 'test ascending revision range with unreachable boundary revisions and no commits' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 5:6 | test_cmp expected-separator -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'test descending revision range with unreachable boundary revisions and no commits' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 6:5 | test_cmp expected-separator -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'test ascending revision range with unreachable boundary revisions and 1 commit' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 3:5 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r4 -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
|
|
|
test_expect_success 'test descending revision range with unreachable boundary revisions and 1 commit' "
|
|
|
|
git reset --hard trunk &&
|
2008-03-12 22:36:36 +01:00
|
|
|
git svn log -r 5:3 | grep '^r[0-9]' | cut -d'|' -f1 | test_cmp expected-range-r4 -
|
2007-11-12 07:56:52 +01:00
|
|
|
"
|
|
|
|
|
2007-08-15 18:55:18 +02:00
|
|
|
test_done
|