This repository has been archived by the owner on Mar 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 39
/
candidate_test.go
64 lines (51 loc) · 1.58 KB
/
candidate_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package leadership
import (
"testing"
"time"
libkvmock "github.com/docker/libkv/store/mock"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/mock"
)
func TestCandidate(t *testing.T) {
kv, err := libkvmock.New([]string{}, nil)
assert.NoError(t, err)
assert.NotNil(t, kv)
mockStore := kv.(*libkvmock.Mock)
mockLock := &libkvmock.Lock{}
mockStore.On("NewLock", "test_key", mock.Anything).Return(mockLock, nil)
// Lock and unlock always succeeds.
lostCh := make(chan struct{})
var mockLostCh <-chan struct{} = lostCh
mockLock.On("Lock", mock.Anything).Return(mockLostCh, nil)
mockLock.On("Unlock").Return(nil)
candidate := NewCandidate(kv, "test_key", "test_node", 0)
electedCh, _ := candidate.RunForElection()
// Should issue a false upon start, no matter what.
assert.False(t, <-electedCh)
// Since the lock always succeeeds, we should get elected.
assert.True(t, <-electedCh)
assert.True(t, candidate.IsLeader())
// Signaling a lost lock should get us de-elected...
close(lostCh)
assert.False(t, <-electedCh)
// And we should attempt to get re-elected again.
assert.True(t, <-electedCh)
// When we resign, unlock will get called, we'll be notified of the
// de-election and we'll try to get the lock again.
go candidate.Resign()
assert.False(t, <-electedCh)
assert.True(t, <-electedCh)
candidate.Stop()
// Ensure that the chan closes after some time
for {
select {
case _, open := <-electedCh:
if !open {
mockStore.AssertExpectations(t)
return
}
case <-time.After(1 * time.Second):
t.Fatalf("electedCh not closed correctly")
}
}
}