Merge "CHange log level from warn to debug in ProtocolSessionPromise when connection...
[controller.git] / opendaylight / netconf / netconf-util / src / test / java / org / opendaylight / controller / netconf / util / messages / NetconfMessageFactoryTest.java
1 /*
2  * Copyright (c) 2013 Cisco Systems, Inc. and others.  All rights reserved.
3  *
4  * This program and the accompanying materials are made available under the
5  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
6  * and is available at http://www.eclipse.org/legal/epl-v10.html
7  */
8 package org.opendaylight.controller.netconf.util.messages;
9
10 import static org.junit.Assert.assertEquals;
11 import io.netty.buffer.Unpooled;
12
13 import java.io.File;
14 import java.util.ArrayList;
15 import java.util.List;
16
17 import org.junit.Test;
18 import org.opendaylight.controller.netconf.util.handler.NetconfXMLToHelloMessageDecoder;
19 import org.opendaylight.controller.netconf.util.handler.NetconfXMLToMessageDecoder;
20
21 import com.google.common.io.Files;
22
23 public class NetconfMessageFactoryTest {
24     @Test
25     public void testAuth() throws Exception {
26         NetconfXMLToMessageDecoder parser = new NetconfXMLToHelloMessageDecoder();
27         File authHelloFile = new File(getClass().getResource("/netconfMessages/client_hello_with_auth.xml").getFile());
28
29         final List<Object> out = new ArrayList<>();
30         parser.decode(null, Unpooled.wrappedBuffer(Files.toByteArray(authHelloFile)), out);
31         assertEquals(1, out.size());
32     }
33 }