| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- package raft
- import (
- "reflect"
- "testing"
- )
- // TestCompactionSideEffects ensures that all the log related funcationality works correctly after
- // a compaction.
- func TestCompactionSideEffects(t *testing.T) {
- var i int64
- lastIndex := int64(1000)
- log := newLog()
- for i = 0; i < lastIndex; i++ {
- log.append(int64(i), Entry{Term: int64(i + 1)})
- }
- log.compact(500)
- if log.lastIndex() != lastIndex {
- t.Errorf("lastIndex = %d, want %d", log.lastIndex(), lastIndex)
- }
- for i := log.offset; i <= log.lastIndex(); i++ {
- if log.term(i) != i {
- t.Errorf("term(%d) = %d, want %d", i, log.term(i), i)
- }
- }
- for i := log.offset; i <= log.lastIndex(); i++ {
- if !log.matchTerm(i, i) {
- t.Errorf("matchTerm(%d) = false, want true", i)
- }
- }
- prev := log.lastIndex()
- log.append(log.lastIndex(), Entry{Term: log.lastIndex() + 1})
- if log.lastIndex() != prev+1 {
- t.Errorf("lastIndex = %d, want = %d", log.lastIndex(), prev+1)
- }
- ents := log.entries(log.lastIndex())
- if len(ents) != 1 {
- t.Errorf("len(entries) = %d, want = %d", len(ents), 1)
- }
- }
- //TestCompaction ensures that the number of log entreis is correct after compactions.
- func TestCompaction(t *testing.T) {
- tests := []struct {
- app int
- compact []int64
- wleft []int
- wallow bool
- }{
- // out of upper bound
- {1000, []int64{1001}, []int{-1}, false},
- {1000, []int64{300, 500, 800, 900}, []int{701, 501, 201, 101}, true},
- // out of lower bound
- {1000, []int64{300, 299}, []int{701, -1}, false},
- }
- for i, tt := range tests {
- func() {
- defer func() {
- if r := recover(); r != nil {
- if tt.wallow == true {
- t.Errorf("%d: allow = %v, want %v", i, false, true)
- }
- }
- }()
- log := newLog()
- for i := 0; i < tt.app; i++ {
- log.append(int64(i), Entry{})
- }
- for j := 0; j < len(tt.compact); j++ {
- log.compact(tt.compact[j])
- if len(log.ents) != tt.wleft[j] {
- t.Errorf("#%d.%d len = %d, want %d", i, j, len(log.ents), tt.wleft[j])
- }
- }
- }()
- }
- }
- func TestLogRestore(t *testing.T) {
- var i int64
- log := newLog()
- for i = 0; i < 100; i++ {
- log.append(i, Entry{Term: i + 1})
- }
- index := int64(1000)
- term := int64(1000)
- log.restore(index, term)
- // only has the guard entry
- if len(log.ents) != 1 {
- t.Errorf("len = %d, want 0", len(log.ents))
- }
- if log.offset != index {
- t.Errorf("offset = %d, want %d", log.offset, index)
- }
- if log.applied != index {
- t.Errorf("applied = %d, want %d", log.applied, index)
- }
- if log.committed != index {
- t.Errorf("comitted = %d, want %d", log.committed, index)
- }
- if log.term(index) != term {
- t.Errorf("term = %d, want %d", log.term(index), term)
- }
- }
- func TestIsOutOfBounds(t *testing.T) {
- offset := int64(100)
- num := int64(100)
- l := &log{offset: offset, ents: make([]Entry, num)}
- tests := []struct {
- index int64
- w bool
- }{
- {offset - 1, true},
- {offset, false},
- {offset + num/2, false},
- {offset + num - 1, false},
- {offset + num, true},
- }
- for i, tt := range tests {
- g := l.isOutOfBounds(tt.index)
- if g != tt.w {
- t.Errorf("#%d: isOutOfBounds = %v, want %v", i, g, tt.w)
- }
- }
- }
- func TestAt(t *testing.T) {
- var i int64
- offset := int64(100)
- num := int64(100)
- l := &log{offset: offset}
- for i = 0; i < num; i++ {
- l.ents = append(l.ents, Entry{Term: i})
- }
- tests := []struct {
- index int64
- w *Entry
- }{
- {offset - 1, nil},
- {offset, &Entry{Term: 0}},
- {offset + num/2, &Entry{Term: num / 2}},
- {offset + num - 1, &Entry{Term: num - 1}},
- {offset + num, nil},
- }
- for i, tt := range tests {
- g := l.at(tt.index)
- if !reflect.DeepEqual(g, tt.w) {
- t.Errorf("#%d: at = %v, want %v", i, g, tt.w)
- }
- }
- }
- func TestSlice(t *testing.T) {
- var i int64
- offset := int64(100)
- num := int64(100)
- l := &log{offset: offset}
- for i = 0; i < num; i++ {
- l.ents = append(l.ents, Entry{Term: i})
- }
- tests := []struct {
- from int64
- to int64
- w []Entry
- }{
- {offset - 1, offset + 1, nil},
- {offset, offset + 1, []Entry{{Term: 0}}},
- {offset + num/2, offset + num/2 + 1, []Entry{{Term: num / 2}}},
- {offset + num - 1, offset + num, []Entry{{Term: num - 1}}},
- {offset + num, offset + num + 1, nil},
- {offset + num/2, offset + num/2, nil},
- {offset + num/2, offset + num/2 - 1, nil},
- }
- for i, tt := range tests {
- g := l.slice(tt.from, tt.to)
- if !reflect.DeepEqual(g, tt.w) {
- t.Errorf("#%d: from %d to %d = %v, want %v", i, tt.from, tt.to, g, tt.w)
- }
- }
- }
|