Initial implementation of netconf monitoring module according to http://tools.ietf...
[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 com.google.common.io.Files;
11 import org.junit.Test;
12
13 import java.io.File;
14
15 public class NetconfMessageFactoryTest {
16
17
18     @Test
19     public void testAuth() throws Exception {
20         NetconfMessageFactory parser = new NetconfMessageFactory();
21         File authHelloFile = new File(getClass().getResource("/netconfMessages/client_hello_with_auth.xml").getFile());
22         parser.parse(Files.toByteArray(authHelloFile));
23
24     }
25 }