-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprev_test.go
75 lines (69 loc) · 1.52 KB
/
prev_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
package main
import (
"context"
"os"
"testing"
"github.com/Masterminds/semver/v3"
"github.com/stretchr/testify/require"
)
func Test_getPrevVersion(t *testing.T) {
ctx := context.Background()
dir := t.TempDir()
_, e := runCmd(ctx, &runCmdOpts{
dir: dir,
env: map[string]string{
"GIT_AUTHOR_NAME": "foo",
"GIT_COMMITTER_NAME": "foo",
"EMAIL": "[email protected]",
},
stdout: os.Stdout,
stderr: os.Stderr,
}, "sh", "-c", `
git init
git commit --allow-empty -m "first"
git tag v0.1.0
git tag foo0.1.0
git tag v0.1.1
git tag foo0.1.1
git tag v0.2.0
git tag foo0.2.0
git tag v1.0.0
git commit --allow-empty -m "second"
git commit --allow-empty -m "third"
git tag v2.0.0
git tag foo
git commit --allow-empty -m "forth"
git tag bar
`)
require.NoError(t, e)
t.Run("", func(t *testing.T) {
opts := getPrevTagOpts{
RepoDir: dir,
Prefixes: []string{"v"},
}
got, err := getPrevTag(ctx, &opts)
require.NoError(t, err)
require.Equal(t, "v2.0.0", got)
})
t.Run("", func(t *testing.T) {
opts := getPrevTagOpts{
RepoDir: dir,
Prefixes: []string{"v", "bar"},
}
got, err := getPrevTag(ctx, &opts)
require.NoError(t, err)
require.Equal(t, "v2.0.0", got)
})
t.Run("", func(t *testing.T) {
versionZero, err := semver.NewConstraint("< 1.0.0")
require.NoError(t, err)
opts := getPrevTagOpts{
RepoDir: dir,
Prefixes: []string{"v", "foo"},
Constraints: versionZero,
}
got, err := getPrevTag(ctx, &opts)
require.NoError(t, err)
require.Equal(t, "v0.2.0", got)
})
}