BGPCEP-754: Rework EffectiveRibInWriter
[bgpcep.git] / bgp / openconfig-rp-statement / src / test / java / org / opendaylight / protocol / bgp / openconfig / routing / policy / statement / SetCommunityTest.java
index 2ba1b3b3169c128fba9ae19c8b11366bdbbafdd8..6021ceaea114f295695fabdade0188009b09528e 100644 (file)
@@ -11,11 +11,7 @@ package org.opendaylight.protocol.bgp.openconfig.routing.policy.statement;
 import static org.junit.Assert.assertEquals;
 import static org.mockito.Mockito.doReturn;
 import static org.opendaylight.protocol.bgp.openconfig.routing.policy.spi.registry.RouteAttributeContainer.routeAttributeContainerFalse;
-import static org.opendaylight.protocol.bgp.openconfig.routing.policy.statement.ExportAttributeTestUtil.CLUSTER;
-import static org.opendaylight.protocol.bgp.openconfig.routing.policy.statement.ExportAttributeTestUtil.IPV4;
-import static org.opendaylight.protocol.bgp.openconfig.routing.policy.statement.ExportAttributeTestUtil.LOCAL_AS;
 
-import com.google.common.collect.ImmutableMap;
 import java.util.Arrays;
 import java.util.Collections;
 import java.util.List;
@@ -27,13 +23,10 @@ import org.opendaylight.protocol.bgp.openconfig.routing.policy.spi.registry.Rout
 import org.opendaylight.protocol.bgp.rib.spi.policy.BGPRouteEntryExportParameters;
 import org.opendaylight.yang.gen.v1.http.openconfig.net.yang.routing.policy.rev151009.routing.policy.top.routing.policy.policy.definitions.policy.definition.statements.Statement;
 import org.opendaylight.yang.gen.v1.urn.ietf.params.xml.ns.yang.ietf.inet.types.rev130715.AsNumber;
-import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.inet.rev171207.ipv4.routes.ipv4.routes.Ipv4Route;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev171207.path.attributes.Attributes;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev171207.path.attributes.AttributesBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.message.rev171207.path.attributes.attributes.CommunitiesBuilder;
 import org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.bgp.rib.rev171207.PeerRole;
-import org.opendaylight.yangtools.yang.common.QName;
-import org.opendaylight.yangtools.yang.data.api.YangInstanceIdentifier;
 
 public class SetCommunityTest extends AbstractStatementRegistryConsumerTest {
     private final Attributes multipleCom = new AttributesBuilder().setCommunities(Arrays.asList(
@@ -57,9 +50,6 @@ public class SetCommunityTest extends AbstractStatementRegistryConsumerTest {
 
     @Test
     public void testInlineAdd() {
-        doReturn(new YangInstanceIdentifier.NodeIdentifierWithPredicates(Ipv4Route.QNAME,
-                ImmutableMap.of(QName.create(Ipv4Route.QNAME, "prefix").intern(), "10.3.191.0/22")))
-                .when(this.exportParameters).getRouteId();
         Statement statement = this.basicStatements.stream()
                 .filter(st -> st.getName().equals("set-community-inline-add-test")).findFirst().get();
         RouteAttributeContainer attributeContainer = routeAttributeContainerFalse(
@@ -75,9 +65,6 @@ public class SetCommunityTest extends AbstractStatementRegistryConsumerTest {
 
     @Test
     public void testInlineReplace() {
-        doReturn(new YangInstanceIdentifier.NodeIdentifierWithPredicates(Ipv4Route.QNAME,
-                ImmutableMap.of(QName.create(Ipv4Route.QNAME, "prefix").intern(), "10.3.191.0/22")))
-                .when(this.exportParameters).getRouteId();
         Statement statement = this.basicStatements.stream()
                 .filter(st -> st.getName().equals("set-community-inline-replace-test")).findFirst().get();
         RouteAttributeContainer attributeContainer = routeAttributeContainerFalse(
@@ -93,9 +80,6 @@ public class SetCommunityTest extends AbstractStatementRegistryConsumerTest {
 
     @Test
     public void testInlineRemove() {
-        doReturn(new YangInstanceIdentifier.NodeIdentifierWithPredicates(Ipv4Route.QNAME,
-                ImmutableMap.of(QName.create(Ipv4Route.QNAME, "prefix").intern(), "10.3.191.0/22")))
-                .when(this.exportParameters).getRouteId();
         Statement statement = this.basicStatements.stream()
                 .filter(st -> st.getName().equals("set-community-inline-remove-test")).findFirst().get();
 
@@ -111,9 +95,6 @@ public class SetCommunityTest extends AbstractStatementRegistryConsumerTest {
 
     @Test
     public void testReferenceAdd() {
-        doReturn(new YangInstanceIdentifier.NodeIdentifierWithPredicates(Ipv4Route.QNAME,
-                ImmutableMap.of(QName.create(Ipv4Route.QNAME, "prefix").intern(), "10.3.191.0/22")))
-                .when(this.exportParameters).getRouteId();
         Statement statement = this.basicStatements.stream()
                 .filter(st -> st.getName().equals("set-community-reference-add-test")).findFirst().get();
         RouteAttributeContainer attributeContainer = routeAttributeContainerFalse(
@@ -129,9 +110,6 @@ public class SetCommunityTest extends AbstractStatementRegistryConsumerTest {
 
     @Test
     public void testReferenceReplace() {
-        doReturn(new YangInstanceIdentifier.NodeIdentifierWithPredicates(Ipv4Route.QNAME,
-                ImmutableMap.of(QName.create(Ipv4Route.QNAME, "prefix").intern(), "10.3.191.0/22")))
-                .when(this.exportParameters).getRouteId();
         Statement statement = this.basicStatements.stream()
                 .filter(st -> st.getName().equals("set-community-reference-replace-test")).findFirst().get();
         RouteAttributeContainer attributeContainer = routeAttributeContainerFalse(
@@ -147,9 +125,6 @@ public class SetCommunityTest extends AbstractStatementRegistryConsumerTest {
 
     @Test
     public void testReferenceRemove() {
-        doReturn(new YangInstanceIdentifier.NodeIdentifierWithPredicates(Ipv4Route.QNAME,
-                ImmutableMap.of(QName.create(Ipv4Route.QNAME, "prefix").intern(), "10.3.191.0/22")))
-                .when(this.exportParameters).getRouteId();
         Statement statement = this.basicStatements.stream()
                 .filter(st -> st.getName().equals("set-community-reference-remove-test")).findFirst().get();