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=2ae83bd6c68b9f8c786b678ec632ec6c33335129;hb=a69604185f71923bdfc16d2d056490fff9a8d90e;hpb=54acc3c8f479b547877a5057cea143546e905470 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 2ae83bd6c6..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 org.junit.Assert.assertEquals; -import static org.junit.Assert.assertFalse; -import static org.junit.Assert.assertTrue; +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)); + } }