BUG-8494: do not attempt to reconnect ReconnectingClientConnection
[controller.git] / opendaylight / md-sal / cds-access-client / src / test / java / org / opendaylight / controller / cluster / access / client / ConnectedClientConnectionTest.java
1 /*
2  * Copyright (c) 2017 Pantheon Technologies s.r.o. 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.controller.cluster.access.client;
9
10 import static org.mockito.Matchers.any;
11 import static org.mockito.Matchers.same;
12 import static org.mockito.Mockito.mock;
13 import static org.mockito.Mockito.verify;
14
15 import java.util.Optional;
16 import java.util.function.Consumer;
17 import org.junit.Assert;
18 import org.junit.Test;
19 import org.opendaylight.controller.cluster.access.ABIVersion;
20 import org.opendaylight.controller.cluster.access.concepts.RequestException;
21 import org.opendaylight.controller.cluster.access.concepts.Response;
22
23 public class ConnectedClientConnectionTest
24         extends AbstractClientConnectionTest<ConnectedClientConnection<BackendInfo>, BackendInfo> {
25
26     @Test
27     public void testCheckTimeoutConnectionTimedout() throws Exception {
28         final Consumer<Response<?, ?>> callback = mock(Consumer.class);
29         connection.sendRequest(createRequest(replyToProbe.ref()), callback);
30         final long now = context.ticker().read() + ConnectedClientConnection.BACKEND_ALIVE_TIMEOUT_NANOS;
31         final Optional<Long> timeout = connection.checkTimeout(now);
32         Assert.assertNull(timeout);
33     }
34
35     @Override
36     protected ConnectedClientConnection<BackendInfo> createConnection() {
37         final BackendInfo backend = new BackendInfo(backendProbe.ref(), 0L, ABIVersion.BORON, 10);
38         return new ConnectedClientConnection<>(context, 0L, backend);
39     }
40
41     @Override
42     @Test
43     public void testReconnectConnection() throws Exception {
44         final ClientActorBehavior<BackendInfo> behavior = mock(ClientActorBehavior.class);
45         connection.lockedReconnect(behavior, mock(RequestException.class));
46         verify(behavior).reconnectConnection(same(connection), any(ReconnectingClientConnection.class));
47     }
48
49 }