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.
|
|
|
|
'
|
|
|
|
|
|
|
|
. ./test-lib.sh
|
|
|
|
|
|
|
|
cat >expected <<EOF
|
|
|
|
tree 4b825dc642cb6eb9a060e54bf8d69288fbee4904
|
|
|
|
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" \
|
2007-07-03 07:52:14 +02: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' \
|
2007-07-03 07:52:14 +02: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
|
|
|
|
|
|
|
test_done
|