BUG-5280: use MemberName instead of String
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / identifiers / ShardIdentifierTest.java
index 0b5e7132c77791cab3e2c4276fe1fb966bb6445e..2dedb0e4cc86945717beb1ca23ed08d3caf78f56 100644 (file)
@@ -1,14 +1,22 @@
-package org.opendaylight.controller.cluster.datastore.identifiers;
+/*
+ * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  All rights reserved.
+ *
+ * This program and the accompanying materials are made available under the
+ * terms of the Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ */
 
-import org.junit.Test;
+package org.opendaylight.controller.cluster.datastore.identifiers;
 
 import static org.junit.Assert.assertEquals;
+import org.junit.Test;
+import org.opendaylight.controller.cluster.access.concepts.MemberName;
 
 public class ShardIdentifierTest {
 
     @Test
     public void testBasic(){
-        ShardIdentifier id = ShardIdentifier.builder().memberName("member-1")
+        ShardIdentifier id = ShardIdentifier.builder().memberName(MemberName.forName("member-1"))
             .shardName("inventory").type("config").build();
 
         assertEquals("member-1-shard-inventory-config", id.toString());
@@ -20,7 +28,7 @@ public class ShardIdentifierTest {
 
         ShardIdentifier id = ShardIdentifier.builder().fromShardIdString(shardIdStr).build();
 
-        assertEquals("member-1", id.getMemberName());
+        assertEquals("member-1", id.getMemberName().getName());
         assertEquals("inventory", id.getShardName());
         assertEquals("config", id.getType());
     }