debian/rules should be producing architecture independent packages
[stgit/dwhite.git] / t / t1900-mail.sh
blobcfdc6f36e770fb0e82cde3c9f1c85033f61700ee
1 #!/bin/sh
2 # Copyright (c) 2006 Karl Hasselström
3 test_description='Test the mail command'
4 . ./test-lib.sh
6 test_expect_success \
7 'Initialize the StGIT repository' \
9 git config stgit.sender "A U Thor <author@example.com>" &&
10 for i in 1 2 3 4 5; do
11 touch foo.txt &&
12 echo "line $i" >> foo.txt &&
13 git add foo.txt &&
14 git commit -a -m "Patch $i"
15 done &&
16 stg init &&
17 stg uncommit -n 5 foo
20 test_expect_success \
21 'Put all the patches in an mbox' \
22 'stg mail --to="Inge Ström <inge@example.com>" -a -m \
23 -t ../../templates/patchmail.tmpl > mbox0'
25 test_expect_success \
26 'Import the mbox and compare' \
28 t1=$(git cat-file -p $(stg id) | grep ^tree)
29 stg pop -a &&
30 stg import -M mbox0 &&
31 t2=$(git cat-file -p $(stg id) | grep ^tree) &&
32 [ "$t1" = "$t2" ]
35 test_expect_success \
36 'Put all the patches in an mbox with patch attachments' \
37 'stg mail --to="Inge Ström <inge@example.com>" -a -m \
38 -t ../../templates/mailattch.tmpl > mbox1'
40 test_expect_success \
41 'Import the mbox containing patch attachments and compare' \
43 t1=$(git cat-file -p $(stg id) | grep ^tree)
44 stg pop -a &&
45 stg import -M mbox1 &&
46 t2=$(git cat-file -p $(stg id) | grep ^tree) &&
47 [ "$t1" = "$t2" ]
50 test_done