2005-05-27 01:03:26 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# Copyright (C) 2005 Rene Scharfe
|
|
|
|
#
|
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
test_description='git commit-tree options test
|
2005-05-27 01:03:26 +02:00
|
|
|
|
2007-07-03 07:52:14 +02:00
|
|
|
This test checks that git commit-tree can create a specific commit
|
2005-05-27 01:03:26 +02:00
|
|
|
object by defining all environment variables that it understands.
|
2012-07-17 22:05:13 +02:00
|
|
|
|
|
|
|
Also make sure that command line parser understands the normal
|
|
|
|
"flags first and then non flag arguments" command line.
|
2005-05-27 01:03:26 +02:00
|
|
|
'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
cat >expected <<EOF
|
2016-07-16 07:06:24 +02:00
|
|
|
tree $EMPTY_TREE
|
2005-05-27 01:03:26 +02:00
|
|
|
author Author Name <author@email> 1117148400 +0000
|
|
|
|
committer Committer Name <committer@email> 1117150200 +0000
|
|
|
|
|
|
|
|
comment text
|
|
|
|
EOF
|
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'test preparation: write empty tree' \
|
2007-07-03 07:52:14 +02:00
|
|
|
'git write-tree >treeid'
|
2005-05-27 01:03:26 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'construct commit' \
|
|
|
|
'echo comment text |
|
|
|
|
GIT_AUTHOR_NAME="Author Name" \
|
|
|
|
GIT_AUTHOR_EMAIL="author@email" \
|
|
|
|
GIT_AUTHOR_DATE="2005-05-26 23:00" \
|
|
|
|
GIT_COMMITTER_NAME="Committer Name" \
|
|
|
|
GIT_COMMITTER_EMAIL="committer@email" \
|
|
|
|
GIT_COMMITTER_DATE="2005-05-26 23:30" \
|
2015-12-22 16:05:46 +01:00
|
|
|
TZ=GMT git commit-tree $(cat treeid) >commitid 2>/dev/null'
|
2005-05-27 01:03:26 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'read commit' \
|
2015-12-22 16:05:46 +01:00
|
|
|
'git cat-file commit $(cat commitid) >commit'
|
2005-05-27 01:03:26 +02:00
|
|
|
|
|
|
|
test_expect_success \
|
|
|
|
'compare commit' \
|
2009-03-16 21:18:42 +01:00
|
|
|
'test_cmp expected commit'
|
2005-05-27 01:03:26 +02:00
|
|
|
|
2012-07-17 22:05:13 +02:00
|
|
|
|
|
|
|
test_expect_success 'flags and then non flags' '
|
2012-07-28 20:48:06 +02:00
|
|
|
test_tick &&
|
2012-07-17 22:05:13 +02:00
|
|
|
echo comment text |
|
|
|
|
git commit-tree $(cat treeid) >commitid &&
|
|
|
|
echo comment text |
|
|
|
|
git commit-tree $(cat treeid) -p $(cat commitid) >childid-1 &&
|
|
|
|
echo comment text |
|
|
|
|
git commit-tree -p $(cat commitid) $(cat treeid) >childid-2 &&
|
|
|
|
test_cmp childid-1 childid-2 &&
|
|
|
|
git commit-tree $(cat treeid) -m foo >childid-3 &&
|
|
|
|
git commit-tree -m foo $(cat treeid) >childid-4 &&
|
|
|
|
test_cmp childid-3 childid-4
|
|
|
|
'
|
|
|
|
|
2005-05-27 01:03:26 +02:00
|
|
|
test_done
|