forked from micro/go-micro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutil_test.go
71 lines (66 loc) · 1.15 KB
/
util_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
package registry
import (
"testing"
)
func TestRemove(t *testing.T) {
services := []*Service{
{
Name: "foo",
Version: "1.0.0",
Nodes: []*Node{
{
Id: "foo-123",
Address: "localhost:9999",
},
},
},
{
Name: "foo",
Version: "1.0.0",
Nodes: []*Node{
{
Id: "foo-123",
Address: "localhost:6666",
},
},
},
}
servs := Remove([]*Service{services[0]}, []*Service{services[1]})
if i := len(servs); i > 0 {
t.Errorf("Expected 0 nodes, got %d: %+v", i, servs)
}
t.Logf("Services %+v", servs)
}
func TestRemoveNodes(t *testing.T) {
services := []*Service{
{
Name: "foo",
Version: "1.0.0",
Nodes: []*Node{
{
Id: "foo-123",
Address: "localhost:9999",
},
{
Id: "foo-321",
Address: "localhost:6666",
},
},
},
{
Name: "foo",
Version: "1.0.0",
Nodes: []*Node{
{
Id: "foo-123",
Address: "localhost:6666",
},
},
},
}
nodes := delNodes(services[0].Nodes, services[1].Nodes)
if i := len(nodes); i != 1 {
t.Errorf("Expected only 1 node, got %d: %+v", i, nodes)
}
t.Logf("Nodes %+v", nodes)
}