Merge "Changed model versions to dependencies"
[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.NetconfXMLToMessageDecoder;
19
20 import com.google.common.io.Files;
21
22 public class NetconfMessageFactoryTest {
23     @Test
24     public void testAuth() throws Exception {
25         NetconfXMLToMessageDecoder parser = new NetconfXMLToMessageDecoder();
26         File authHelloFile = new File(getClass().getResource("/netconfMessages/client_hello_with_auth.xml").getFile());
27
28         final List<Object> out = new ArrayList<>();
29         parser.decode(null, Unpooled.wrappedBuffer(Files.toByteArray(authHelloFile)), out);
30         assertEquals(1, out.size());
31     }
32 }