Code clean up
[bgpcep.git] / bgp / path-selection-mode / src / test / java / org / opendaylight / protocol / bgp / mode / impl / base / BaseBestPathTest.java
1 /*
2  * Copyright (c) 2016 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
9 package org.opendaylight.protocol.bgp.mode.impl.base;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.junit.Assert.assertTrue;
13 import static org.opendaylight.protocol.bgp.parser.spi.PathIdUtil.NON_PATH_ID_VALUE;
14
15 import com.google.common.primitives.UnsignedInteger;
16 import org.junit.Before;
17 import org.junit.Test;
18 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev180329.PeerId;
19
20 public class BaseBestPathTest {
21     private static final UnsignedInteger ROUTER_ID = UnsignedInteger.valueOf(2130706433);
22     private static final PeerId PEER_ID = new PeerId("bgp://127.0.0.1");
23     private BaseBestPath baseBestPath;
24     private BaseBestPath baseBestPathCopy;
25
26     @Before
27     public void setUp() {
28         final BasePathSelector selector = new BasePathSelector(20L);
29         selector.processPath(BasePathSelectorTest.ROUTER_ID2,
30                 BasePathSelectorTest.createStateFromPrefMedOriginASPath().build());
31         this.baseBestPath = selector.result();
32         this.baseBestPathCopy = selector.result();
33     }
34
35     @Test
36     public void testGetRouterId() {
37         assertEquals(ROUTER_ID, this.baseBestPath.getRouterId());
38     }
39
40     @Test
41     public void testGetPeerId() {
42         assertEquals(PEER_ID, this.baseBestPath.getPeerId());
43     }
44
45     @Test
46     public void testGetPathId() {
47         assertEquals(NON_PATH_ID_VALUE, this.baseBestPath.getPathId());
48     }
49
50     @Test
51     public void testHashCodeAndEqual() {
52         assertTrue(this.baseBestPath.equals(this.baseBestPathCopy)
53                 && this.baseBestPathCopy.equals(this.baseBestPath));
54         assertEquals(this.baseBestPath.hashCode(), this.baseBestPathCopy.hashCode());
55     }
56
57     @Test
58     public void testToString() {
59         assertTrue(this.baseBestPath.toString().equals(this.baseBestPathCopy.toString()));
60     }
61 }