BUG-58: refactor to take advantage of netty
[bgpcep.git] / bgp / rib-impl / src / test / java / org / opendaylight / protocol / bgp / rib / impl / ApiTest.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.protocol.bgp.rib.impl;
9
10 import static org.junit.Assert.assertEquals;
11 import static org.junit.Assert.assertNull;
12
13 import org.junit.Test;
14 import org.opendaylight.protocol.bgp.concepts.BGPAddressFamily;
15 import org.opendaylight.protocol.bgp.concepts.BGPSubsequentAddressFamily;
16 import org.opendaylight.protocol.bgp.concepts.BGPTableType;
17 import org.opendaylight.protocol.bgp.parser.BGPUpdateSynchronized;
18 import org.opendaylight.protocol.bgp.rib.impl.spi.BGPSessionPreferences;
19 import org.opendaylight.protocol.concepts.ASNumber;
20
21 public class ApiTest {
22
23         @Test
24         public void testBGPSessionPreferences() {
25                 final BGPSessionPreferences sp = new BGPSessionPreferences(new ASNumber(58), (short) 5, null, null);
26                 assertNull(sp.getBgpId());
27                 assertEquals((short) 5, sp.getHoldTime());
28                 assertEquals(58, sp.getMyAs().getAsn());
29         }
30
31         @Test
32         public void testBGPUpdateSynchronized() {
33                 final BGPTableType tt = new BGPTableType(BGPAddressFamily.IPv4, BGPSubsequentAddressFamily.Linkstate);
34                 final BGPUpdateSynchronized update = new BGPUpdateSynchronizedImpl(tt);
35                 assertEquals(tt, update.getTableType());
36         }
37 }