-
Notifications
You must be signed in to change notification settings - Fork 96
/
Copy pathredis_test.go
52 lines (48 loc) · 983 Bytes
/
redis_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
// Copyright (c) 2025 Arnaud Rebillout
// Licensed under the MIT license
package database
import (
"fmt"
"testing"
)
func TestIsAtLeastVersion(t *testing.T) {
testsFalse := [] struct {
have string
want string
} {
{"", "3.2.0"},
{"2.0", "3.2.0"},
{"2.0.0", "3.2"},
{"2.0.0", "3.2.0"},
}
for i, test := range testsFalse {
r := Redis{
version: test.have,
}
t.Run(fmt.Sprintf("testsFalse/%d", i), func(t *testing.T) {
if r.IsAtLeastVersion(test.want) {
t.Errorf("Expected '%s' < '%s'", test.have, test.want)
}
})
}
testsTrue := [] struct {
have string
want string
} {
{"3.2", "3.2.0"},
{"3.2.0", "3.2.0"},
{"6.0", "3.2.0"},
{"6.0.0", "3.2"},
{"6.0.0", "3.2.0"},
}
for i, test := range testsTrue {
r := Redis{
version: test.have,
}
t.Run(fmt.Sprintf("testsTrue/%d", i), func(t *testing.T) {
if ! r.IsAtLeastVersion(test.want) {
t.Errorf("Expected '%s' >= '%s'", test.have, test.want)
}
})
}
}