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%2Fprotobuff%2Fmessages%2Fregistration%2FListenerRegistrationMessagesTest.java;fp=opendaylight%2Fmd-sal%2Fsal-clustering-commons%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fcontroller%2Fprotobuff%2Fmessages%2Fregistration%2FListenerRegistrationMessagesTest.java;h=0000000000000000000000000000000000000000;hp=e253fa22a331410842d6a7bb32a5561af297c0df;hb=4aafd13eccad285b5bb3ee277b0fb0b8721612bc;hpb=6a5a8670a47f8989998390b6bab6718c1a7857b5 diff --git a/opendaylight/md-sal/sal-clustering-commons/src/test/java/org/opendaylight/controller/protobuff/messages/registration/ListenerRegistrationMessagesTest.java b/opendaylight/md-sal/sal-clustering-commons/src/test/java/org/opendaylight/controller/protobuff/messages/registration/ListenerRegistrationMessagesTest.java deleted file mode 100644 index e253fa22a3..0000000000 --- a/opendaylight/md-sal/sal-clustering-commons/src/test/java/org/opendaylight/controller/protobuff/messages/registration/ListenerRegistrationMessagesTest.java +++ /dev/null @@ -1,58 +0,0 @@ -/* - * - * Copyright (c) 2014 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.protobuff.messages.registration; - -import org.junit.Assert; -import org.junit.Test; -import org.opendaylight.controller.protobuff.messages.AbstractMessagesTest; - -/** - * This test case is present to ensure that if others have used proper version of protocol buffer - * for the ListenerRegistration.proto messages - * - * If a different version of protocol buffer and there is change in serializaiton format - * this test would break as we are comparing with protocol buffer 2.5 generated - * serialized data. - * - * @author: syedbahm - * - */ - -public class ListenerRegistrationMessagesTest extends AbstractMessagesTest { - - @Override - @Test - public void verifySerialization() throws Exception { - String testListenerRegistrationPath = - "(urn:opendaylight:params:xml:ns:yang:controller:md:sal:dom:store:notification-test?revision=2014-04-15)family"; - ListenerRegistrationMessages.RegisterChangeListenerReply.Builder builder = - ListenerRegistrationMessages.RegisterChangeListenerReply.newBuilder(); - builder.setListenerRegistrationPath(testListenerRegistrationPath); - - writeToFile(builder); - - ListenerRegistrationMessages.RegisterChangeListenerReply rclrNew = - (ListenerRegistrationMessages.RegisterChangeListenerReply) readFromFile(ListenerRegistrationMessages.RegisterChangeListenerReply.PARSER); - Assert.assertEquals(testListenerRegistrationPath, - rclrNew.getListenerRegistrationPath()); - - ListenerRegistrationMessages.RegisterChangeListenerReply rclrOriginal = - (ListenerRegistrationMessages.RegisterChangeListenerReply) readFromTestDataFile(ListenerRegistrationMessages.RegisterChangeListenerReply.PARSER); - Assert.assertEquals(rclrOriginal.getListenerRegistrationPath(), - rclrNew.getListenerRegistrationPath()); - - } - - @Override - public String getTestFileName() { - return ListenerRegistrationMessages.class.getSimpleName(); - } -}