Bug 1029: Remove dead code: sal-schema-repository-api
[controller.git] / opendaylight / netconf / netconf-netty-util / src / test / java / org / opendaylight / controller / netconf / nettyutil / handler / 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.nettyutil.handler;
9
10 import static org.junit.Assert.assertEquals;
11
12 import com.google.common.io.Files;
13 import io.netty.buffer.Unpooled;
14 import java.io.File;
15 import java.util.ArrayList;
16 import java.util.List;
17 import org.junit.Test;
18
19 public class NetconfMessageFactoryTest {
20     @Test
21     public void testAuth() throws Exception {
22         NetconfXMLToHelloMessageDecoder parser = new NetconfXMLToHelloMessageDecoder();
23         File authHelloFile = new File(getClass().getResource("/netconfMessages/client_hello_with_auth.xml").getFile());
24
25         final List<Object> out = new ArrayList<>();
26         parser.decode(null, Unpooled.wrappedBuffer(Files.toByteArray(authHelloFile)), out);
27         assertEquals(1, out.size());
28     }
29 }