summaryrefslogtreecommitdiff
path: root/t/t4212-log-corrupt.sh
blob: ec5099b83d7490184a68691ff2ca0e875cfab209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/sh
 
test_description='git log with invalid commit headers'
 
. ./test-lib.sh
 
test_expect_success 'setup' '
	test_commit foo &&
 
	git cat-file commit HEAD |
	sed "/^author /s/>/>-<>/" >broken_email.commit &&
	git hash-object -w -t commit broken_email.commit >broken_email.hash &&
	git update-ref refs/heads/broken_email $(cat broken_email.hash)
'
 
test_expect_success 'git log with broken author email' '
	{
		echo commit $(cat broken_email.hash)
		echo "Author: A U Thor <author@example.com>"
		echo "Date:   Thu Jan 1 00:00:00 1970 +0000"
		echo
		echo "    foo"
	} >expect.out &&
	: >expect.err &&
 
	git log broken_email >actual.out 2>actual.err &&
 
	test_cmp expect.out actual.out &&
	test_cmp expect.err actual.err
'
 
test_expect_success 'git log --format with broken author email' '
	echo "A U Thor+author@example.com+" >expect.out &&
	: >expect.err &&
 
	git log --format="%an+%ae+%ad" broken_email >actual.out 2>actual.err &&
 
	test_cmp expect.out actual.out &&
	test_cmp expect.err actual.err
'
 
test_done