| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189 |
- /*
- Copyright 2014 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 raft
- import (
- "testing"
- pb "github.com/coreos/etcd/raft/raftpb"
- )
- func TestUnstableMaybeFirstIndex(t *testing.T) {
- tests := []struct {
- entries []pb.Entry
- offset uint64
- snap *pb.Snapshot
- wok bool
- windex uint64
- }{
- // no snapshot
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, nil,
- false, 0,
- },
- {
- []pb.Entry{}, 0, nil,
- false, 0,
- },
- // has snapshot
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- true, 5,
- },
- {
- []pb.Entry{}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- true, 5,
- },
- }
- for i, tt := range tests {
- u := unstable{
- entries: tt.entries,
- offset: tt.offset,
- snapshot: tt.snap,
- }
- index, ok := u.maybeFirstIndex()
- if ok != tt.wok {
- t.Errorf("#%d: ok = %t, want %t", i, ok, tt.wok)
- }
- if index != tt.windex {
- t.Errorf("#%d: index = %d, want %d", i, index, tt.windex)
- }
- }
- }
- func TestMaybeLastIndex(t *testing.T) {
- tests := []struct {
- entries []pb.Entry
- offset uint64
- snap *pb.Snapshot
- wok bool
- windex uint64
- }{
- // last in entries
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, nil,
- true, 5,
- },
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- true, 5,
- },
- // last in snapshot
- {
- []pb.Entry{}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- true, 4,
- },
- // empty unstable
- {
- []pb.Entry{}, 0, nil,
- false, 0,
- },
- }
- for i, tt := range tests {
- u := unstable{
- entries: tt.entries,
- offset: tt.offset,
- snapshot: tt.snap,
- }
- index, ok := u.maybeLastIndex()
- if ok != tt.wok {
- t.Errorf("#%d: ok = %t, want %t", i, ok, tt.wok)
- }
- if index != tt.windex {
- t.Errorf("#%d: index = %d, want %d", i, index, tt.windex)
- }
- }
- }
- func TestUnstableMaybeTerm(t *testing.T) {
- tests := []struct {
- entries []pb.Entry
- offset uint64
- snap *pb.Snapshot
- index uint64
- wok bool
- wterm uint64
- }{
- // term from entries
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, nil,
- 5,
- true, 1,
- },
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, nil,
- 6,
- false, 0,
- },
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, nil,
- 4,
- false, 0,
- },
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- 5,
- true, 1,
- },
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- 6,
- false, 0,
- },
- // term from snapshot
- {
- []pb.Entry{{Index: 5, Term: 1}}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- 4,
- true, 1,
- },
- {
- []pb.Entry{}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- 5,
- false, 0,
- },
- {
- []pb.Entry{}, 5, &pb.Snapshot{Metadata: pb.SnapshotMetadata{Index: 4, Term: 1}},
- 4,
- true, 1,
- },
- {
- []pb.Entry{}, 0, nil,
- 5,
- false, 0,
- },
- }
- for i, tt := range tests {
- u := unstable{
- entries: tt.entries,
- offset: tt.offset,
- snapshot: tt.snap,
- }
- term, ok := u.maybeTerm(tt.index)
- if ok != tt.wok {
- t.Errorf("#%d: ok = %t, want %t", i, ok, tt.wok)
- }
- if term != tt.wterm {
- t.Errorf("#%d: term = %d, want %d", i, term, tt.wterm)
- }
- }
- }
|