forked from kvtools/valkeyrie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
valkeyrie_test.go
76 lines (52 loc) · 1.4 KB
/
valkeyrie_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
76
package valkeyrie
import (
"context"
"testing"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
func TestRegister(t *testing.T) {
t.Cleanup(UnregisterAllConstructors)
Register(testStoreName, newStore)
assert.Len(t, constructors, 1)
}
func TestRegister_duplicate(t *testing.T) {
t.Cleanup(UnregisterAllConstructors)
Register(testStoreName, newStore)
assert.Len(t, constructors, 1)
assert.Panics(t, func() {
Register(testStoreName, newStore)
})
}
func TestRegister_nil(t *testing.T) {
t.Cleanup(UnregisterAllConstructors)
assert.Panics(t, func() {
Register(testStoreName, nil)
})
}
func TestUnregister(t *testing.T) {
t.Cleanup(UnregisterAllConstructors)
Register(testStoreName, newStore)
assert.Len(t, constructors, 1)
Unregister(testStoreName)
constructorsMu.Lock()
defer constructorsMu.Unlock()
assert.Empty(t, constructors)
}
func TestConstructors(t *testing.T) {
t.Cleanup(UnregisterAllConstructors)
Register(testStoreName, newStore)
assert.Len(t, constructors, 1)
cttrs := Constructors()
expected := []string{testStoreName}
assert.Equal(t, expected, cttrs)
}
func TestNewStore(t *testing.T) {
t.Cleanup(UnregisterAllConstructors)
Register(testStoreName, newStore)
assert.Len(t, constructors, 1)
s, err := NewStore(context.Background(), testStoreName, nil, nil)
require.NoError(t, err)
assert.NotNil(t, s)
assert.IsType(t, &Mock{}, s)
}