【rich function】VersionCompare replace

This commit is contained in:
sunwei
2020-08-09 22:07:30 +08:00
committed by Kevin Wan
parent 945d59a980
commit e18ca9aac1
2 changed files with 3 additions and 57 deletions

View File

@@ -6,29 +6,6 @@ import (
"github.com/stretchr/testify/assert"
)
func TestCompareVersions(t *testing.T) {
cases := []struct {
ver1 string
ver2 string
out int
}{
{"1", "1.0.1", -1},
{"1.0.1", "1.0.2", -1},
{"1.0.3", "1.1", -1},
{"1.1", "1.1.1", -1},
{"1.3.2", "1.2", 1},
{"1.1.1", "1.1.1", 0},
{"1.1.0", "1.1", 0},
}
for _, each := range cases {
t.Run(each.ver1, func(t *testing.T) {
actual := CompareVersions(each.ver1, each.ver2)
assert.Equal(t, each.out, actual)
})
}
}
func TestCustomCompareVersions(t *testing.T) {
cases := []struct {
ver1 string
@@ -53,7 +30,7 @@ func TestCustomCompareVersions(t *testing.T) {
for _, each := range cases {
t.Run(each.ver1, func(t *testing.T) {
actual := CustomCompareVersions(each.ver1, each.ver2, each.operator)
actual := CompareVersions(each.ver1, each.ver2, each.operator)
assert.Equal(t, each.out, actual)
})
}