X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?p=controller.git;a=blobdiff_plain;f=opendaylight%2Fmd-sal%2Fsal-clustering-commons%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fcluster%2Fdatastore%2Fnode%2Futils%2FQNameFactoryTest.java;h=9f5419d20339dbedacf14e2aae8f17fbffb5b4b5;hp=76d4ceb2f5ec405200e9ce44a0c5665a2570f9c3;hb=a69604185f71923bdfc16d2d056490fff9a8d90e;hpb=f4bad4be4f0838122b9799d133878877088e870d diff --git a/opendaylight/md-sal/sal-clustering-commons/src/test/java/org/opendaylight/controller/cluster/datastore/node/utils/QNameFactoryTest.java b/opendaylight/md-sal/sal-clustering-commons/src/test/java/org/opendaylight/controller/cluster/datastore/node/utils/QNameFactoryTest.java index 76d4ceb2f5..9f5419d203 100644 --- a/opendaylight/md-sal/sal-clustering-commons/src/test/java/org/opendaylight/controller/cluster/datastore/node/utils/QNameFactoryTest.java +++ b/opendaylight/md-sal/sal-clustering-commons/src/test/java/org/opendaylight/controller/cluster/datastore/node/utils/QNameFactoryTest.java @@ -1,29 +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.node.utils; +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertNotSame; +import static org.junit.Assert.assertSame; + import org.junit.Test; +import org.opendaylight.controller.cluster.datastore.node.utils.QNameFactory.Key; import org.opendaylight.controller.cluster.datastore.util.TestModel; import org.opendaylight.yangtools.yang.common.QName; - -import static junit.framework.Assert.assertTrue; -import static junit.framework.TestCase.assertEquals; -import static org.junit.Assert.assertFalse; +import org.opendaylight.yangtools.yang.common.Revision; public class QNameFactoryTest { @Test - public void testBasic(){ + @Deprecated + public void testBasicString() { QName expected = TestModel.AUG_NAME_QNAME; QName created = QNameFactory.create(expected.toString()); - - assertFalse( expected == created); - + assertNotSame(expected, created); assertEquals(expected, created); QName cached = QNameFactory.create(expected.toString()); + assertSame(created, cached); + } - assertEquals(expected, cached); + @Test + public void testBasic() { + QName expected = TestModel.AUG_NAME_QNAME; + QName created = QNameFactory.create(createKey(expected)); + assertNotSame(expected, created); + assertEquals(expected, created); - assertTrue( cached == created ); + QName cached = QNameFactory.create(createKey(expected)); + assertSame(created, cached); } + private static Key createKey(final QName qname) { + return new Key(qname.getLocalName(), qname.getNamespace().toString(), + qname.getRevision().map(Revision::toString).orElse(null)); + } }