mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00

Use `t.Run` for each test case, and make some tests more idiomatic. Signed-off-by: Tobias Grieger <tobias.b.grieger@gmail.com>
247 lines
7.0 KiB
Go
247 lines
7.0 KiB
Go
// Copyright 2015 The etcd Authors
|
|
//
|
|
// 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 (
|
|
"math"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
pb "go.etcd.io/etcd/raft/v3/raftpb"
|
|
)
|
|
|
|
func TestStorageTerm(t *testing.T) {
|
|
ents := []pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}}
|
|
tests := []struct {
|
|
i uint64
|
|
|
|
werr error
|
|
wterm uint64
|
|
wpanic bool
|
|
}{
|
|
{2, ErrCompacted, 0, false},
|
|
{3, nil, 3, false},
|
|
{4, nil, 4, false},
|
|
{5, nil, 5, false},
|
|
{6, ErrUnavailable, 0, false},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run("", func(t *testing.T) {
|
|
s := &MemoryStorage{ents: ents}
|
|
|
|
if tt.wpanic {
|
|
require.Panics(t, func() {
|
|
_, _ = s.Term(tt.i)
|
|
})
|
|
}
|
|
term, err := s.Term(tt.i)
|
|
require.Equal(t, tt.werr, err)
|
|
require.Equal(t, tt.wterm, term)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestStorageEntries(t *testing.T) {
|
|
ents := []pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}, {Index: 6, Term: 6}}
|
|
tests := []struct {
|
|
lo, hi, maxsize uint64
|
|
|
|
werr error
|
|
wentries []pb.Entry
|
|
}{
|
|
{2, 6, math.MaxUint64, ErrCompacted, nil},
|
|
{3, 4, math.MaxUint64, ErrCompacted, nil},
|
|
{4, 5, math.MaxUint64, nil, []pb.Entry{{Index: 4, Term: 4}}},
|
|
{4, 6, math.MaxUint64, nil, []pb.Entry{{Index: 4, Term: 4}, {Index: 5, Term: 5}}},
|
|
{4, 7, math.MaxUint64, nil, []pb.Entry{{Index: 4, Term: 4}, {Index: 5, Term: 5}, {Index: 6, Term: 6}}},
|
|
// even if maxsize is zero, the first entry should be returned
|
|
{4, 7, 0, nil, []pb.Entry{{Index: 4, Term: 4}}},
|
|
// limit to 2
|
|
{4, 7, uint64(ents[1].Size() + ents[2].Size()), nil, []pb.Entry{{Index: 4, Term: 4}, {Index: 5, Term: 5}}},
|
|
// limit to 2
|
|
{4, 7, uint64(ents[1].Size() + ents[2].Size() + ents[3].Size()/2), nil, []pb.Entry{{Index: 4, Term: 4}, {Index: 5, Term: 5}}},
|
|
{4, 7, uint64(ents[1].Size() + ents[2].Size() + ents[3].Size() - 1), nil, []pb.Entry{{Index: 4, Term: 4}, {Index: 5, Term: 5}}},
|
|
// all
|
|
{4, 7, uint64(ents[1].Size() + ents[2].Size() + ents[3].Size()), nil, []pb.Entry{{Index: 4, Term: 4}, {Index: 5, Term: 5}, {Index: 6, Term: 6}}},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run("", func(t *testing.T) {
|
|
s := &MemoryStorage{ents: ents}
|
|
entries, err := s.Entries(tt.lo, tt.hi, tt.maxsize)
|
|
require.Equal(t, tt.werr, err)
|
|
require.Equal(t, tt.wentries, entries)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestStorageLastIndex(t *testing.T) {
|
|
ents := []pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}}
|
|
s := &MemoryStorage{ents: ents}
|
|
|
|
last, err := s.LastIndex()
|
|
require.NoError(t, err)
|
|
require.Equal(t, uint64(5), last)
|
|
|
|
require.NoError(t, s.Append([]pb.Entry{{Index: 6, Term: 5}}))
|
|
last, err = s.LastIndex()
|
|
require.NoError(t, err)
|
|
require.Equal(t, uint64(6), last)
|
|
}
|
|
|
|
func TestStorageFirstIndex(t *testing.T) {
|
|
ents := []pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}}
|
|
s := &MemoryStorage{ents: ents}
|
|
|
|
first, err := s.FirstIndex()
|
|
require.NoError(t, err)
|
|
require.Equal(t, uint64(4), first)
|
|
|
|
require.NoError(t, s.Compact(4))
|
|
first, err = s.FirstIndex()
|
|
require.NoError(t, err)
|
|
require.Equal(t, uint64(5), first)
|
|
}
|
|
|
|
func TestStorageCompact(t *testing.T) {
|
|
ents := []pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}}
|
|
tests := []struct {
|
|
i uint64
|
|
|
|
werr error
|
|
windex uint64
|
|
wterm uint64
|
|
wlen int
|
|
}{
|
|
{2, ErrCompacted, 3, 3, 3},
|
|
{3, ErrCompacted, 3, 3, 3},
|
|
{4, nil, 4, 4, 2},
|
|
{5, nil, 5, 5, 1},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run("", func(t *testing.T) {
|
|
s := &MemoryStorage{ents: ents}
|
|
require.Equal(t, tt.werr, s.Compact(tt.i))
|
|
require.Equal(t, tt.windex, s.ents[0].Index)
|
|
require.Equal(t, tt.wterm, s.ents[0].Term)
|
|
require.Equal(t, tt.wlen, len(s.ents))
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestStorageCreateSnapshot(t *testing.T) {
|
|
ents := []pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}}
|
|
cs := &pb.ConfState{Voters: []uint64{1, 2, 3}}
|
|
data := []byte("data")
|
|
|
|
tests := []struct {
|
|
i uint64
|
|
|
|
werr error
|
|
wsnap pb.Snapshot
|
|
}{
|
|
{4, nil, pb.Snapshot{Data: data, Metadata: pb.SnapshotMetadata{Index: 4, Term: 4, ConfState: *cs}}},
|
|
{5, nil, pb.Snapshot{Data: data, Metadata: pb.SnapshotMetadata{Index: 5, Term: 5, ConfState: *cs}}},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run("", func(t *testing.T) {
|
|
s := &MemoryStorage{ents: ents}
|
|
snap, err := s.CreateSnapshot(tt.i, cs, data)
|
|
require.Equal(t, tt.werr, err)
|
|
require.Equal(t, tt.wsnap, snap)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestStorageAppend(t *testing.T) {
|
|
ents := []pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}}
|
|
tests := []struct {
|
|
entries []pb.Entry
|
|
|
|
werr error
|
|
wentries []pb.Entry
|
|
}{
|
|
{
|
|
[]pb.Entry{{Index: 1, Term: 1}, {Index: 2, Term: 2}},
|
|
nil,
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}},
|
|
},
|
|
{
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}},
|
|
nil,
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}},
|
|
},
|
|
{
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 6}, {Index: 5, Term: 6}},
|
|
nil,
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 6}, {Index: 5, Term: 6}},
|
|
},
|
|
{
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}, {Index: 6, Term: 5}},
|
|
nil,
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}, {Index: 6, Term: 5}},
|
|
},
|
|
// Truncate incoming entries, truncate the existing entries and append.
|
|
{
|
|
[]pb.Entry{{Index: 2, Term: 3}, {Index: 3, Term: 3}, {Index: 4, Term: 5}},
|
|
nil,
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 5}},
|
|
},
|
|
// Truncate the existing entries and append.
|
|
{
|
|
[]pb.Entry{{Index: 4, Term: 5}},
|
|
nil,
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 5}},
|
|
},
|
|
// Direct append.
|
|
{
|
|
[]pb.Entry{{Index: 6, Term: 5}},
|
|
nil,
|
|
[]pb.Entry{{Index: 3, Term: 3}, {Index: 4, Term: 4}, {Index: 5, Term: 5}, {Index: 6, Term: 5}},
|
|
},
|
|
}
|
|
|
|
for _, tt := range tests {
|
|
t.Run("", func(t *testing.T) {
|
|
s := &MemoryStorage{ents: ents}
|
|
require.Equal(t, tt.werr, s.Append(tt.entries))
|
|
require.Equal(t, tt.wentries, s.ents)
|
|
})
|
|
}
|
|
}
|
|
|
|
func TestStorageApplySnapshot(t *testing.T) {
|
|
cs := &pb.ConfState{Voters: []uint64{1, 2, 3}}
|
|
data := []byte("data")
|
|
|
|
tests := []pb.Snapshot{{Data: data, Metadata: pb.SnapshotMetadata{Index: 4, Term: 4, ConfState: *cs}},
|
|
{Data: data, Metadata: pb.SnapshotMetadata{Index: 3, Term: 3, ConfState: *cs}},
|
|
}
|
|
|
|
s := NewMemoryStorage()
|
|
|
|
i := 0
|
|
tt := tests[i]
|
|
require.NoError(t, s.ApplySnapshot(tt))
|
|
|
|
// ApplySnapshot fails due to ErrSnapOutOfDate.
|
|
i = 1
|
|
tt = tests[i]
|
|
require.Equal(t, ErrSnapOutOfDate, s.ApplySnapshot(tt))
|
|
}
|