Fix codestyle
[openflowplugin.git] / openflowplugin-impl / src / test / java / org / opendaylight / openflowplugin / impl / statistics / services / AbstractSingleStatsServiceTest.java
1 /*
2  * Copyright (c) 2015 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.impl.statistics.services;
10
11 import org.mockito.Matchers;
12 import org.mockito.Mock;
13 import org.mockito.Mockito;
14 import org.mockito.invocation.InvocationOnMock;
15 import org.mockito.stubbing.Answer;
16 import org.opendaylight.controller.md.sal.binding.api.NotificationPublishService;
17 import org.opendaylight.openflowplugin.api.openflow.device.RequestContext;
18 import org.opendaylight.openflowplugin.api.openflow.statistics.ofpspecific.EventIdentifier;
19 import org.opendaylight.openflowplugin.impl.rpc.AbstractRequestContext;
20 import org.opendaylight.yangtools.yang.common.RpcResult;
21
22 public abstract class AbstractSingleStatsServiceTest extends AbstractStatsServiceTest {
23
24     @Mock
25     protected NotificationPublishService notificationPublishService;
26
27     protected RequestContext<Object> rqContext;
28
29     protected RpcResult<Object> rpcResult;
30
31     @Override
32     public void init() throws Exception {
33         super.init();
34         rqContext = new AbstractRequestContext<Object>(42L) {
35             @Override
36             public void close() {
37                 //NOOP
38             }
39         };
40         final Answer closeRequestFutureAnswer = invocation -> {
41             rqContext.setResult(rpcResult);
42             rqContext.close();
43             return null;
44         };
45
46         Mockito.when(rqContextStack.<Object>createRequestContext()).thenReturn(rqContext);
47         Mockito.doAnswer(closeRequestFutureAnswer).when(multiMsgCollector).endCollecting(null);
48         Mockito.doAnswer(closeRequestFutureAnswer).when(multiMsgCollector)
49                 .endCollecting(Matchers.any(EventIdentifier.class));
50     }
51 }