X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=opendaylight%2Fnetconf%2Fnetconf-netty-util%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fnettyutil%2Fhandler%2FNetconfMessageFactoryTest.java;fp=opendaylight%2Fnetconf%2Fnetconf-netty-util%2Fsrc%2Ftest%2Fjava%2Forg%2Fopendaylight%2Fnetconf%2Fnettyutil%2Fhandler%2FNetconfMessageFactoryTest.java;h=0000000000000000000000000000000000000000;hb=4c0c091813aea131d32dc70c5121a450eb9b7291;hp=856a9d53855e3dd26c1e2c37b4139e059ce4b6b2;hpb=a63cd90c78847178c8ab9a970b2189bdab572a80;p=netconf.git diff --git a/opendaylight/netconf/netconf-netty-util/src/test/java/org/opendaylight/netconf/nettyutil/handler/NetconfMessageFactoryTest.java b/opendaylight/netconf/netconf-netty-util/src/test/java/org/opendaylight/netconf/nettyutil/handler/NetconfMessageFactoryTest.java deleted file mode 100644 index 856a9d5385..0000000000 --- a/opendaylight/netconf/netconf-netty-util/src/test/java/org/opendaylight/netconf/nettyutil/handler/NetconfMessageFactoryTest.java +++ /dev/null @@ -1,29 +0,0 @@ -/* - * Copyright (c) 2013 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.netconf.nettyutil.handler; - -import static org.junit.Assert.assertEquals; - -import com.google.common.io.Files; -import io.netty.buffer.Unpooled; -import java.io.File; -import java.util.ArrayList; -import java.util.List; -import org.junit.Test; - -public class NetconfMessageFactoryTest { - @Test - public void testAuth() throws Exception { - NetconfXMLToHelloMessageDecoder parser = new NetconfXMLToHelloMessageDecoder(); - File authHelloFile = new File(getClass().getResource("/netconfMessages/client_hello_with_auth.xml").getFile()); - - final List out = new ArrayList<>(); - parser.decode(null, Unpooled.wrappedBuffer(Files.toByteArray(authHelloFile)), out); - assertEquals(1, out.size()); - } -}