X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-distributed-datastore%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fshardstrategy%2FShardStrategyFactoryTest.java;h=84b82b293a284aab060bc105493cc83073d4f6eb;hp=10e832780d26ca7e8603e14ef82fbeac0e57b16e;hb=4e991c7dc07090690a29b20c962b24ee4dd1f157;hpb=f281dc3e886501dc617e397c8e203732300a8f08 diff --git a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/shardstrategy/ShardStrategyFactoryTest.java b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/shardstrategy/ShardStrategyFactoryTest.java index 10e832780d..84b82b293a 100644 --- a/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/shardstrategy/ShardStrategyFactoryTest.java +++ b/opendaylight/md-sal/sal-distributed-datastore/src/test/java/org/opendaylight/controller/cluster/datastore/shardstrategy/ShardStrategyFactoryTest.java @@ -1,48 +1,49 @@ +/* + * 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 + */ package org.opendaylight.controller.cluster.datastore.shardstrategy; +import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; +import static org.junit.Assert.assertThrows; import static org.junit.Assert.assertTrue; -import org.junit.BeforeClass; -import org.junit.Rule; + +import org.junit.Before; import org.junit.Test; -import org.junit.rules.ExpectedException; -import org.opendaylight.controller.cluster.datastore.ConfigurationImpl; +import org.opendaylight.controller.cluster.datastore.config.ConfigurationImpl; import org.opendaylight.controller.md.cluster.datastore.model.CarsModel; import org.opendaylight.controller.md.cluster.datastore.model.TestModel; +import org.opendaylight.mdsal.common.api.LogicalDatastoreType; import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier; public class ShardStrategyFactoryTest { + private ShardStrategyFactory factory; - @Rule - public ExpectedException expectedEx = ExpectedException.none(); - - @BeforeClass - public static void setUpClass(){ - ShardStrategyFactory.setConfiguration(new ConfigurationImpl("module-shards.conf", "modules.conf")); + @Before + public void setUp() { + factory = new ShardStrategyFactory(new ConfigurationImpl("module-shards.conf", "modules.conf"), + LogicalDatastoreType.CONFIGURATION); } @Test public void testGetStrategy() { - ShardStrategy strategy = - ShardStrategyFactory.getStrategy(TestModel.TEST_PATH); + ShardStrategy strategy = factory.getStrategy(TestModel.TEST_PATH); assertNotNull(strategy); } @Test public void testGetStrategyForKnownModuleName() { - ShardStrategy strategy = - ShardStrategyFactory.getStrategy( - YangInstanceIdentifier.of(CarsModel.BASE_QNAME)); + ShardStrategy strategy = factory.getStrategy(YangInstanceIdentifier.of(CarsModel.BASE_QNAME)); assertTrue(strategy instanceof ModuleShardStrategy); } - @Test public void testGetStrategyNullPointerExceptionWhenPathIsNull() { - expectedEx.expect(NullPointerException.class); - expectedEx.expectMessage("path should not be null"); - - ShardStrategyFactory.getStrategy(null); + final NullPointerException ex = assertThrows(NullPointerException.class, () -> factory.getStrategy(null)); + assertEquals("path should not be null", ex.getMessage()); } - }