2798: Started adding tests that ShuffledServiceRoots behavior is consistent
authorPeter Amstutz <peter.amstutz@curoverse.com>
Sat, 10 May 2014 21:18:21 +0000 (17:18 -0400)
committerPeter Amstutz <peter.amstutz@curoverse.com>
Sat, 10 May 2014 21:18:21 +0000 (17:18 -0400)
with Python reference implementation.

sdk/go/src/arvados.org/keepclient/keepclient_test.go

index ac0c85af83346ca3af5c981c94652335aa395ac5..4152eb357622e9e7c398a3c4f76987d225beb004 100644 (file)
@@ -19,4 +19,13 @@ func (s *MySuite) TestGetKeepDisks(c *C) {
        c.Assert(sr[0], Equals, "http://localhost:25107")
        c.Assert(sr[1], Equals, "http://localhost:25108")
 
+       service_roots := []string{"http://localhost:25107", "http://localhost:25108", "http://localhost:25109", "http://localhost:25110", "http://localhost:25111", "http://localhost:25112", "http://localhost:25113", "http://localhost:25114", "http://localhost:25115", "http://localhost:25116", "http://localhost:25117", "http://localhost:25118", "http://localhost:25119", "http://localhost:25120", "http://localhost:25121", "http://localhost:25122", "http://localhost:25123"}
+
+       // "foo" acbd18db4cc2f85cedef654fccc4a4d8
+       //foo_shuffle := []string{"http://localhost:25116", "http://localhost:25120", "http://localhost:25119", "http://localhost:25122", "http://localhost:25108", "http://localhost:25114", "http://localhost:25112", "http://localhost:25107", "http://localhost:25118", "http://localhost:25111", "http://localhost:25113", "http://localhost:25121", "http://localhost:25110", "http://localhost:25117", "http://localhost:25109", "http://localhost:25115", "http://localhost:25123"}
+       ShuffledServiceRoots(service_roots, "acbd18db4cc2f85cedef654fccc4a4d8")
+
+       // "bar" 37b51d194a7513e45b56f6524f2d51f2
+       //bar_shuffle := []string{"http://localhost:25108", "http://localhost:25112", "http://localhost:25119", "http://localhost:25107", "http://localhost:25110", "http://localhost:25116", "http://localhost:25122", "http://localhost:25120", "http://localhost:25121", "http://localhost:25117", "http://localhost:25111", "http://localhost:25123", "http://localhost:25118", "http://localhost:25113", "http://localhost:25114", "http://localhost:25115", "http://localhost:25109"}
+
 }