changeloguru/pkg/changelog/markdown_test.go

88 lines
1.8 KiB
Go

package changelog
import (
"testing"
"time"
"github.com/haunt98/changeloguru/pkg/convention"
"github.com/sebdah/goldie/v2"
)
func TestMarkdownGeneratorGenerate(t *testing.T) {
tests := []struct {
name string
oldData string
version string
t time.Time
commits []convention.Commit
}{
{
name: "empty old data",
version: "v1.0.0",
t: time.Date(2020, 1, 18, 0, 0, 0, 0, time.Local),
commits: []convention.Commit{
{
RawHeader: "feat: new feature",
Type: convention.FeatType,
},
{
RawHeader: "fix: new fix",
Type: convention.FixType,
},
{
RawHeader: "chore: new build",
Type: convention.ChoreType,
},
},
},
{
name: "many commits",
version: "v1.0.0",
t: time.Date(2020, 1, 18, 0, 0, 0, 0, time.Local),
commits: []convention.Commit{
{
RawHeader: "feat: new feature",
Type: convention.FeatType,
},
{
RawHeader: "feat: support new client",
Type: convention.FeatType,
},
{
RawHeader: "fix: new fix",
Type: convention.FixType,
},
{
RawHeader: "fix: wrong color",
Type: convention.FixType,
},
{
RawHeader: "chore: new build",
Type: convention.ChoreType,
},
{
RawHeader: "chore(github): release on github",
Type: convention.ChoreType,
},
{
RawHeader: "chore(gitlab): release on gitlab",
Type: convention.ChoreType,
},
{
RawHeader: "unleash the dragon",
Type: convention.MiscType,
},
},
},
}
for _, tc := range tests {
t.Run(tc.name, func(t *testing.T) {
g := goldie.New(t)
markdownGenerator := NewMarkdownGenerator(tc.oldData, tc.version, tc.t)
got := markdownGenerator.Generate(tc.commits)
g.Assert(t, t.Name(), []byte(got))
})
}
}