-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
config_test.go
67 lines (61 loc) · 1.47 KB
/
config_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
package tagpr
import (
"os"
"path/filepath"
"reflect"
"strings"
"testing"
"github.com/Songmu/gitconfig"
)
func TestConfig(t *testing.T) {
tmpdir := t.TempDir()
confPath := filepath.Join(tmpdir, defaultConfigFile)
cfg := &config{
conf: confPath,
gitconfig: &gitconfig.Config{GitPath: "git", File: confPath},
}
if err := cfg.Reload(); err != nil {
t.Error(err)
}
if e, g := "", cfg.ReleaseBranch(); e != g {
t.Errorf("got: %s, expext: %s", g, e)
}
if err := cfg.SetReleaseBranch("main"); err != nil {
t.Error(err)
}
if e, g := "main", cfg.ReleaseBranch(); e != g {
t.Errorf("got: %s, expext: %s", g, e)
}
if err := cfg.SetVersionFile(""); err != nil {
t.Error(err)
}
if e, g := "", cfg.VersionFile(); e != g {
t.Errorf("got: %s, expext: %s", g, e)
}
if e, g := []string{"major"}, cfg.MajorLabels(); !reflect.DeepEqual(e, g) {
t.Errorf("got: %s, expext: %s", g, e)
}
if e, g := []string{"minor"}, cfg.MinorLabels(); !reflect.DeepEqual(e, g) {
t.Errorf("got: %s, expext: %s", g, e)
}
if e, g := "[tagpr]", cfg.CommitPrefix(); !reflect.DeepEqual(e, g) {
t.Errorf("got: %s, expext: %s", g, e)
}
b, err := os.ReadFile(confPath)
if err != nil {
t.Error(err)
}
var out string
for _, line := range strings.Split(string(b), "\n") {
if line != "" && !strings.HasPrefix(line, "#") {
out += line + "\n"
}
}
expect := `[tagpr]
releaseBranch = main
versionFile = -
`
if out != expect {
t.Errorf("got:\n%s\nexpect:\n%s", out, expect)
}
}