-
Notifications
You must be signed in to change notification settings - Fork 72
/
commit_test.go
117 lines (102 loc) · 2.5 KB
/
commit_test.go
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
package git
import (
"bytes"
"testing"
"github.com/stretchr/testify/assert"
)
func TestParseLocalCommitStack(t *testing.T) {
var buffer bytes.Buffer
tests := []struct {
name string
inputCommitLog string
expectedCommits []Commit
expectedValid bool
}{
{
name: "SingleValidCommitNoBody",
inputCommitLog: `
commit d89e0e460ed817c81641f32b1a506b60164b4403 (HEAD -> master)
Author: Han Solo
Date: Wed May 21 19:53:12 1980 -0700
Supergalactic speed
commit-id:053f6d16
`,
expectedCommits: []Commit{
{
CommitHash: "d89e0e460ed817c81641f32b1a506b60164b4403",
CommitID: "053f6d16",
Subject: "Supergalactic speed",
Body: "",
},
},
expectedValid: true,
},
{
name: "SingleValidCommitWithBody",
inputCommitLog: `
commit d89e0e460ed817c81641f32b1a506b60164b4403 (HEAD -> master)
Author: Han Solo
Date: Wed May 21 19:53:12 1980 -0700
Supergalactic speed
Super universe body.
commit-id:053f6d16
`,
expectedCommits: []Commit{
{
CommitHash: "d89e0e460ed817c81641f32b1a506b60164b4403",
CommitID: "053f6d16",
Subject: "Supergalactic speed",
Body: "Super universe body.",
},
},
expectedValid: true,
},
{
name: "TwoValidCommitsNoBody",
inputCommitLog: `
commit d89e0e460ed817c81641f32b1a506b60164b4403 (HEAD -> master)
Author: Han Solo
Date: Wed May 21 19:53:12 1980 -0700
Supergalactic speed
commit-id:053f6d16
commit d604099d6604949e786e3d781919d43e46e88521 (origin/pr/ejoffe/master/39c84ea3)
Author: Hans Solo
Date: Wed May 21 19:52:51 1980 -0700
More engine power
commit-id:39c84ea3
`,
expectedCommits: []Commit{
{
CommitHash: "d604099d6604949e786e3d781919d43e46e88521",
CommitID: "39c84ea3",
Subject: "More engine power",
},
{
CommitHash: "d89e0e460ed817c81641f32b1a506b60164b4403",
CommitID: "053f6d16",
Subject: "Supergalactic speed",
},
},
expectedValid: true,
},
{
name: "SingleCommitMissingCommitID",
inputCommitLog: `
commit d89e0e460ed817c81641f32b1a506b60164b4403 (HEAD -> master)
Author: Han Solo
Date: Wed May 21 19:53:12 1980 -0700
Supergalactic speed
`,
expectedCommits: nil,
expectedValid: false,
},
}
for _, tc := range tests {
actualCommits, valid := parseLocalCommitStack(tc.inputCommitLog)
assert.Equal(t, tc.expectedCommits, actualCommits, tc.name)
assert.Equal(t, tc.expectedValid, valid, tc.name)
if tc.expectedValid {
assert.Equal(t, buffer.Len(), 0, tc.name)
}
}
}