0a3c3a1e7c3759ebad9edfcfffc60d470a111aea
[bgpcep.git] / bgp / rib-impl / src / test / java / org / opendaylight / protocol / bgp / rib / impl / AddPathAllPathsTest.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 package org.opendaylight.protocol.bgp.rib.impl;
9
10 import static org.junit.Assert.assertEquals;
11
12 import com.google.common.collect.ImmutableList;
13 import com.google.common.collect.ImmutableMap;
14 import io.netty.channel.Channel;
15 import java.net.InetSocketAddress;
16 import java.util.List;
17 import java.util.Map;
18 import org.junit.Test;
19 import org.opendaylight.protocol.bgp.mode.api.PathSelectionMode;
20 import org.opendaylight.protocol.bgp.mode.impl.add.all.paths.AllPathSelection;
21 import org.opendaylight.protocol.bgp.parser.BgpTableTypeImpl;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.Update;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev130919.open.message.BgpParameters;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.multiprotocol.rev130919.BgpTableType;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev130925.PeerRole;
26 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev130925.RibId;
27 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev130925.rib.TablesKey;
28 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.BgpId;
29 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.Ipv4AddressFamily;
30 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.types.rev130919.UnicastSubsequentAddressFamily;
31 import org.opendaylight.yangtools.yang.binding.Notification;
32
33 public class AddPathAllPathsTest extends AbstractAddPathTest {
34     /*
35      * All-Paths
36      *                                            ___________________
37      *                                           | ODL BGP 127.0.0.1 |
38      * [peer://127.0.0.2; p1, lp100] --(iBGP)--> |                   | --(RR-client, non add-path) --> [Peer://127.0.0.5; (p1, lp100), (p1, lp1200)]
39      * [peer://127.0.0.3; p1, lp200] --(iBGP)--> |                   |
40      * [peer://127.0.0.4; p1, lp50] --(iBGP)-->  |                   | --(RR-client, add-path) --> [Peer://127.0.0.6; (p1, path-id1, lp100), (p1, path-id2, pl50), (p1, path-id3, pl200), (p1, path-id4, pl20)]
41      * [peer://127.0.0.2; p1, lp20] --(iBGP)-->  |___________________|
42      * p1 = 1.1.1.1/32
43      */
44     @Test
45     public void testUseCase1() throws Exception {
46
47         final List<BgpTableType> tables = ImmutableList.of(new BgpTableTypeImpl(Ipv4AddressFamily.class, UnicastSubsequentAddressFamily.class));
48         final TablesKey tk = new TablesKey(Ipv4AddressFamily.class, UnicastSubsequentAddressFamily.class);
49         final Map<TablesKey, PathSelectionMode> pathTables = ImmutableMap.of(tk, new AllPathSelection());
50
51
52         final RIBImpl ribImpl = new RIBImpl(this.clusterSingletonServiceProvider, new RibId("test-rib"), AS_NUMBER, new BgpId(RIB_ID), null, this.ribExtension,
53                 this.dispatcher, this.mappingService.getCodecFactory(), getDomBroker(), tables, pathTables, this.ribExtension.getClassLoadingStrategy(), null);
54
55         ribImpl.instantiateServiceInstance();
56         ribImpl.onGlobalContextUpdated(this.schemaContext);
57
58         this.dispatcher.createServer(StrictBGPPeerRegistry.GLOBAL, new InetSocketAddress(RIB_ID, PORT)).sync();
59         Thread.sleep(1000);
60
61
62         final BGPHandlerFactory hf = new BGPHandlerFactory(this.context.getMessageRegistry());
63         final BgpParameters nonAddPathParams = createParameter(false);
64         final BgpParameters addPathParams = createParameter(true);
65
66         final Channel session1 = createPeerSession(PEER1, PeerRole.Ibgp, nonAddPathParams, ribImpl, hf, new SimpleSessionListener());
67         final Channel session2 = createPeerSession(PEER2, PeerRole.Ibgp, nonAddPathParams, ribImpl, hf, new SimpleSessionListener());
68         final Channel session3 = createPeerSession(PEER3, PeerRole.Ibgp, nonAddPathParams, ribImpl, hf, new SimpleSessionListener());
69         final SimpleSessionListener listener4 = new SimpleSessionListener();
70         final Channel session4 = createPeerSession(PEER4, PeerRole.RrClient, nonAddPathParams, ribImpl, hf, listener4);
71         final SimpleSessionListener listener5 = new SimpleSessionListener();
72         final Channel session5 = createPeerSession(PEER5, PeerRole.RrClient, addPathParams, ribImpl, hf, listener5);
73         Thread.sleep(1000);
74         checkPeersPresentOnDataStore(5);
75
76         //the best route
77         sendRouteAndCheckIsOnDS(session1, PREFIX1, 100, 1);
78         assertEquals(1, listener4.getListMsg().size());
79         assertEquals(1, listener5.getListMsg().size());
80         assertEquals(UPD_100, listener5.getListMsg().get(0));
81
82         //the second best route
83         sendRouteAndCheckIsOnDS(session2, PREFIX1, 50, 2);
84         assertEquals(1, listener4.getListMsg().size());
85         assertEquals(2, listener5.getListMsg().size());
86         assertEquals(UPD_50, listener5.getListMsg().get(1));
87
88         //new best route
89         sendRouteAndCheckIsOnDS(session3, PREFIX1, 200, 3);
90         assertEquals(2, listener4.getListMsg().size());
91         assertEquals(3, listener5.getListMsg().size());
92         assertEquals(UPD_200, listener5.getListMsg().get(2));
93
94         //the worst route
95         sendRouteAndCheckIsOnDS(session1, PREFIX1, 20, 3);
96         assertEquals(2, listener4.getListMsg().size());
97         assertEquals(4, listener5.getListMsg().size());
98         assertEquals(UPD_200.getAttributes().getLocalPref(), ((Update) listener4.getListMsg().get(1)).getAttributes().getLocalPref());
99         assertEquals(UPD_20, listener5.getListMsg().get(3));
100
101         session1.close();
102         session2.close();
103         session3.close();
104         session4.close();
105         session5.close();
106     }
107 }