Convert DataChangeListeners to DataTreeChangeListeners
[groupbasedpolicy.git] / renderers / faas / src / test / java / org / opendaylight / groupbasedpolicy / renderer / faas / MockFaasSubnetManagerListener.java
1 /*
2  * Copyright (c) 2016 Huawei Technologies 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.groupbasedpolicy.renderer.faas;
9
10 import static org.junit.Assert.assertTrue;
11
12 import java.util.concurrent.Executor;
13 import org.opendaylight.controller.md.sal.binding.api.DataBroker;
14 import org.opendaylight.yang.gen.v1.urn.opendaylight.faas.logical.faas.common.rev151013.Uuid;
15 import org.opendaylight.yang.gen.v1.urn.opendaylight.faas.logical.faas.subnets.rev151013.subnets.container.subnets.SubnetBuilder;
16 import org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.common.rev140421.TenantId;
17 import org.opendaylight.yang.gen.v1.urn.opendaylight.groupbasedpolicy.policy.rev140421.tenants.tenant.forwarding.context.Subnet;
18 import org.opendaylight.yangtools.yang.binding.DataObject;
19
20 public class MockFaasSubnetManagerListener extends FaasSubnetManagerListener {
21
22     Subnet expectedGbpSubnet;
23     private Uuid expectedFaasSubnetId;
24
25     public MockFaasSubnetManagerListener(DataBroker dataProvider, TenantId gbpTenantId, Uuid faasTenantId,
26             Executor executor) {
27         super(dataProvider, gbpTenantId, faasTenantId, executor);
28     }
29
30     // *******************************************************
31     // Test Stubs
32     // *******************************************************
33     @Override
34     protected SubnetBuilder initSubnetBuilder(Subnet subnet) {
35         if (expectedGbpSubnet != null) {
36             assertTrue("FaasSubnetManagerListener.initSubnetBuilder", expectedGbpSubnet.equals(subnet));
37         }
38         SubnetBuilder builder = new SubnetBuilder();
39         builder.setUuid(expectedFaasSubnetId);
40         return builder;
41     }
42
43     // *******************************************************
44     // The following Methods are to input test data
45     // *******************************************************
46     public void setExpectedFaasSubnetId(Uuid expectedFaasSubnetId) {
47         this.expectedFaasSubnetId = expectedFaasSubnetId;
48     }
49
50     public void setExpectedGbpSubnet(DataObject obj) {
51         expectedGbpSubnet = (Subnet) obj;
52     }
53 }