blob: 0d21cd3c31bf6bd7e200a63accc5a18dcc3c18fe [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one or more contributor license
* agreements. See the NOTICE file distributed with this work for additional information regarding
* copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance with the License. You may obtain a
* copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
package org.apache.geode.internal.cache.tier.sockets;
import static java.util.concurrent.TimeUnit.SECONDS;
import static org.assertj.core.api.Assertions.assertThatCode;
import static org.junit.Assert.assertNull;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.doNothing;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.when;
import java.net.InetAddress;
import java.net.Socket;
import java.util.concurrent.CompletableFuture;
import org.junit.Rule;
import org.junit.Test;
import org.apache.geode.distributed.DistributedMember;
import org.apache.geode.internal.Version;
import org.apache.geode.internal.cache.InternalCache;
import org.apache.geode.internal.net.SocketCloser;
import org.apache.geode.test.junit.rules.ExecutorServiceRule;
import org.apache.geode.test.junit.rules.ServerStarterRule;
public class CacheClientProxyTest {
@Rule
public ServerStarterRule serverRule = new ServerStarterRule().withAutoStart();
@Rule
public ExecutorServiceRule executorServiceRule = new ExecutorServiceRule();
@Test
public void closeSocketShouldBeAtomic() {
final CacheServerStats stats = mock(CacheServerStats.class);
doNothing().when(stats).incCurrentQueueConnections();
final InternalCache cache = serverRule.getCache();
final CacheClientNotifier ccn = mock(CacheClientNotifier.class);
final SocketCloser sc = mock(SocketCloser.class);
when(ccn.getCache()).thenReturn(cache);
when(ccn.getAcceptorStats()).thenReturn(stats);
when(ccn.getSocketCloser()).thenReturn(sc);
final Socket socket = mock(Socket.class);
final InetAddress address = mock(InetAddress.class);
when(socket.getInetAddress()).thenReturn(address);
when(address.getHostAddress()).thenReturn("localhost");
doNothing().when(sc).asyncClose(any(), eq("localhost"), eq(null));
final ClientProxyMembershipID proxyID = mock(ClientProxyMembershipID.class);
final DistributedMember member = cache.getDistributedSystem().getDistributedMember();
when(proxyID.getDistributedMember()).thenReturn(member);
CacheClientProxy proxy = new CacheClientProxy(ccn, socket, proxyID, true,
Handshake.CONFLATION_DEFAULT, Version.CURRENT, 1L, true,
null, null);
CompletableFuture<Void> result1 = executorServiceRule.runAsync(() -> proxy.close());
CompletableFuture<Void> result2 = executorServiceRule.runAsync(() -> proxy.close());
CompletableFuture<Void> result3 = executorServiceRule.runAsync(() -> proxy.close());
CompletableFuture.allOf(result1, result2, result3).join();
assertThatCode(() -> result1.get(60, SECONDS)).doesNotThrowAnyException();
assertThatCode(() -> result2.get(60, SECONDS)).doesNotThrowAnyException();
assertThatCode(() -> result3.get(60, SECONDS)).doesNotThrowAnyException();
verify(ccn, times(2)).getSocketCloser();
assertNull(proxy._remoteHostAddress);
}
@Test
public void closeSocket1000Times() {
// run it for 1000 times to introduce conflicts between threads
for (int i = 0; i < 1000; i++) {
closeSocketShouldBeAtomic();
}
}
}