Skip to content

Commit ada6130

Browse files
authored
Merge pull request #1 from outillage/migration
feat: migrate over files from release-notary
2 parents 10743bd + 7a84737 commit ada6130

File tree

6 files changed

+125
-9
lines changed

6 files changed

+125
-9
lines changed

commit.go

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
package quoad
2+
3+
import "encoding/hex"
4+
5+
// Commit is a parsed commit that contains information about category, scope and heading
6+
type Commit struct {
7+
Category string
8+
Heading string
9+
Body string
10+
Scope string
11+
Hash Hash
12+
Issues []int
13+
}
14+
15+
// Hash describes a commit hash
16+
type Hash [20]byte
17+
18+
func (h Hash) String() string {
19+
return hex.EncodeToString(h[:])
20+
}

go.mod

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
module github.com/outillage/quoad
22

33
go 1.13
4+
5+
require github.com/stretchr/testify v1.4.0

go.sum

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
2+
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
3+
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
4+
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
5+
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
6+
github.com/stretchr/testify v1.4.0 h1:2E4SXV/wtOkTonXsotYi4li6zVWxYlZuYNCXe9XRJyk=
7+
github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
8+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
9+
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
10+
gopkg.in/yaml.v2 v2.2.2 h1:ZCJp+EgiOT7lHqUV2J862kp8Qj64Jo6az82+3Td9dZw=
11+
gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=

main.go

-9
This file was deleted.

parse_commit.go

+64
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
package quoad
2+
3+
import (
4+
"fmt"
5+
"regexp"
6+
"strconv"
7+
"strings"
8+
)
9+
10+
var (
11+
referenceFormatRegex = regexp.MustCompile(`Refs:?[^\r\n]*`)
12+
referenceIDFormatRegex = regexp.MustCompile(`\#([0-9]+)`)
13+
expectedFormatRegex = regexp.MustCompile(`(?s)^(?P<category>\S+?)?(?P<scope>\(\S+\))?(?P<breaking>!?)?: (?P<heading>[^\n\r]+)?([\n\r]{2}(?P<body>.*))?`)
14+
)
15+
16+
// GetIssueNumbers converts the matches from the reference regular expression to integers
17+
func GetIssueNumbers(matches []string) []int {
18+
var issueNumbers []int
19+
for _, match := range matches {
20+
for _, refID := range referenceIDFormatRegex.FindAllStringSubmatch(match, -1) {
21+
issueNumber, err := strconv.Atoi(refID[1])
22+
23+
if err != nil {
24+
fmt.Println("couldn't convert reference ID to number")
25+
continue
26+
}
27+
28+
issueNumbers = append(issueNumbers, issueNumber)
29+
}
30+
}
31+
32+
return issueNumbers
33+
}
34+
35+
// ParseCommitMessage creates a slice of Commits that contain information about category and scope parsed from commit message
36+
func ParseCommitMessage(commitMessage string) Commit {
37+
references := referenceFormatRegex.FindAllString(commitMessage, -1)
38+
39+
commitMessage = referenceFormatRegex.ReplaceAllString(commitMessage, "")
40+
41+
match := expectedFormatRegex.FindStringSubmatch(commitMessage)
42+
43+
if len(match) > 0 {
44+
result := make(map[string]string)
45+
46+
for i, name := range expectedFormatRegex.SubexpNames() {
47+
if i != 0 && name != "" {
48+
result[name] = match[i]
49+
}
50+
}
51+
52+
category := result["category"]
53+
scope := result["scope"]
54+
heading := result["heading"]
55+
body := result["body"]
56+
57+
scope = strings.Replace(scope, "(", "", 1)
58+
scope = strings.Replace(scope, ")", "", 1)
59+
60+
return Commit{Category: category, Heading: heading, Scope: scope, Body: strings.TrimRight(body, "\r\n\t "), Issues: GetIssueNumbers(references)}
61+
}
62+
63+
return Commit{Category: "other", Heading: commitMessage, Scope: ""}
64+
}

parse_commit_test.go

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
package quoad
2+
3+
import (
4+
"testing"
5+
6+
"github.com/stretchr/testify/assert"
7+
)
8+
9+
func TestParseCommitMessage(t *testing.T) {
10+
11+
tests := map[string]Commit{
12+
"chore: testing\n": Commit{Category: "chore", Scope: "", Heading: "testing"},
13+
"feat(ci): ci test\n": Commit{Category: "feat", Scope: "ci", Heading: "ci test"},
14+
"merge master in something\n": Commit{Category: "other", Scope: "", Heading: "merge master in something\n"},
15+
"chore: test\n\nsomething more here": Commit{Category: "chore", Scope: "", Heading: "test", Body: "something more here"},
16+
"chore: test\n\nsomething more here\nRefs: #12": Commit{Category: "chore", Scope: "", Heading: "test", Body: "something more here", Issues: []int{12}},
17+
"chore: test\n\nsomething more here\n\tRefs: #12": Commit{Category: "chore", Scope: "", Heading: "test", Body: "something more here", Issues: []int{12}},
18+
"chore: test\n\nsomething more here\n\t Refs: #12": Commit{Category: "chore", Scope: "", Heading: "test", Body: "something more here", Issues: []int{12}},
19+
"chore: test\n\nsomething more here\nRefs: #12\nRefs: #13": Commit{Category: "chore", Scope: "", Heading: "test", Body: "something more here", Issues: []int{12, 13}},
20+
"chore: test\n\nsomething more here\nRefs: #12, #13": Commit{Category: "chore", Scope: "", Heading: "test", Body: "something more here", Issues: []int{12, 13}},
21+
"chore: test\n\nsomething more here\nRefs: #12 and #13": Commit{Category: "chore", Scope: "", Heading: "test", Body: "something more here", Issues: []int{12, 13}},
22+
}
23+
24+
for test, expected := range tests {
25+
err := ParseCommitMessage(test)
26+
assert.Equal(t, expected, err)
27+
}
28+
}

0 commit comments

Comments
 (0)