You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kratos/pkg/naming/etcd/etcd_test.go

99 lines
1.8 KiB

5 years ago
package etcd
import (
"context"
"fmt"
"github.com/bilibili/kratos/pkg/naming"
"github.com/coreos/etcd/clientv3"
"testing"
"time"
)
func TestNew(t *testing.T) {
config := &clientv3.Config{
5 years ago
Endpoints: []string{"127.0.0.1:2379"},
DialTimeout:time.Second*3,
5 years ago
}
5 years ago
builder,err := New(config)
5 years ago
5 years ago
if(err != nil){
fmt.Println("etcd 连接失败")
return
}
5 years ago
app1 := builder.Build("app1")
go func() {
fmt.Printf("Watch \n")
5 years ago
for {
select {
case <-app1.Watch():
5 years ago
fmt.Printf("app1 节点发生变化 \n")
5 years ago
}
5 years ago
}
}()
time.Sleep(time.Second)
5 years ago
app1Cancel, err := builder.Register(context.Background(), &naming.Instance{
AppID: "app1",
Hostname: "h1",
Zone: "z1",
5 years ago
})
5 years ago
fmt.Println(2222)
app2Cancel, err := builder.Register(context.Background(), &naming.Instance{
AppID: "app2",
Hostname: "h5",
Zone: "z3",
5 years ago
})
5 years ago
if err != nil {
5 years ago
fmt.Println(err)
}
5 years ago
fmt.Println(1111)
5 years ago
app2 := builder.Build("app2")
5 years ago
fmt.Println(1111)
5 years ago
5 years ago
go func() {
5 years ago
fmt.Println("节点列表")
for {
fmt.Printf("app1: ")
5 years ago
r1, _ := app1.Fetch(context.Background())
if r1 != nil {
for z, ins := range r1.Instances {
fmt.Printf("zone: %s :", z)
for _, in := range ins {
fmt.Printf("app: %s host %s \n", in.AppID, in.Hostname)
5 years ago
}
}
}
fmt.Printf("app2: ")
5 years ago
r2, _ := app2.Fetch(context.Background())
if r2 != nil {
for z, ins := range r2.Instances {
fmt.Printf("zone: %s :", z)
for _, in := range ins {
fmt.Printf("app: %s host %s \n", in.AppID, in.Hostname)
5 years ago
}
}
}
time.Sleep(time.Second)
}
}()
5 years ago
fmt.Println(1111)
time.Sleep(time.Second * 5)
5 years ago
fmt.Println("取消app1")
app1Cancel()
5 years ago
time.Sleep(time.Second * 10)
5 years ago
fmt.Println("取消app2")
app2Cancel()
5 years ago
fmt.Println(1111)
time.Sleep(30*time.Second)
5 years ago
}