small fixes
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
parent
54c4287fab
commit
2d292db7bd
@ -2,7 +2,6 @@ package register
|
|||||||
|
|
||||||
import (
|
import (
|
||||||
"context"
|
"context"
|
||||||
"errors"
|
|
||||||
"sync"
|
"sync"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
@ -438,7 +437,7 @@ func (m *watcher) Next() (*Result, error) {
|
|||||||
return r, nil
|
return r, nil
|
||||||
}
|
}
|
||||||
case <-m.exit:
|
case <-m.exit:
|
||||||
return nil, errors.New("watcher stopped")
|
return nil, ErrWatcherStopped
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -4,6 +4,7 @@ import (
|
|||||||
"context"
|
"context"
|
||||||
"fmt"
|
"fmt"
|
||||||
"os"
|
"os"
|
||||||
|
"sync"
|
||||||
"testing"
|
"testing"
|
||||||
"time"
|
"time"
|
||||||
)
|
)
|
||||||
@ -284,29 +285,39 @@ func TestMemoryWildcard(t *testing.T) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func TestWatcher(t *testing.T) {
|
func TestWatcher(t *testing.T) {
|
||||||
w := &watcher{
|
testSrv := &Service{Name: "foo", Version: "1.0.0"}
|
||||||
id: "test",
|
|
||||||
res: make(chan *Result),
|
|
||||||
exit: make(chan bool),
|
|
||||||
wo: WatchOptions{
|
|
||||||
Domain: WildcardDomain,
|
|
||||||
},
|
|
||||||
}
|
|
||||||
|
|
||||||
|
ctx := context.TODO()
|
||||||
|
m := NewRegister()
|
||||||
|
m.Init()
|
||||||
|
m.Connect(ctx)
|
||||||
|
wc, err := m.Watch(ctx)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("cant watch: %v", err)
|
||||||
|
}
|
||||||
|
defer wc.Stop()
|
||||||
|
|
||||||
|
var wg sync.WaitGroup
|
||||||
|
wg.Add(1)
|
||||||
go func() {
|
go func() {
|
||||||
w.res <- &Result{
|
for {
|
||||||
Service: &Service{Name: "foo"},
|
ch, err := wc.Next()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatal("unexpected err", err)
|
||||||
|
}
|
||||||
|
t.Logf("changes %#+v", ch.Service)
|
||||||
|
wc.Stop()
|
||||||
|
wg.Done()
|
||||||
|
return
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
||||||
_, err := w.Next()
|
if err := m.Register(ctx, testSrv); err != nil {
|
||||||
if err != nil {
|
t.Fatalf("Register err: %v", err)
|
||||||
t.Fatal("unexpected err", err)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
w.Stop()
|
wg.Wait()
|
||||||
|
if _, err := wc.Next(); err == nil {
|
||||||
if _, err := w.Next(); err == nil {
|
|
||||||
t.Fatal("expected error on Next()")
|
t.Fatal("expected error on Next()")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -54,8 +54,10 @@ type Service interface {
|
|||||||
// Runtime(string) (runtime.Runtime, bool)
|
// Runtime(string) (runtime.Runtime, bool)
|
||||||
// Profile
|
// Profile
|
||||||
// Profile(string) (profile.Profile, bool)
|
// Profile(string) (profile.Profile, bool)
|
||||||
// Run the service
|
// Run the service and wait
|
||||||
Run() error
|
Run() error
|
||||||
|
// Start the service
|
||||||
|
Start() error
|
||||||
// The service implementation
|
// The service implementation
|
||||||
String() string
|
String() string
|
||||||
}
|
}
|
||||||
@ -257,7 +259,7 @@ func (s *service) Start() error {
|
|||||||
s.RUnlock()
|
s.RUnlock()
|
||||||
|
|
||||||
if config.Loggers[0].V(logger.InfoLevel) {
|
if config.Loggers[0].V(logger.InfoLevel) {
|
||||||
config.Loggers[0].Infof(s.opts.Context, "starting [service] %s", s.Name())
|
config.Loggers[0].Infof(s.opts.Context, "starting [service] %s-%s", s.Options().Name, s.Options().Version)
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, fn := range s.opts.BeforeStart {
|
for _, fn := range s.opts.BeforeStart {
|
||||||
|
@ -245,8 +245,13 @@ func StructFields(src interface{}) ([]StructField, error) {
|
|||||||
|
|
||||||
switch val.Kind() {
|
switch val.Kind() {
|
||||||
case reflect.Ptr:
|
case reflect.Ptr:
|
||||||
// if !val.IsValid()
|
if val.CanSet() && fld.Type.Elem().Kind() == reflect.Struct {
|
||||||
if reflect.Indirect(val).Kind() == reflect.Struct {
|
if val.IsNil() {
|
||||||
|
val.Set(reflect.New(fld.Type.Elem()))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
switch reflect.Indirect(val).Kind() {
|
||||||
|
case reflect.Struct:
|
||||||
infields, err := StructFields(val.Interface())
|
infields, err := StructFields(val.Interface())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
@ -255,7 +260,7 @@ func StructFields(src interface{}) ([]StructField, error) {
|
|||||||
infield.Path = fmt.Sprintf("%s.%s", fld.Name, infield.Path)
|
infield.Path = fmt.Sprintf("%s.%s", fld.Name, infield.Path)
|
||||||
fields = append(fields, infield)
|
fields = append(fields, infield)
|
||||||
}
|
}
|
||||||
} else {
|
default:
|
||||||
fields = append(fields, StructField{Field: fld, Value: val, Path: fld.Name})
|
fields = append(fields, StructField{Field: fld, Value: val, Path: fld.Name})
|
||||||
}
|
}
|
||||||
case reflect.Struct:
|
case reflect.Struct:
|
||||||
@ -268,6 +273,7 @@ func StructFields(src interface{}) ([]StructField, error) {
|
|||||||
fields = append(fields, infield)
|
fields = append(fields, infield)
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
|
||||||
fields = append(fields, StructField{Field: fld, Value: val, Path: fld.Name})
|
fields = append(fields, StructField{Field: fld, Value: val, Path: fld.Name})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -10,22 +10,28 @@ import (
|
|||||||
)
|
)
|
||||||
|
|
||||||
func TestStructfields(t *testing.T) {
|
func TestStructfields(t *testing.T) {
|
||||||
|
type NestedConfig struct {
|
||||||
|
Value string
|
||||||
|
}
|
||||||
type Config struct {
|
type Config struct {
|
||||||
Time time.Time
|
Time time.Time
|
||||||
Nested *Config
|
Nested *NestedConfig
|
||||||
Metadata map[string]int
|
Metadata map[string]int
|
||||||
Broker string
|
Broker string
|
||||||
Addr []string
|
Addr []string
|
||||||
Wait time.Duration
|
Wait time.Duration
|
||||||
Verbose bool
|
Verbose bool
|
||||||
}
|
}
|
||||||
cfg := &Config{Nested: &Config{}}
|
cfg := &Config{Nested: &NestedConfig{}}
|
||||||
fields, err := rutil.StructFields(cfg)
|
fields, err := rutil.StructFields(cfg)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
t.Fatal(err)
|
t.Fatal(err)
|
||||||
}
|
}
|
||||||
if len(fields) != 13 {
|
if len(fields) != 7 {
|
||||||
t.Fatalf("invalid fields number: %v", fields)
|
for _, field := range fields {
|
||||||
|
t.Logf("field %#+v\n", field)
|
||||||
|
}
|
||||||
|
t.Fatalf("invalid fields number: %d != %d", 7, len(fields))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user