Merge "Bug 5577 Retry mechanism"
[openflowplugin.git] / applications / forwardingrules-sync / src / test / java / org / opendaylight / openflowplugin / applications / frsync / impl / SyncReactorGuardDecoratorTest.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.openflowplugin.applications.frsync.impl;
10
11 import com.google.common.util.concurrent.Futures;
12 import org.junit.Before;
13 import org.junit.Test;
14 import org.junit.runner.RunWith;
15 import org.mockito.Matchers;
16 import org.mockito.Mock;
17 import org.mockito.Mockito;
18 import org.mockito.runners.MockitoJUnitRunner;
19 import org.opendaylight.controller.md.sal.common.api.data.LogicalDatastoreType;
20 import org.opendaylight.openflowplugin.applications.frsync.util.SemaphoreKeeperGuavaImpl;
21 import org.opendaylight.yang.gen.v1.urn.opendaylight.flow.inventory.rev130819.FlowCapableNode;
22 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.NodeId;
23 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.Nodes;
24 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.Node;
25 import org.opendaylight.yang.gen.v1.urn.opendaylight.inventory.rev130819.nodes.NodeKey;
26 import org.opendaylight.yangtools.yang.binding.InstanceIdentifier;
27
28 /**
29  * Test for {@link SyncReactorGuardDecorator}.
30  */
31 @RunWith(MockitoJUnitRunner.class)
32 public class SyncReactorGuardDecoratorTest {
33
34     private static final NodeId NODE_ID = new NodeId("test-node");
35     private SyncReactorGuardDecorator reactor;
36     private InstanceIdentifier<FlowCapableNode> fcNodePath;
37     private final LogicalDatastoreType dsType = LogicalDatastoreType.CONFIGURATION;
38
39     @Mock
40     private SyncReactorRetryDecorator delegate;
41     @Mock
42     private FlowCapableNode fcConfigNode;
43     @Mock
44     private FlowCapableNode fcOperationalNode;
45
46     @Before
47     public void setUp() throws Exception {
48         final SemaphoreKeeperGuavaImpl semaphoreKeeper = new SemaphoreKeeperGuavaImpl<InstanceIdentifier<FlowCapableNode>>(1, true);
49         reactor = new SyncReactorGuardDecorator(delegate, semaphoreKeeper);
50         InstanceIdentifier<Node> nodePath = InstanceIdentifier.create(Nodes.class).child(Node.class, new NodeKey(NODE_ID));
51         fcNodePath = nodePath.augmentation(FlowCapableNode.class);
52
53         final Node operationalNode = Mockito.mock(Node.class);
54         Mockito.when(operationalNode.getId()).thenReturn(NODE_ID);
55         Mockito.when(operationalNode.getAugmentation(FlowCapableNode.class)).thenReturn(fcOperationalNode);
56     }
57
58     @Test
59     public void testSyncupSuccess() throws Exception {
60         Mockito.when(delegate.syncup(Matchers.<InstanceIdentifier<FlowCapableNode>>any(), Matchers.<FlowCapableNode>any(),
61                 Matchers.<FlowCapableNode>any(), Matchers.<LogicalDatastoreType>any())).thenReturn(Futures.immediateFuture(Boolean.TRUE));
62
63         reactor.syncup(fcNodePath, fcConfigNode, fcOperationalNode, dsType);
64
65         Mockito.verify(delegate).syncup(fcNodePath, fcConfigNode, fcOperationalNode, dsType);
66         Mockito.verifyNoMoreInteractions(delegate);
67     }
68
69     @Test
70     public void testSyncupFail() throws Exception {
71         Mockito.when(delegate.syncup(Matchers.<InstanceIdentifier<FlowCapableNode>>any(), Matchers.<FlowCapableNode>any(),
72                 Matchers.<FlowCapableNode>any(), Matchers.<LogicalDatastoreType>any())).thenReturn(Futures.immediateFailedFuture(new Exception()));
73
74         reactor.syncup(fcNodePath, fcConfigNode, fcOperationalNode, dsType);
75
76         Mockito.verify(delegate).syncup(fcNodePath, fcConfigNode, fcOperationalNode, dsType);
77         Mockito.verifyNoMoreInteractions(delegate);
78
79     }
80
81 }