use of org.batfish.datamodel.BgpAdvertisement in project batfish by batfish.
the class CiscoGrammarTest method testBgpRemovePrivateAs.
@Test
public void testBgpRemovePrivateAs() throws IOException {
String testrigName = "bgp-remove-private-as";
List<String> configurationNames = ImmutableList.of("r1", "r2", "r3");
Batfish batfish = BatfishTestUtils.getBatfishFromTestrigText(TestrigText.builder().setConfigurationText(TESTRIGS_PREFIX + testrigName, configurationNames).build(), _folder);
Map<String, Configuration> configurations = batfish.loadConfigurations();
Map<Ip, Set<String>> ipOwners = CommonUtil.computeIpOwners(configurations, true);
CommonUtil.initRemoteBgpNeighbors(configurations, ipOwners);
BdpDataPlanePlugin dataPlanePlugin = new BdpDataPlanePlugin();
dataPlanePlugin.initialize(batfish);
// compute and cache the dataPlane
batfish.computeDataPlane(false);
// Check that 1.1.1.1/32 appears on r3
SortedMap<String, SortedMap<String, SortedSet<AbstractRoute>>> routes = dataPlanePlugin.getRoutes(batfish.loadDataPlane());
SortedSet<AbstractRoute> r3Routes = routes.get("r3").get(Configuration.DEFAULT_VRF_NAME);
Set<Prefix> r3Prefixes = r3Routes.stream().map(AbstractRoute::getNetwork).collect(Collectors.toSet());
Prefix r1Loopback = Prefix.parse("1.1.1.1/32");
assertTrue(r3Prefixes.contains(r1Loopback));
// check that private AS is present in path in received 1.1.1.1/32 advert on r2
batfish.initBgpAdvertisements(configurations);
Configuration r2 = configurations.get("r2");
boolean r2HasPrivate = r2.getReceivedEbgpAdvertisements().stream().filter(a -> a.getNetwork().equals(r1Loopback)).toArray(BgpAdvertisement[]::new)[0].getAsPath().getAsSets().stream().flatMap(Collection::stream).anyMatch(AsPath::isPrivateAs);
assertTrue(r2HasPrivate);
// check that private AS is absent from path in received 1.1.1.1/32 advert on r3
Configuration r3 = configurations.get("r3");
boolean r3HasPrivate = r3.getReceivedEbgpAdvertisements().stream().filter(a -> a.getNetwork().equals(r1Loopback)).toArray(BgpAdvertisement[]::new)[0].getAsPath().getAsSets().stream().flatMap(Collection::stream).anyMatch(AsPath::isPrivateAs);
assertFalse(r3HasPrivate);
}
Aggregations