X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fidentifiers%2FShardIdentifierTest.java;h=64bd779b2d77c51436cff2b54d9041aa7a6fa69a;hb=95c296a7c1e8e186a88a0a0dc82e080b2185db33;hp=afcd045434450d4dee2e89a8efb13b7866e77320;hpb=961b5b9260565194a863a25bd697f171ec2405af;p=controller.git diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/identifiers/ShardIdentifierTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/identifiers/ShardIdentifierTest.java index afcd045434..64bd779b2d 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/identifiers/ShardIdentifierTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/identifiers/ShardIdentifierTest.java @@ -1,18 +1,35 @@ -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") - .shardName("inventory").type("config").build(); + public void testBasic() { + ShardIdentifier id = ShardIdentifier.create("inventory", MemberName.forName("member-1"), "config"); assertEquals("member-1-shard-inventory-config", id.toString()); } + @Test + public void testFromShardIdString() { + String shardIdStr = "member-1-shard-inventory-config"; + + ShardIdentifier id = ShardIdentifier.fromShardIdString(shardIdStr); + assertEquals("member-1", id.getMemberName().getName()); + assertEquals("inventory", id.getShardName()); + assertEquals("config", id.getType()); + } }