2019-07-04 00:15:44 +03:00
|
|
|
package registry
|
2018-12-04 19:41:40 +03:00
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
2019-07-04 13:36:49 +03:00
|
|
|
func TestRemove(t *testing.T) {
|
2019-07-04 00:15:44 +03:00
|
|
|
services := []*Service{
|
2018-12-04 19:41:40 +03:00
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.0",
|
2019-07-04 00:15:44 +03:00
|
|
|
Nodes: []*Node{
|
2018-12-04 19:41:40 +03:00
|
|
|
{
|
|
|
|
Id: "foo-123",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:9999",
|
2018-12-04 19:41:40 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.0",
|
2019-07-04 00:15:44 +03:00
|
|
|
Nodes: []*Node{
|
2018-12-04 19:41:40 +03:00
|
|
|
{
|
|
|
|
Id: "foo-123",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:6666",
|
2018-12-04 19:41:40 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-07-04 13:36:49 +03:00
|
|
|
servs := Remove([]*Service{services[0]}, []*Service{services[1]})
|
2018-12-04 19:41:40 +03:00
|
|
|
if i := len(servs); i > 0 {
|
|
|
|
t.Errorf("Expected 0 nodes, got %d: %+v", i, servs)
|
|
|
|
}
|
|
|
|
t.Logf("Services %+v", servs)
|
|
|
|
}
|
|
|
|
|
2019-07-04 13:36:49 +03:00
|
|
|
func TestRemoveNodes(t *testing.T) {
|
2019-07-04 00:15:44 +03:00
|
|
|
services := []*Service{
|
2018-12-04 19:41:40 +03:00
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.0",
|
2019-07-04 00:15:44 +03:00
|
|
|
Nodes: []*Node{
|
2018-12-04 19:41:40 +03:00
|
|
|
{
|
|
|
|
Id: "foo-123",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:9999",
|
2018-12-04 19:41:40 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
Id: "foo-321",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:6666",
|
2018-12-04 19:41:40 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "foo",
|
|
|
|
Version: "1.0.0",
|
2019-07-04 00:15:44 +03:00
|
|
|
Nodes: []*Node{
|
2018-12-04 19:41:40 +03:00
|
|
|
{
|
|
|
|
Id: "foo-123",
|
2019-07-08 10:01:42 +03:00
|
|
|
Address: "localhost:6666",
|
2018-12-04 19:41:40 +03:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
2019-07-04 13:36:49 +03:00
|
|
|
nodes := delNodes(services[0].Nodes, services[1].Nodes)
|
2018-12-04 19:41:40 +03:00
|
|
|
if i := len(nodes); i != 1 {
|
|
|
|
t.Errorf("Expected only 1 node, got %d: %+v", i, nodes)
|
|
|
|
}
|
|
|
|
t.Logf("Nodes %+v", nodes)
|
|
|
|
}
|