mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
raft: set From of local message to be local id
This commit is contained in:
parent
4e31bb308d
commit
84c2bd0b7d
@ -48,7 +48,7 @@ func TestLeaderElection(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
for i, tt := range tests {
|
for i, tt := range tests {
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
sm := tt.network.peers[firstId].(*raft)
|
sm := tt.network.peers[firstId].(*raft)
|
||||||
if sm.state != tt.state {
|
if sm.state != tt.state {
|
||||||
t.Errorf("#%d: state = %s, want %s", i, sm.state, tt.state)
|
t.Errorf("#%d: state = %s, want %s", i, sm.state, tt.state)
|
||||||
@ -68,23 +68,23 @@ func TestLogReplication(t *testing.T) {
|
|||||||
{
|
{
|
||||||
newNetwork(nil, nil, nil),
|
newNetwork(nil, nil, nil),
|
||||||
[]pb.Message{
|
[]pb.Message{
|
||||||
{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("somedata")}}},
|
{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("somedata")}}},
|
||||||
},
|
},
|
||||||
2,
|
2,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
newNetwork(nil, nil, nil),
|
newNetwork(nil, nil, nil),
|
||||||
[]pb.Message{
|
[]pb.Message{
|
||||||
{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("somedata")}}},
|
{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("somedata")}}},
|
||||||
{From: none, To: firstId + 1, Type: msgHup},
|
{From: firstId, To: firstId + 1, Type: msgHup},
|
||||||
{From: none, To: firstId + 1, Type: msgProp, Entries: []pb.Entry{{Data: []byte("somedata")}}},
|
{From: firstId, To: firstId + 1, Type: msgProp, Entries: []pb.Entry{{Data: []byte("somedata")}}},
|
||||||
},
|
},
|
||||||
4,
|
4,
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
for i, tt := range tests {
|
for i, tt := range tests {
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
|
|
||||||
for _, m := range tt.msgs {
|
for _, m := range tt.msgs {
|
||||||
tt.send(m)
|
tt.send(m)
|
||||||
@ -120,9 +120,9 @@ func TestLogReplication(t *testing.T) {
|
|||||||
|
|
||||||
func TestSingleNodeCommit(t *testing.T) {
|
func TestSingleNodeCommit(t *testing.T) {
|
||||||
tt := newNetwork(nil)
|
tt := newNetwork(nil)
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
||||||
|
|
||||||
sm := tt.peers[firstId].(*raft)
|
sm := tt.peers[firstId].(*raft)
|
||||||
if sm.raftLog.committed != 3 {
|
if sm.raftLog.committed != 3 {
|
||||||
@ -135,15 +135,15 @@ func TestSingleNodeCommit(t *testing.T) {
|
|||||||
// filtered.
|
// filtered.
|
||||||
func TestCannotCommitWithoutNewTermEntry(t *testing.T) {
|
func TestCannotCommitWithoutNewTermEntry(t *testing.T) {
|
||||||
tt := newNetwork(nil, nil, nil, nil, nil)
|
tt := newNetwork(nil, nil, nil, nil, nil)
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
|
|
||||||
// 0 cannot reach 2,3,4
|
// 0 cannot reach 2,3,4
|
||||||
tt.cut(firstId, firstId+2)
|
tt.cut(firstId, firstId+2)
|
||||||
tt.cut(firstId, firstId+3)
|
tt.cut(firstId, firstId+3)
|
||||||
tt.cut(firstId, firstId+4)
|
tt.cut(firstId, firstId+4)
|
||||||
|
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
||||||
|
|
||||||
sm := tt.peers[firstId].(*raft)
|
sm := tt.peers[firstId].(*raft)
|
||||||
if sm.raftLog.committed != 1 {
|
if sm.raftLog.committed != 1 {
|
||||||
@ -156,7 +156,7 @@ func TestCannotCommitWithoutNewTermEntry(t *testing.T) {
|
|||||||
tt.ignore(msgApp)
|
tt.ignore(msgApp)
|
||||||
|
|
||||||
// elect 1 as the new leader with term 2
|
// elect 1 as the new leader with term 2
|
||||||
tt.send(pb.Message{From: none, To: firstId + 1, Type: msgHup})
|
tt.send(pb.Message{From: firstId + 1, To: firstId + 1, Type: msgHup})
|
||||||
|
|
||||||
// no log entries from previous term should be committed
|
// no log entries from previous term should be committed
|
||||||
sm = tt.peers[firstId+1].(*raft)
|
sm = tt.peers[firstId+1].(*raft)
|
||||||
@ -169,14 +169,14 @@ func TestCannotCommitWithoutNewTermEntry(t *testing.T) {
|
|||||||
// send out a heartbeat
|
// send out a heartbeat
|
||||||
// after append a ChangeTerm entry from the current term, all entries
|
// after append a ChangeTerm entry from the current term, all entries
|
||||||
// should be committed
|
// should be committed
|
||||||
tt.send(pb.Message{From: none, To: firstId + 1, Type: msgBeat})
|
tt.send(pb.Message{From: firstId + 1, To: firstId + 1, Type: msgBeat})
|
||||||
|
|
||||||
if sm.raftLog.committed != 4 {
|
if sm.raftLog.committed != 4 {
|
||||||
t.Errorf("committed = %d, want %d", sm.raftLog.committed, 4)
|
t.Errorf("committed = %d, want %d", sm.raftLog.committed, 4)
|
||||||
}
|
}
|
||||||
|
|
||||||
// still be able to append a entry
|
// still be able to append a entry
|
||||||
tt.send(pb.Message{From: none, To: firstId + 1, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
tt.send(pb.Message{From: firstId + 1, To: firstId + 1, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
||||||
|
|
||||||
if sm.raftLog.committed != 5 {
|
if sm.raftLog.committed != 5 {
|
||||||
t.Errorf("committed = %d, want %d", sm.raftLog.committed, 5)
|
t.Errorf("committed = %d, want %d", sm.raftLog.committed, 5)
|
||||||
@ -187,15 +187,15 @@ func TestCannotCommitWithoutNewTermEntry(t *testing.T) {
|
|||||||
// when leader changes, no new proposal comes in.
|
// when leader changes, no new proposal comes in.
|
||||||
func TestCommitWithoutNewTermEntry(t *testing.T) {
|
func TestCommitWithoutNewTermEntry(t *testing.T) {
|
||||||
tt := newNetwork(nil, nil, nil, nil, nil)
|
tt := newNetwork(nil, nil, nil, nil, nil)
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
|
|
||||||
// 0 cannot reach 2,3,4
|
// 0 cannot reach 2,3,4
|
||||||
tt.cut(firstId, firstId+2)
|
tt.cut(firstId, firstId+2)
|
||||||
tt.cut(firstId, firstId+3)
|
tt.cut(firstId, firstId+3)
|
||||||
tt.cut(firstId, firstId+4)
|
tt.cut(firstId, firstId+4)
|
||||||
|
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: []byte("some data")}}})
|
||||||
|
|
||||||
sm := tt.peers[firstId].(*raft)
|
sm := tt.peers[firstId].(*raft)
|
||||||
if sm.raftLog.committed != 1 {
|
if sm.raftLog.committed != 1 {
|
||||||
@ -208,7 +208,7 @@ func TestCommitWithoutNewTermEntry(t *testing.T) {
|
|||||||
// elect 1 as the new leader with term 2
|
// elect 1 as the new leader with term 2
|
||||||
// after append a ChangeTerm entry from the current term, all entries
|
// after append a ChangeTerm entry from the current term, all entries
|
||||||
// should be committed
|
// should be committed
|
||||||
tt.send(pb.Message{From: none, To: firstId + 1, Type: msgHup})
|
tt.send(pb.Message{From: firstId + 1, To: firstId + 1, Type: msgHup})
|
||||||
|
|
||||||
if sm.raftLog.committed != 4 {
|
if sm.raftLog.committed != 4 {
|
||||||
t.Errorf("committed = %d, want %d", sm.raftLog.committed, 4)
|
t.Errorf("committed = %d, want %d", sm.raftLog.committed, 4)
|
||||||
@ -223,11 +223,11 @@ func TestDuelingCandidates(t *testing.T) {
|
|||||||
nt := newNetwork(a, b, c)
|
nt := newNetwork(a, b, c)
|
||||||
nt.cut(firstId, firstId+2)
|
nt.cut(firstId, firstId+2)
|
||||||
|
|
||||||
nt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
nt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
nt.send(pb.Message{From: none, To: firstId + 2, Type: msgHup})
|
nt.send(pb.Message{From: firstId + 2, To: firstId + 2, Type: msgHup})
|
||||||
|
|
||||||
nt.recover()
|
nt.recover()
|
||||||
nt.send(pb.Message{From: none, To: firstId + 2, Type: msgHup})
|
nt.send(pb.Message{From: firstId + 2, To: firstId + 2, Type: msgHup})
|
||||||
|
|
||||||
wlog := &raftLog{ents: []pb.Entry{{}, pb.Entry{Data: nil, Term: 1, Index: 1}}, committed: 1}
|
wlog := &raftLog{ents: []pb.Entry{{}, pb.Entry{Data: nil, Term: 1, Index: 1}}, committed: 1}
|
||||||
tests := []struct {
|
tests := []struct {
|
||||||
@ -264,15 +264,15 @@ func TestCandidateConcede(t *testing.T) {
|
|||||||
tt := newNetwork(nil, nil, nil)
|
tt := newNetwork(nil, nil, nil)
|
||||||
tt.isolate(firstId)
|
tt.isolate(firstId)
|
||||||
|
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
tt.send(pb.Message{From: none, To: firstId + 2, Type: msgHup})
|
tt.send(pb.Message{From: firstId + 2, To: firstId + 2, Type: msgHup})
|
||||||
|
|
||||||
// heal the partition
|
// heal the partition
|
||||||
tt.recover()
|
tt.recover()
|
||||||
|
|
||||||
data := []byte("force follower")
|
data := []byte("force follower")
|
||||||
// send a proposal to 2 to flush out a msgApp to 0
|
// send a proposal to 2 to flush out a msgApp to 0
|
||||||
tt.send(pb.Message{From: none, To: firstId + 2, Type: msgProp, Entries: []pb.Entry{{Data: data}}})
|
tt.send(pb.Message{From: firstId + 2, To: firstId + 2, Type: msgProp, Entries: []pb.Entry{{Data: data}}})
|
||||||
|
|
||||||
a := tt.peers[firstId].(*raft)
|
a := tt.peers[firstId].(*raft)
|
||||||
if g := a.state; g != stateFollower {
|
if g := a.state; g != stateFollower {
|
||||||
@ -296,7 +296,7 @@ func TestCandidateConcede(t *testing.T) {
|
|||||||
|
|
||||||
func TestSingleNodeCandidate(t *testing.T) {
|
func TestSingleNodeCandidate(t *testing.T) {
|
||||||
tt := newNetwork(nil)
|
tt := newNetwork(nil)
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
|
|
||||||
sm := tt.peers[firstId].(*raft)
|
sm := tt.peers[firstId].(*raft)
|
||||||
if sm.state != stateLeader {
|
if sm.state != stateLeader {
|
||||||
@ -307,11 +307,11 @@ func TestSingleNodeCandidate(t *testing.T) {
|
|||||||
func TestOldMessages(t *testing.T) {
|
func TestOldMessages(t *testing.T) {
|
||||||
tt := newNetwork(nil, nil, nil)
|
tt := newNetwork(nil, nil, nil)
|
||||||
// make 0 leader @ term 3
|
// make 0 leader @ term 3
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
tt.send(pb.Message{From: none, To: firstId + 1, Type: msgHup})
|
tt.send(pb.Message{From: firstId + 1, To: firstId + 1, Type: msgHup})
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
// pretend we're an old leader trying to make progress
|
// pretend we're an old leader trying to make progress
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgApp, Term: 1, Entries: []pb.Entry{{Term: 1}}})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgApp, Term: 1, Entries: []pb.Entry{{Term: 1}}})
|
||||||
|
|
||||||
l := &raftLog{
|
l := &raftLog{
|
||||||
ents: []pb.Entry{
|
ents: []pb.Entry{
|
||||||
@ -365,8 +365,8 @@ func TestProposal(t *testing.T) {
|
|||||||
data := []byte("somedata")
|
data := []byte("somedata")
|
||||||
|
|
||||||
// promote 0 the leader
|
// promote 0 the leader
|
||||||
send(pb.Message{From: none, To: firstId, Type: msgHup})
|
send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: data}}})
|
send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{Data: data}}})
|
||||||
|
|
||||||
wantLog := newLog()
|
wantLog := newLog()
|
||||||
if tt.success {
|
if tt.success {
|
||||||
@ -399,10 +399,10 @@ func TestProposalByProxy(t *testing.T) {
|
|||||||
|
|
||||||
for i, tt := range tests {
|
for i, tt := range tests {
|
||||||
// promote 0 the leader
|
// promote 0 the leader
|
||||||
tt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
tt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
|
|
||||||
// propose via follower
|
// propose via follower
|
||||||
tt.send(pb.Message{From: none, To: firstId + 1, Type: msgProp, Entries: []pb.Entry{{Data: []byte("somedata")}}})
|
tt.send(pb.Message{From: firstId + 1, To: firstId + 1, Type: msgProp, Entries: []pb.Entry{{Data: []byte("somedata")}}})
|
||||||
|
|
||||||
wantLog := &raftLog{ents: []pb.Entry{{}, {Data: nil, Term: 1, Index: 1}, {Term: 1, Data: data, Index: 2}}, committed: 2}
|
wantLog := &raftLog{ents: []pb.Entry{{}, {Data: nil, Term: 1, Index: 1}, {Term: 1, Data: data, Index: 2}}, committed: 2}
|
||||||
base := ltoa(wantLog)
|
base := ltoa(wantLog)
|
||||||
@ -762,7 +762,7 @@ func TestRecvMsgBeat(t *testing.T) {
|
|||||||
case stateLeader:
|
case stateLeader:
|
||||||
sm.step = stepLeader
|
sm.step = stepLeader
|
||||||
}
|
}
|
||||||
sm.Step(pb.Message{From: none, To: firstId, Type: msgBeat})
|
sm.Step(pb.Message{From: firstId, To: firstId, Type: msgBeat})
|
||||||
|
|
||||||
msgs := sm.ReadMessages()
|
msgs := sm.ReadMessages()
|
||||||
if len(msgs) != tt.wMsg {
|
if len(msgs) != tt.wMsg {
|
||||||
@ -824,7 +824,7 @@ func TestProvideSnap(t *testing.T) {
|
|||||||
sm.becomeCandidate()
|
sm.becomeCandidate()
|
||||||
sm.becomeLeader()
|
sm.becomeLeader()
|
||||||
|
|
||||||
sm.Step(pb.Message{From: none, To: firstId, Type: msgBeat})
|
sm.Step(pb.Message{From: firstId, To: firstId, Type: msgBeat})
|
||||||
msgs := sm.ReadMessages()
|
msgs := sm.ReadMessages()
|
||||||
if len(msgs) != 1 {
|
if len(msgs) != 1 {
|
||||||
t.Errorf("len(msgs) = %d, want 1", len(msgs))
|
t.Errorf("len(msgs) = %d, want 1", len(msgs))
|
||||||
@ -867,18 +867,18 @@ func TestRestoreFromSnapMsg(t *testing.T) {
|
|||||||
|
|
||||||
func TestSlowNodeRestore(t *testing.T) {
|
func TestSlowNodeRestore(t *testing.T) {
|
||||||
nt := newNetwork(nil, nil, nil)
|
nt := newNetwork(nil, nil, nil)
|
||||||
nt.send(pb.Message{From: none, To: firstId, Type: msgHup})
|
nt.send(pb.Message{From: firstId, To: firstId, Type: msgHup})
|
||||||
|
|
||||||
nt.isolate(firstId + 2)
|
nt.isolate(firstId + 2)
|
||||||
for j := 0; j < defaultCompactThreshold+1; j++ {
|
for j := 0; j < defaultCompactThreshold+1; j++ {
|
||||||
nt.send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{}}})
|
nt.send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{}}})
|
||||||
}
|
}
|
||||||
lead := nt.peers[firstId].(*raft)
|
lead := nt.peers[firstId].(*raft)
|
||||||
lead.nextEnts()
|
lead.nextEnts()
|
||||||
lead.compact(nil)
|
lead.compact(nil)
|
||||||
|
|
||||||
nt.recover()
|
nt.recover()
|
||||||
nt.send(pb.Message{From: none, To: firstId, Type: msgBeat})
|
nt.send(pb.Message{From: firstId, To: firstId, Type: msgBeat})
|
||||||
|
|
||||||
follower := nt.peers[firstId+2].(*raft)
|
follower := nt.peers[firstId+2].(*raft)
|
||||||
if !reflect.DeepEqual(follower.raftLog.snapshot, lead.raftLog.snapshot) {
|
if !reflect.DeepEqual(follower.raftLog.snapshot, lead.raftLog.snapshot) {
|
||||||
@ -886,7 +886,7 @@ func TestSlowNodeRestore(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
committed := follower.raftLog.lastIndex()
|
committed := follower.raftLog.lastIndex()
|
||||||
nt.send(pb.Message{From: none, To: firstId, Type: msgProp, Entries: []pb.Entry{{}}})
|
nt.send(pb.Message{From: firstId, To: firstId, Type: msgProp, Entries: []pb.Entry{{}}})
|
||||||
if follower.raftLog.committed != committed+1 {
|
if follower.raftLog.committed != committed+1 {
|
||||||
t.Errorf("follower.comitted = %d, want %d", follower.raftLog.committed, committed+1)
|
t.Errorf("follower.comitted = %d, want %d", follower.raftLog.committed, committed+1)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user