chiark / gitweb /
replace "git repo-config" usage by "git config"
[stgit] / t / t1900-mail.sh
CommitLineData
ff42cedd
KH
1#!/bin/sh
2# Copyright (c) 2006 Karl Hasselström
3test_description='Test the mail command'
4. ./test-lib.sh
5
6test_expect_success \
7 'Initialize the StGIT repository' \
8 '
dbb0cf2c 9 git config stgit.sender "A U Thor <author@example.com>" &&
ff42cedd
KH
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
18 '
19
20test_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'
24
25test_expect_success \
26 'Import the mbox and compare' \
27 '
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) &&
89f64744 32 [ "$t1" = "$t2" ]
ff42cedd
KH
33 '
34
9938103f
CM
35test_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'
39
40test_expect_success \
41 'Import the mbox containing patch attachments and compare' \
42 '
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" ]
48 '
49
ff42cedd 50test_done