-
Notifications
You must be signed in to change notification settings - Fork 16
/
cedar_test.go
74 lines (59 loc) · 1.61 KB
/
cedar_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
65
66
67
68
69
70
71
72
73
74
package cedar
import (
"testing"
"github.com/mongodb/amboy/queue"
"github.com/stretchr/testify/suite"
)
type ServiceCacheSuite struct {
cache *envState
suite.Suite
}
func TestServiceCacheSuite(t *testing.T) {
suite.Run(t, new(ServiceCacheSuite))
}
func (s *ServiceCacheSuite) SetupTest() {
s.cache = &envState{name: "cedar.testing"}
}
func (s *ServiceCacheSuite) TestDefaultCacheValues() {
s.Nil(s.cache.localQueue)
s.Nil(s.cache.remoteQueue)
s.Nil(s.cache.remoteManager)
s.Equal("cedar.testing", s.cache.name)
}
func (s *ServiceCacheSuite) TestLocalQueueNotSettableToNil() {
s.Error(s.cache.SetLocalQueue(nil))
s.Nil(s.cache.localQueue)
q := queue.NewLocalLimitedSize(2, 1024)
s.NotNil(q)
s.NoError(s.cache.SetLocalQueue(q))
s.NotNil(s.cache.localQueue)
s.Equal(s.cache.localQueue, q)
s.Error(s.cache.SetLocalQueue(nil))
s.NotNil(s.cache.localQueue)
s.Equal(s.cache.localQueue, q)
}
func (s *ServiceCacheSuite) TestRemoteQueueNotSettableToNil() {
s.Error(s.cache.SetRemoteQueue(nil))
s.Nil(s.cache.remoteQueue)
q := queue.NewLocalLimitedSize(2, 1024)
s.NotNil(q)
s.NoError(s.cache.SetRemoteQueue(q))
s.NotNil(s.cache.remoteQueue)
s.Equal(s.cache.remoteQueue, q)
s.Error(s.cache.SetRemoteQueue(nil))
s.NotNil(s.cache.remoteQueue)
s.Equal(s.cache.remoteQueue, q)
s.Nil(s.cache.remoteManager)
}
func (s *ServiceCacheSuite) TestQueueGetterRetrievesQueue() {
q := s.cache.GetLocalQueue()
s.Nil(q)
q = s.cache.GetRemoteQueue()
s.Nil(q)
q = queue.NewLocalLimitedSize(1, 1)
s.NotNil(q)
s.NoError(s.cache.SetLocalQueue(q))
retrieved := s.cache.GetLocalQueue()
s.NotNil(retrieved)
s.Equal(retrieved, q)
}