Allow incremental recovery
[controller.git] / opendaylight / md-sal / sal-distributed-datastore / src / test / java / org / opendaylight / controller / cluster / datastore / identifiers / ShardIdentifierTest.java
1 /*
2  * Copyright (c) 2014, 2015 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8
9 package org.opendaylight.controller.cluster.datastore.identifiers;
10
11 import static org.junit.Assert.assertEquals;
12
13 import org.junit.Test;
14 import org.opendaylight.controller.cluster.access.concepts.MemberName;
15
16 public class ShardIdentifierTest {
17
18     @Test
19     public void testBasic() {
20         ShardIdentifier id = ShardIdentifier.create("inventory", MemberName.forName("member-1"), "config");
21
22         assertEquals("member-1-shard-inventory-config", id.toString());
23     }
24
25     @Test
26     public void testFromShardIdString() {
27         String shardIdStr = "member-1-shard-inventory-config";
28
29         ShardIdentifier id = ShardIdentifier.fromShardIdString(shardIdStr);
30
31         assertEquals("member-1", id.getMemberName().getName());
32         assertEquals("inventory", id.getShardName());
33         assertEquals("config", id.getType());
34     }
35 }