export registry util function to safe copy registry data
Signed-off-by: Vasiliy Tolstov <v.tolstov@unistack.org>
This commit is contained in:
		
							
								
								
									
										76
									
								
								registry/util_test.go
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										76
									
								
								registry/util_test.go
									
									
									
									
									
										Normal file
									
								
							| @@ -0,0 +1,76 @@ | ||||
| package registry | ||||
|  | ||||
| import ( | ||||
| 	"testing" | ||||
| ) | ||||
|  | ||||
| func TestDelServices(t *testing.T) { | ||||
| 	services := []*Service{ | ||||
| 		{ | ||||
| 			Name:    "foo", | ||||
| 			Version: "1.0.0", | ||||
| 			Nodes: []*Node{ | ||||
| 				{ | ||||
| 					Id:      "foo-123", | ||||
| 					Address: "localhost", | ||||
| 					Port:    9999, | ||||
| 				}, | ||||
| 			}, | ||||
| 		}, | ||||
| 		{ | ||||
| 			Name:    "foo", | ||||
| 			Version: "1.0.0", | ||||
| 			Nodes: []*Node{ | ||||
| 				{ | ||||
| 					Id:      "foo-123", | ||||
| 					Address: "localhost", | ||||
| 					Port:    6666, | ||||
| 				}, | ||||
| 			}, | ||||
| 		}, | ||||
| 	} | ||||
|  | ||||
| 	servs := DelServices([]*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 TestDelNodes(t *testing.T) { | ||||
| 	services := []*Service{ | ||||
| 		{ | ||||
| 			Name:    "foo", | ||||
| 			Version: "1.0.0", | ||||
| 			Nodes: []*Node{ | ||||
| 				{ | ||||
| 					Id:      "foo-123", | ||||
| 					Address: "localhost", | ||||
| 					Port:    9999, | ||||
| 				}, | ||||
| 				{ | ||||
| 					Id:      "foo-321", | ||||
| 					Address: "localhost", | ||||
| 					Port:    6666, | ||||
| 				}, | ||||
| 			}, | ||||
| 		}, | ||||
| 		{ | ||||
| 			Name:    "foo", | ||||
| 			Version: "1.0.0", | ||||
| 			Nodes: []*Node{ | ||||
| 				{ | ||||
| 					Id:      "foo-123", | ||||
| 					Address: "localhost", | ||||
| 					Port:    6666, | ||||
| 				}, | ||||
| 			}, | ||||
| 		}, | ||||
| 	} | ||||
|  | ||||
| 	nodes := delServiceNodes(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) | ||||
| } | ||||
		Reference in New Issue
	
	Block a user