-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathnode_test.go
95 lines (83 loc) · 2.25 KB
/
node_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
/*
* Copyright 2018 Dgraph Labs, Inc. and Contributors
*
* 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 conn
import (
"bytes"
"fmt"
"io/ioutil"
"os"
"sync"
"testing"
"time"
"github.com/dgraph-io/badger"
"github.com/dgraph-io/dgraph/protos/pb"
"github.com/dgraph-io/dgraph/raftwal"
"github.com/stretchr/testify/require"
"go.etcd.io/etcd/raft"
"go.etcd.io/etcd/raft/raftpb"
"golang.org/x/net/context"
)
func openBadger(dir string) (*badger.DB, error) {
opt := badger.DefaultOptions(dir)
return badger.Open(opt)
}
func (n *Node) run(wg *sync.WaitGroup) {
ticker := time.NewTicker(20 * time.Millisecond)
defer ticker.Stop()
for {
select {
case <-ticker.C:
n.Raft().Tick()
case rd := <-n.Raft().Ready():
n.SaveToStorage(rd.HardState, rd.Entries, rd.Snapshot)
for _, entry := range rd.CommittedEntries {
if entry.Type == raftpb.EntryConfChange {
var cc raftpb.ConfChange
cc.Unmarshal(entry.Data)
n.Raft().ApplyConfChange(cc)
} else if entry.Type == raftpb.EntryNormal {
if bytes.HasPrefix(entry.Data, []byte("hey")) {
wg.Done()
}
}
}
n.Raft().Advance()
}
}
}
func TestProposal(t *testing.T) {
dir, err := ioutil.TempDir("", "badger")
require.NoError(t, err)
defer os.RemoveAll(dir)
db, err := openBadger(dir)
require.NoError(t, err)
store := raftwal.Init(db, 0, 0)
rc := &pb.RaftContext{Id: 1}
n := NewNode(rc, store)
peers := []raft.Peer{{ID: n.Id}}
n.SetRaft(raft.StartNode(n.Cfg, peers))
loop := 5
var wg sync.WaitGroup
wg.Add(loop)
go n.run(&wg)
for i := 0; i < loop; i++ {
data := []byte(fmt.Sprintf("hey-%d", i))
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
require.NoError(t, n.Raft().Propose(ctx, data))
}
wg.Wait()
}