Fix findbug and checkstyle issues
[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
14 import com.google.common.primitives.UnsignedInteger;
15 import org.junit.Before;
16 import org.junit.Test;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev171207.PeerId;
18
19 public class BaseBestPathTest {
20     private static final long PATH_ID = 0;
21     private BaseBestPath baseBestPath;
22     private static final UnsignedInteger ROUTER_ID = UnsignedInteger.valueOf(2130706433);
23     private static final PeerId PEER_ID = new PeerId("bgp://127.0.0.1");
24     private BaseBestPath baseBestPathCopy;
25
26     @Before
27     public void setUp() throws Exception {
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() throws Exception {
37         assertEquals(ROUTER_ID, this.baseBestPath.getRouterId());
38     }
39
40     @Test
41     public void testGetPeerId() throws Exception {
42         assertEquals(PEER_ID, this.baseBestPath.getPeerId());
43     }
44
45     @Test
46     public void testGetPathId() throws Exception {
47         assertEquals(PATH_ID, this.baseBestPath.getPathId());
48     }
49
50     @Test
51     public void testHashCodeAndEqual() throws Exception {
52         assertTrue(this.baseBestPath.equals(this.baseBestPathCopy)
53                 && this.baseBestPathCopy.equals(this.baseBestPath));
54         assertTrue(this.baseBestPath.hashCode() == this.baseBestPathCopy.hashCode());
55         assertTrue(this.baseBestPath.getPathId() == PATH_ID);
56     }
57
58     @Test
59     public void testToString() throws Exception {
60         assertTrue(this.baseBestPath.toString().equals(this.baseBestPathCopy.toString()));
61     }
62 }