add more tests
This commit is contained in:
@@ -2,8 +2,10 @@ package discov
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"sync"
|
"sync"
|
||||||
|
"sync/atomic"
|
||||||
|
|
||||||
"zero/core/discov/internal"
|
"zero/core/discov/internal"
|
||||||
|
"zero/core/syncx"
|
||||||
)
|
)
|
||||||
|
|
||||||
type (
|
type (
|
||||||
@@ -18,18 +20,20 @@ type (
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
|
|
||||||
func NewSubscriber(endpoints []string, key string, opts ...SubOption) *Subscriber {
|
func NewSubscriber(endpoints []string, key string, opts ...SubOption) (*Subscriber, error) {
|
||||||
var subOpts subOptions
|
var subOpts subOptions
|
||||||
for _, opt := range opts {
|
for _, opt := range opts {
|
||||||
opt(&subOpts)
|
opt(&subOpts)
|
||||||
}
|
}
|
||||||
|
|
||||||
subscriber := &Subscriber{
|
sub := &Subscriber{
|
||||||
items: newContainer(subOpts.exclusive),
|
items: newContainer(subOpts.exclusive),
|
||||||
}
|
}
|
||||||
internal.GetRegistry().Monitor(endpoints, key, subscriber.items)
|
if err := internal.GetRegistry().Monitor(endpoints, key, sub.items); err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
|
||||||
return subscriber
|
return sub, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *Subscriber) Values() []string {
|
func (s *Subscriber) Values() []string {
|
||||||
@@ -48,6 +52,8 @@ type container struct {
|
|||||||
exclusive bool
|
exclusive bool
|
||||||
values map[string][]string
|
values map[string][]string
|
||||||
mapping map[string]string
|
mapping map[string]string
|
||||||
|
snapshot atomic.Value
|
||||||
|
dirty *syncx.AtomicBool
|
||||||
lock sync.Mutex
|
lock sync.Mutex
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -56,6 +62,7 @@ func newContainer(exclusive bool) *container {
|
|||||||
exclusive: exclusive,
|
exclusive: exclusive,
|
||||||
values: make(map[string][]string),
|
values: make(map[string][]string),
|
||||||
mapping: make(map[string]string),
|
mapping: make(map[string]string),
|
||||||
|
dirty: syncx.ForAtomicBool(true),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -72,6 +79,7 @@ func (c *container) addKv(key, value string) ([]string, bool) {
|
|||||||
c.lock.Lock()
|
c.lock.Lock()
|
||||||
defer c.lock.Unlock()
|
defer c.lock.Unlock()
|
||||||
|
|
||||||
|
c.dirty.Set(true)
|
||||||
keys := c.values[value]
|
keys := c.values[value]
|
||||||
previous := append([]string(nil), keys...)
|
previous := append([]string(nil), keys...)
|
||||||
early := len(keys) > 0
|
early := len(keys) > 0
|
||||||
@@ -114,14 +122,21 @@ func (c *container) doRemoveKey(key string) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (c *container) getValues() []string {
|
func (c *container) getValues() []string {
|
||||||
|
if !c.dirty.True() {
|
||||||
|
return c.snapshot.Load().([]string)
|
||||||
|
}
|
||||||
|
|
||||||
c.lock.Lock()
|
c.lock.Lock()
|
||||||
defer c.lock.Unlock()
|
defer c.lock.Unlock()
|
||||||
|
|
||||||
var vs []string
|
var vals []string
|
||||||
for each := range c.values {
|
for each := range c.values {
|
||||||
vs = append(vs, each)
|
vals = append(vals, each)
|
||||||
}
|
}
|
||||||
return vs
|
c.snapshot.Store(vals)
|
||||||
|
c.dirty.Set(false)
|
||||||
|
|
||||||
|
return vals
|
||||||
}
|
}
|
||||||
|
|
||||||
// removeKey removes the kv, returns true if there are still other keys associate with the value
|
// removeKey removes the kv, returns true if there are still other keys associate with the value
|
||||||
@@ -129,23 +144,6 @@ func (c *container) removeKey(key string) {
|
|||||||
c.lock.Lock()
|
c.lock.Lock()
|
||||||
defer c.lock.Unlock()
|
defer c.lock.Unlock()
|
||||||
|
|
||||||
|
c.dirty.Set(true)
|
||||||
c.doRemoveKey(key)
|
c.doRemoveKey(key)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *container) removeVal(val string) (empty bool) {
|
|
||||||
c.lock.Lock()
|
|
||||||
defer c.lock.Unlock()
|
|
||||||
|
|
||||||
for k := range c.values {
|
|
||||||
if k == val {
|
|
||||||
delete(c.values, k)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for k, v := range c.mapping {
|
|
||||||
if v == val {
|
|
||||||
delete(c.mapping, k)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return len(c.values) == 0
|
|
||||||
}
|
|
||||||
|
|||||||
132
core/discov/subscriber_test.go
Normal file
132
core/discov/subscriber_test.go
Normal file
@@ -0,0 +1,132 @@
|
|||||||
|
package discov
|
||||||
|
|
||||||
|
import (
|
||||||
|
"testing"
|
||||||
|
|
||||||
|
"zero/core/discov/internal"
|
||||||
|
|
||||||
|
"github.com/stretchr/testify/assert"
|
||||||
|
)
|
||||||
|
|
||||||
|
const (
|
||||||
|
actionAdd = iota
|
||||||
|
actionDel
|
||||||
|
)
|
||||||
|
|
||||||
|
func TestContainer(t *testing.T) {
|
||||||
|
type action struct {
|
||||||
|
act int
|
||||||
|
key string
|
||||||
|
val string
|
||||||
|
}
|
||||||
|
tests := []struct {
|
||||||
|
name string
|
||||||
|
do []action
|
||||||
|
expect []string
|
||||||
|
}{
|
||||||
|
{
|
||||||
|
name: "add one",
|
||||||
|
do: []action{
|
||||||
|
{
|
||||||
|
act: actionAdd,
|
||||||
|
key: "first",
|
||||||
|
val: "a",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
expect: []string{
|
||||||
|
"a",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "add two",
|
||||||
|
do: []action{
|
||||||
|
{
|
||||||
|
act: actionAdd,
|
||||||
|
key: "first",
|
||||||
|
val: "a",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
act: actionAdd,
|
||||||
|
key: "second",
|
||||||
|
val: "b",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
expect: []string{
|
||||||
|
"a",
|
||||||
|
"b",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "add two, delete one",
|
||||||
|
do: []action{
|
||||||
|
{
|
||||||
|
act: actionAdd,
|
||||||
|
key: "first",
|
||||||
|
val: "a",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
act: actionAdd,
|
||||||
|
key: "second",
|
||||||
|
val: "b",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
act: actionDel,
|
||||||
|
key: "first",
|
||||||
|
val: "a",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
expect: []string{
|
||||||
|
"b",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{
|
||||||
|
name: "add two, delete two",
|
||||||
|
do: []action{
|
||||||
|
{
|
||||||
|
act: actionAdd,
|
||||||
|
key: "first",
|
||||||
|
val: "a",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
act: actionAdd,
|
||||||
|
key: "second",
|
||||||
|
val: "b",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
act: actionDel,
|
||||||
|
key: "first",
|
||||||
|
val: "a",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
act: actionDel,
|
||||||
|
key: "second",
|
||||||
|
val: "b",
|
||||||
|
},
|
||||||
|
},
|
||||||
|
expect: []string{},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
|
||||||
|
for _, test := range tests {
|
||||||
|
t.Run(test.name, func(t *testing.T) {
|
||||||
|
c := newContainer(false)
|
||||||
|
for _, order := range test.do {
|
||||||
|
if order.act == actionAdd {
|
||||||
|
c.OnAdd(internal.KV{
|
||||||
|
Key: order.key,
|
||||||
|
Val: order.val,
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
c.OnDelete(internal.KV{
|
||||||
|
Key: order.key,
|
||||||
|
Val: order.val,
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
|
assert.True(t, c.dirty.True())
|
||||||
|
assert.ElementsMatch(t, test.expect, c.getValues())
|
||||||
|
assert.False(t, c.dirty.True())
|
||||||
|
assert.ElementsMatch(t, test.expect, c.getValues())
|
||||||
|
})
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -5,10 +5,13 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"zero/core/discov"
|
"zero/core/discov"
|
||||||
|
"zero/core/lang"
|
||||||
)
|
)
|
||||||
|
|
||||||
func main() {
|
func main() {
|
||||||
sub := discov.NewSubscriber([]string{"etcd.discovery:2379"}, "028F2C35852D", discov.Exclusive())
|
sub, err := discov.NewSubscriber([]string{"etcd.discovery:2379"}, "028F2C35852D", discov.Exclusive())
|
||||||
|
lang.Must(err)
|
||||||
|
|
||||||
ticker := time.NewTicker(time.Second * 3)
|
ticker := time.NewTicker(time.Second * 3)
|
||||||
defer ticker.Stop()
|
defer ticker.Stop()
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user