3edd91d3ae57ad909eb55cf1b3c121ce2e8149ce
[transportpce.git] / tests / honeynode / 1.2.1 / netconf-impl / src / test / java / org / opendaylight / netconf / impl / AdditionalHeaderParserTest.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.netconf.impl;
9
10 import static org.junit.Assert.assertEquals;
11
12 import org.junit.Test;
13 import org.opendaylight.netconf.api.messages.NetconfHelloMessageAdditionalHeader;
14
15 public class AdditionalHeaderParserTest {
16
17     @Test
18     public void testParsing() throws Exception {
19         String message = "[netconf;10.12.0.102:48528;ssh;;;;;;]";
20         NetconfHelloMessageAdditionalHeader header = NetconfHelloMessageAdditionalHeader.fromString(message);
21         assertEquals("netconf", header.getUserName());
22         assertEquals("10.12.0.102", header.getAddress());
23         assertEquals("ssh", header.getTransport());
24     }
25
26     @Test
27     public void testParsing2() throws Exception {
28         String message = "[tomas;10.0.0.0/10000;tcp;1000;1000;;/home/tomas;;]";
29         NetconfHelloMessageAdditionalHeader header = NetconfHelloMessageAdditionalHeader.fromString(message);
30         assertEquals("tomas", header.getUserName());
31         assertEquals("10.0.0.0", header.getAddress());
32         assertEquals("tcp", header.getTransport());
33     }
34
35     @Test(expected = IllegalArgumentException.class)
36     public void testParsingNoUsername() throws Exception {
37         String message = "[10.12.0.102:48528;ssh;;;;;;]";
38         NetconfHelloMessageAdditionalHeader.fromString(message);
39     }
40 }