b0662be01e2e0b7fc211e713712f6b636dd2ae40
[bgpcep.git] / bgp / rib-impl / src / test / java / org / opendaylight / protocol / bgp / rib / impl / AddPathBasePathsTest.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.rib.impl;
10
11 import static org.junit.Assert.assertEquals;
12 import static org.opendaylight.protocol.util.CheckUtil.checkReceivedMessages;
13 import static org.opendaylight.protocol.util.CheckUtil.waitFutureSuccess;
14
15 import com.google.common.collect.ImmutableMap;
16 import io.netty.channel.Channel;
17 import io.netty.channel.ChannelFuture;
18 import java.net.InetSocketAddress;
19 import java.util.Map;
20 import java.util.concurrent.ExecutionException;
21 import org.junit.After;
22 import org.junit.Before;
23 import org.junit.Test;
24 import org.opendaylight.protocol.bgp.mode.api.PathSelectionMode;
25 import org.opendaylight.protocol.bgp.mode.impl.base.BasePathSelectionModeFactory;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev171207.open.message.BgpParameters;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev180329.PeerRole;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev180329.RibId;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev180329.rib.TablesKey;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.BgpId;
31 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.Ipv4AddressFamily;
32 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.UnicastSubsequentAddressFamily;
33
34 public class AddPathBasePathsTest extends AbstractAddPathTest {
35     private RIBImpl ribImpl;
36     private Channel serverChannel;
37
38     @Before
39     public void setUp() throws Exception {
40         super.setUp();
41         final TablesKey tk = new TablesKey(Ipv4AddressFamily.class, UnicastSubsequentAddressFamily.class);
42         final Map<TablesKey, PathSelectionMode> pathTables = ImmutableMap.of(tk,
43             BasePathSelectionModeFactory.createBestPathSelectionStrategy(this.peerTracker));
44
45         this.ribImpl = new RIBImpl(new RibId("test-rib"), AS_NUMBER, new BgpId(RIB_ID), this.ribExtension,
46                 this.serverDispatcher, this.codecsRegistry, getDomBroker(), getDataBroker(), this.policies,
47                 this.peerTracker, TABLES_TYPE, pathTables);
48         this.ribImpl.instantiateServiceInstance();
49         this.ribImpl.onGlobalContextUpdated(this.schemaContext);
50         final ChannelFuture channelFuture = this.serverDispatcher.createServer(new InetSocketAddress(RIB_ID, PORT));
51         waitFutureSuccess(channelFuture);
52         this.serverChannel = channelFuture.channel();
53     }
54
55     @After
56     public void tearDown() throws ExecutionException, InterruptedException {
57         waitFutureSuccess(this.serverChannel.close());
58         super.tearDown();
59     }
60     /*
61     * Base-Paths
62     *                                            ___________________
63     *                                           | ODL BGP 127.0.0.1 |
64     * [peer://127.0.0.2; p1, lp100] --(iBGP)--> |                   | --(RR-client, non add-path) --> [Peer://127.0.0.5; (p1, lp100), (p1, lp1200)]
65     * [peer://127.0.0.3; p1, lp200] --(iBGP)--> |                   |
66     * [peer://127.0.0.4; p1, lp50] --(iBGP)-->  |                   | --(eBgp, non add-path) --> [Peer://127.0.0.6; (p1, path-id1, lp100), (p1, path-id2, pl50), (p1, path-id3, pl200)]
67     * [peer://127.0.0.2; p1, lp20] --(iBGP)-->  |___________________|
68     * p1 = 1.1.1.1/32
69     */
70     @Test
71     public void testUseCase1() throws Exception {
72         final BgpParameters nonAddPathParams = createParameter(false);
73
74         configurePeer(PEER1, this.ribImpl, nonAddPathParams, PeerRole.Ibgp, this.serverRegistry);
75         final BGPSessionImpl session1 = createPeerSession(PEER1, nonAddPathParams, new SimpleSessionListener());
76
77         configurePeer(PEER2, this.ribImpl, nonAddPathParams, PeerRole.Ibgp, this.serverRegistry);
78         final BGPSessionImpl session2 = createPeerSession(PEER2, nonAddPathParams, new SimpleSessionListener());
79
80         configurePeer(PEER3, this.ribImpl, nonAddPathParams, PeerRole.Ibgp, this.serverRegistry);
81         final BGPSessionImpl session3 = createPeerSession(PEER3,nonAddPathParams, new SimpleSessionListener());
82
83         final SimpleSessionListener listener4 = new SimpleSessionListener();
84         configurePeer(PEER4, this.ribImpl, nonAddPathParams, PeerRole.RrClient, this.serverRegistry);
85         final BGPSessionImpl session4 = createPeerSession(PEER4, nonAddPathParams, listener4);
86
87         final SimpleSessionListener listener5 = new SimpleSessionListener();
88         configurePeer(PEER5, this.ribImpl, nonAddPathParams, PeerRole.Ebgp, this.serverRegistry);
89         final BGPSessionImpl session5 = createPeerSession(PEER5, nonAddPathParams, listener5);
90         checkPeersPresentOnDataStore(5);
91
92         //new best route so far
93         sendRouteAndCheckIsOnLocRib(session1, PREFIX1, 100, 1);
94         checkReceivedMessages(listener4, 1);
95         checkReceivedMessages(listener5, 1);
96         assertEquals(UPD_NA_100, listener4.getListMsg().get(0));
97         assertEquals(UPD_NA_100_EBGP, listener5.getListMsg().get(0));
98
99         //the second best route
100         sendRouteAndCheckIsOnLocRib(session2, PREFIX1, 100, 1);
101         checkReceivedMessages(listener4, 1);
102         checkReceivedMessages(listener5, 1);
103
104         //new best route
105         sendRouteAndCheckIsOnLocRib(session3, PREFIX1, 200, 1);
106         checkReceivedMessages(listener4, 2);
107         checkReceivedMessages(listener5, 2);
108         assertEquals(UPD_NA_200, listener4.getListMsg().get(1));
109         assertEquals(UPD_NA_200_EBGP, listener5.getListMsg().get(1));
110
111         final SimpleSessionListener listener6 = new SimpleSessionListener();
112         configurePeer(PEER6, this.ribImpl, nonAddPathParams, PeerRole.RrClient, this.serverRegistry);
113         final BGPSessionImpl session6 = createPeerSession(PEER6, nonAddPathParams, listener6);
114
115         checkPeersPresentOnDataStore(6);
116         checkReceivedMessages(listener6, 1);
117         assertEquals(UPD_NA_200, listener6.getListMsg().get(0));
118         session6.close();
119         checkPeersPresentOnDataStore(5);
120
121         //best route updated to be the worse one
122         sendRouteAndCheckIsOnLocRib(session3, PREFIX1, 20, 1);
123         checkReceivedMessages(listener4, 3);
124         checkReceivedMessages(listener5, 3);
125         assertEquals(UPD_NA_100, listener4.getListMsg().get(2));
126         assertEquals(UPD_NA_100_EBGP, listener5.getListMsg().get(2));
127
128         //Remove second best, no advertisement should be done
129         sendWithdrawalRouteAndCheckIsOnLocRib(session2, PREFIX1, 50, 1);
130         checkReceivedMessages(listener4, 3);
131         checkReceivedMessages(listener5, 3);
132
133         //Remove best, 1 advertisement
134         sendWithdrawalRouteAndCheckIsOnLocRib(session1, PREFIX1, 100, 1);
135         checkReceivedMessages(listener4, 4);
136         checkReceivedMessages(listener5, 4);
137
138         //Remove best, 1 withdrawal
139         sendWithdrawalRouteAndCheckIsOnLocRib(session3, PREFIX1, 20, 0);
140         checkReceivedMessages(listener4, 5);
141         checkReceivedMessages(listener5, 5);
142
143         session1.close();
144         session2.close();
145         session3.close();
146         session4.close();
147         session5.close();
148     }
149 }