Revert "ae: add remaining test cases"

This reverts commit c32915bb4ff28b1670e88edaf0bbb9779dc6e2bc.
This commit is contained in:
Frank Schroeder 2017-10-23 10:08:32 +02:00
parent c27a2f1c66
commit 27b8e55dc4
No known key found for this signature in database
GPG key ID: 4D65C6EAEC87DECD
2 changed files with 12 additions and 114 deletions

View file

@ -212,8 +212,8 @@ func (s *StateSyncer) nextFSMState(fs fsmState) fsmState {
} }
} }
// event defines a timing or notification event from multiple timers and // event defines a timing or notification event from a multiple
// channels. // timers and channels.
type event string type event string
const ( const (
@ -224,9 +224,7 @@ const (
) )
// retrySyncFullEventFn waits for an event which triggers a retry // retrySyncFullEventFn waits for an event which triggers a retry
// of a full sync or a termination signal. This function should not be // of a full sync or a termination signal.
// called directly but through s.retryFullSyncState to allow mocking for
// testing.
func (s *StateSyncer) retrySyncFullEventFn() event { func (s *StateSyncer) retrySyncFullEventFn() event {
select { select {
// trigger a full sync immediately. // trigger a full sync immediately.
@ -251,9 +249,7 @@ func (s *StateSyncer) retrySyncFullEventFn() event {
} }
// syncChangesEventFn waits for a event which either triggers a full // syncChangesEventFn waits for a event which either triggers a full
// or a partial sync or a termination signal. This function should not // or a partial sync or a termination signal.
// be called directly but through s.syncChangesEvent to allow mocking
// for testing.
func (s *StateSyncer) syncChangesEventFn() event { func (s *StateSyncer) syncChangesEventFn() event {
select { select {
// trigger a full sync immediately // trigger a full sync immediately
@ -280,16 +276,9 @@ func (s *StateSyncer) syncChangesEventFn() event {
} }
} }
// stubbed out for testing
var libRandomStagger = lib.RandomStagger
// staggerFn returns a random duration which depends on the cluster size
// and a random factor which should provide some timely distribution of
// cluster wide events. This function should not be called directly
// but through s.stagger to allow mocking for testing.
func (s *StateSyncer) staggerFn(d time.Duration) time.Duration { func (s *StateSyncer) staggerFn(d time.Duration) time.Duration {
f := scaleFactor(s.ClusterSize()) f := scaleFactor(s.ClusterSize())
return libRandomStagger(time.Duration(f) * d) return lib.RandomStagger(time.Duration(f) * d)
} }
// Pause temporarily disables sync runs. // Pause temporarily disables sync runs.

View file

@ -9,8 +9,6 @@ import (
"sync" "sync"
"testing" "testing"
"time" "time"
"github.com/hashicorp/consul/lib"
) )
func TestAE_scaleFactor(t *testing.T) { func TestAE_scaleFactor(t *testing.T) {
@ -79,20 +77,6 @@ func TestAE_Pause_ResumeTriggersSyncChanges(t *testing.T) {
} }
} }
func TestAE_staggerDependsOnClusterSize(t *testing.T) {
libRandomStagger = func(d time.Duration) time.Duration { return d }
defer func() { libRandomStagger = lib.RandomStagger }()
l := testSyncer()
if got, want := l.staggerFn(10*time.Millisecond), 10*time.Millisecond; got != want {
t.Fatalf("got %v want %v", got, want)
}
l.ClusterSize = func() int { return 256 }
if got, want := l.staggerFn(10*time.Millisecond), 20*time.Millisecond; got != want {
t.Fatalf("got %v want %v", got, want)
}
}
func TestAE_Run_SyncFullBeforeChanges(t *testing.T) { func TestAE_Run_SyncFullBeforeChanges(t *testing.T) {
shutdownCh := make(chan struct{}) shutdownCh := make(chan struct{})
state := &mock{ state := &mock{
@ -122,29 +106,17 @@ func TestAE_Run_SyncFullBeforeChanges(t *testing.T) {
} }
func TestAE_Run_Quit(t *testing.T) { func TestAE_Run_Quit(t *testing.T) {
t.Run("Run panics without ClusterSize", func(t *testing.T) { // start timer which explodes if runFSM does not quit
defer func() { tm := time.AfterFunc(time.Second, func() { panic("timeout") })
err := recover()
if err == nil {
t.Fatal("Run should panic")
}
}()
l := testSyncer()
l.ClusterSize = nil
l.Run()
})
t.Run("runFSM quits", func(t *testing.T) {
// start timer which explodes if runFSM does not quit
tm := time.AfterFunc(time.Second, func() { panic("timeout") })
l := testSyncer() l := testSyncer()
l.runFSM(fullSyncState, func(fsmState) fsmState { return doneState }) l.runFSM(fullSyncState, func(fsmState) fsmState { return doneState })
// should just quit // should just quit
tm.Stop() tm.Stop()
})
} }
func TestAE_FSM(t *testing.T) { func TestAE_FSM(t *testing.T) {
t.Run("fullSyncState", func(t *testing.T) { t.Run("fullSyncState", func(t *testing.T) {
t.Run("Paused -> retryFullSyncState", func(t *testing.T) { t.Run("Paused -> retryFullSyncState", func(t *testing.T) {
l := testSyncer() l := testSyncer()
@ -248,69 +220,6 @@ func TestAE_FSM(t *testing.T) {
t.Fatalf("got state %v want %v", got, want) t.Fatalf("got state %v want %v", got, want)
} }
}) })
t.Run("invalid event -> panic ", func(t *testing.T) {
defer func() {
err := recover()
if err == nil {
t.Fatal("invalid event should panic")
}
}()
test(event("invalid"), fsmState(""))
})
})
t.Run("invalid state -> panic ", func(t *testing.T) {
defer func() {
err := recover()
if err == nil {
t.Fatal("invalid state should panic")
}
}()
l := testSyncer()
l.nextFSMState(fsmState("invalid"))
})
}
func TestAE_RetrySyncFullEvent(t *testing.T) {
t.Run("trigger shutdownEvent", func(t *testing.T) {
l := testSyncer()
l.ShutdownCh = make(chan struct{})
evch := make(chan event)
go func() { evch <- l.retrySyncFullEvent() }()
close(l.ShutdownCh)
if got, want := <-evch, shutdownEvent; got != want {
t.Fatalf("got event %q want %q", got, want)
}
})
t.Run("trigger shutdownEvent during FullNotif", func(t *testing.T) {
l := testSyncer()
l.ShutdownCh = make(chan struct{})
evch := make(chan event)
go func() { evch <- l.retrySyncFullEvent() }()
l.SyncFull.Trigger()
time.Sleep(100 * time.Millisecond)
close(l.ShutdownCh)
if got, want := <-evch, shutdownEvent; got != want {
t.Fatalf("got event %q want %q", got, want)
}
})
t.Run("trigger syncFullNotifEvent", func(t *testing.T) {
l := testSyncer()
l.serverUpInterval = 10 * time.Millisecond
evch := make(chan event)
go func() { evch <- l.retrySyncFullEvent() }()
l.SyncFull.Trigger()
if got, want := <-evch, syncFullNotifEvent; got != want {
t.Fatalf("got event %q want %q", got, want)
}
})
t.Run("trigger syncFullTimerEvent", func(t *testing.T) {
l := testSyncer()
l.retryFailInterval = 10 * time.Millisecond
evch := make(chan event)
go func() { evch <- l.retrySyncFullEvent() }()
if got, want := <-evch, syncFullTimerEvent; got != want {
t.Fatalf("got event %q want %q", got, want)
}
}) })
} }