|
|
@@ -0,0 +1,151 @@
|
|
|
+// Copyright 2015 CoreOS, Inc.
|
|
|
+//
|
|
|
+// 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 rafthttp
|
|
|
+
|
|
|
+import (
|
|
|
+ "net/http"
|
|
|
+ "net/http/httptest"
|
|
|
+ "reflect"
|
|
|
+ "testing"
|
|
|
+ "time"
|
|
|
+
|
|
|
+ "github.com/coreos/etcd/Godeps/_workspace/src/golang.org/x/net/context"
|
|
|
+ "github.com/coreos/etcd/etcdserver/stats"
|
|
|
+ "github.com/coreos/etcd/pkg/types"
|
|
|
+ "github.com/coreos/etcd/raft"
|
|
|
+ "github.com/coreos/etcd/raft/raftpb"
|
|
|
+)
|
|
|
+
|
|
|
+func TestSendMessage(t *testing.T) {
|
|
|
+ // member 1
|
|
|
+ tr := NewTransporter(&http.Transport{}, types.ID(1), types.ID(1), &fakeRaft{}, nil, newServerStats(), stats.NewLeaderStats("1"))
|
|
|
+ srv := httptest.NewServer(tr.Handler())
|
|
|
+ defer srv.Close()
|
|
|
+
|
|
|
+ // member 2
|
|
|
+ recvc := make(chan raftpb.Message, 1)
|
|
|
+ p := &fakeRaft{recvc: recvc}
|
|
|
+ tr2 := NewTransporter(&http.Transport{}, types.ID(2), types.ID(1), p, nil, newServerStats(), stats.NewLeaderStats("2"))
|
|
|
+ srv2 := httptest.NewServer(tr2.Handler())
|
|
|
+ defer srv2.Close()
|
|
|
+
|
|
|
+ tr.AddPeer(types.ID(2), []string{srv2.URL})
|
|
|
+ defer tr.Stop()
|
|
|
+ tr2.AddPeer(types.ID(1), []string{srv.URL})
|
|
|
+ defer tr2.Stop()
|
|
|
+ if !waitStreamWorking(tr.(*transport).Get(types.ID(2)).(*peer)) {
|
|
|
+ t.Fatalf("stream from 1 to 2 is not in work as expected")
|
|
|
+ }
|
|
|
+
|
|
|
+ data := []byte("some data")
|
|
|
+ tests := []raftpb.Message{
|
|
|
+ // these messages are set to send to itself, which faciliates testing.
|
|
|
+ {Type: raftpb.MsgProp, From: 1, To: 2, Entries: []raftpb.Entry{{Data: data}}},
|
|
|
+ // TODO: send out MsgApp which fits msgapp stream but the term doesn't match
|
|
|
+ {Type: raftpb.MsgApp, From: 1, To: 2, Term: 1, Index: 3, LogTerm: 0, Entries: []raftpb.Entry{{Index: 4, Term: 1, Data: data}}, Commit: 3},
|
|
|
+ {Type: raftpb.MsgAppResp, From: 1, To: 2, Term: 1, Index: 3},
|
|
|
+ {Type: raftpb.MsgVote, From: 1, To: 2, Term: 1, Index: 3, LogTerm: 0},
|
|
|
+ {Type: raftpb.MsgVoteResp, From: 1, To: 2, Term: 1},
|
|
|
+ {Type: raftpb.MsgSnap, From: 1, To: 2, Term: 1, Snapshot: raftpb.Snapshot{Metadata: raftpb.SnapshotMetadata{Index: 1000, Term: 1}, Data: data}},
|
|
|
+ {Type: raftpb.MsgHeartbeat, From: 1, To: 2, Term: 1, Commit: 3},
|
|
|
+ {Type: raftpb.MsgHeartbeatResp, From: 1, To: 2, Term: 1},
|
|
|
+ }
|
|
|
+ for i, tt := range tests {
|
|
|
+ tr.Send([]raftpb.Message{tt})
|
|
|
+ msg := <-recvc
|
|
|
+ if !reflect.DeepEqual(msg, tt) {
|
|
|
+ t.Errorf("#%d: msg = %+v, want %+v", i, msg, tt)
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// TestSendMessageWhenStreamIsBroken tests that message can be sent to the
|
|
|
+// remote in a limited time when all underlying connections are broken.
|
|
|
+func TestSendMessageWhenStreamIsBroken(t *testing.T) {
|
|
|
+ // member 1
|
|
|
+ tr := NewTransporter(&http.Transport{}, types.ID(1), types.ID(1), &fakeRaft{}, nil, newServerStats(), stats.NewLeaderStats("1"))
|
|
|
+ srv := httptest.NewServer(tr.Handler())
|
|
|
+ defer srv.Close()
|
|
|
+
|
|
|
+ // member 2
|
|
|
+ recvc := make(chan raftpb.Message, 1)
|
|
|
+ p := &fakeRaft{recvc: recvc}
|
|
|
+ tr2 := NewTransporter(&http.Transport{}, types.ID(2), types.ID(1), p, nil, newServerStats(), stats.NewLeaderStats("2"))
|
|
|
+ srv2 := httptest.NewServer(tr2.Handler())
|
|
|
+ defer srv2.Close()
|
|
|
+
|
|
|
+ tr.AddPeer(types.ID(2), []string{srv2.URL})
|
|
|
+ defer tr.Stop()
|
|
|
+ tr2.AddPeer(types.ID(1), []string{srv.URL})
|
|
|
+ defer tr2.Stop()
|
|
|
+ if !waitStreamWorking(tr.(*transport).Get(types.ID(2)).(*peer)) {
|
|
|
+ t.Fatalf("stream from 1 to 2 is not in work as expected")
|
|
|
+ }
|
|
|
+
|
|
|
+ // break the stream
|
|
|
+ srv.CloseClientConnections()
|
|
|
+ srv2.CloseClientConnections()
|
|
|
+ var n int
|
|
|
+ for {
|
|
|
+ select {
|
|
|
+ // TODO: remove this resend logic when we add retry logic into the code
|
|
|
+ case <-time.After(time.Millisecond):
|
|
|
+ n++
|
|
|
+ tr.Send([]raftpb.Message{{Type: raftpb.MsgHeartbeat, From: 1, To: 2, Term: 1, Commit: 3}})
|
|
|
+ case <-recvc:
|
|
|
+ if n > 10 {
|
|
|
+ t.Errorf("disconnection time = %dms, want < 10ms", n)
|
|
|
+ }
|
|
|
+ return
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+func newServerStats() *stats.ServerStats {
|
|
|
+ ss := &stats.ServerStats{}
|
|
|
+ ss.Initialize()
|
|
|
+ return ss
|
|
|
+}
|
|
|
+
|
|
|
+func waitStreamWorking(p *peer) bool {
|
|
|
+ for i := 0; i < 1000; i++ {
|
|
|
+ time.Sleep(time.Millisecond)
|
|
|
+ if !p.msgAppWriter.isWorking() {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ if !p.writer.isWorking() {
|
|
|
+ continue
|
|
|
+ }
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
+type fakeRaft struct {
|
|
|
+ recvc chan<- raftpb.Message
|
|
|
+ err error
|
|
|
+}
|
|
|
+
|
|
|
+func (p *fakeRaft) Process(ctx context.Context, m raftpb.Message) error {
|
|
|
+ select {
|
|
|
+ case p.recvc <- m:
|
|
|
+ default:
|
|
|
+ }
|
|
|
+ return p.err
|
|
|
+}
|
|
|
+
|
|
|
+func (p *fakeRaft) ReportUnreachable(id uint64) {}
|
|
|
+
|
|
|
+func (p *fakeRaft) ReportSnapshot(id uint64, status raft.SnapshotStatus) {}
|