-
-
Notifications
You must be signed in to change notification settings - Fork 118
/
olric_test.go
139 lines (115 loc) · 3.45 KB
/
olric_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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// Copyright 2018-2024 Burak Sezer
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package olric
import (
"context"
"fmt"
"sync"
"testing"
"time"
"github.com/buraksezer/olric/config"
"github.com/buraksezer/olric/internal/testutil"
"github.com/buraksezer/olric/stats"
"github.com/hashicorp/memberlist"
"github.com/stretchr/testify/require"
)
// newTestOlricWithConfig creates a new Olric instance with the given configuration.
// This function is intended for internal use. Please use testOlricCluster and its
// methods to form a cluster in tests.
func newTestOlricWithConfig(t *testing.T, c *config.Config) *Olric {
port, err := testutil.GetFreePort()
require.NoError(t, err)
if c.MemberlistConfig == nil {
c.MemberlistConfig = memberlist.DefaultLocalConfig()
}
c.MemberlistConfig.BindPort = 0
c.BindAddr = "127.0.0.1"
c.BindPort = port
err = c.Sanitize()
require.NoError(t, err)
err = c.Validate()
require.NoError(t, err)
ctx, cancel := context.WithCancel(context.Background())
c.Started = func() {
cancel()
}
db, err := New(c)
require.NoError(t, err)
go func() {
if err := db.Start(); err != nil {
panic(fmt.Sprintf("Failed to run Olric: %v", err))
}
}()
select {
case <-time.After(time.Second):
t.Fatalf("Olric cannot be started in one second")
case <-ctx.Done():
// everything is fine
}
return db
}
type testOlricCluster struct {
mtx sync.Mutex
members map[string]*Olric
}
func newTestOlricCluster(t *testing.T) *testOlricCluster {
cl := &testOlricCluster{members: make(map[string]*Olric)}
t.Cleanup(func() {
cl.mtx.Lock()
defer cl.mtx.Unlock()
for _, member := range cl.members {
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
err := member.Shutdown(ctx)
cancel()
require.NoError(t, err)
}
})
return cl
}
func (cl *testOlricCluster) addMemberWithConfig(t *testing.T, c *config.Config) *Olric {
cl.mtx.Lock()
defer cl.mtx.Unlock()
if c == nil {
c = testutil.NewConfig()
}
for _, member := range cl.members {
c.Peers = append(c.Peers, member.rt.Discovery().LocalNode().Address())
}
db := newTestOlricWithConfig(t, c)
cl.members[db.rt.This().String()] = db
t.Logf("A new cluster member has been created: %s", db.rt.This())
return db
}
func (cl *testOlricCluster) addMember(t *testing.T) *Olric {
return cl.addMemberWithConfig(t, nil)
}
func TestOlric_StartAndShutdown(t *testing.T) {
cluster := newTestOlricCluster(t)
db := cluster.addMember(t)
err := db.Shutdown(context.Background())
require.NoError(t, err)
}
func TestOlricCluster_StartAndShutdown(t *testing.T) {
cluster := newTestOlricCluster(t)
cluster.addMember(t)
db := cluster.addMember(t)
require.Len(t, cluster.members, 2)
e := db.NewEmbeddedClient()
st, err := e.Stats(context.Background(), db.rt.This().String())
require.NoError(t, err)
require.Len(t, st.ClusterMembers, 2)
for _, member := range cluster.members {
require.Contains(t, st.ClusterMembers, stats.MemberID(member.rt.This().ID))
}
}