blob: f51c496b80ea2dbfba72188d5bf252d159cd7975 [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.management.internal.cli.commands;
import static org.apache.geode.test.awaitility.GeodeAwaitility.await;
import static org.assertj.core.api.Assertions.assertThat;
import java.io.File;
import java.util.Properties;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.locks.ReentrantLock;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.TemporaryFolder;
import org.apache.geode.cache.execute.Function;
import org.apache.geode.cache.execute.FunctionContext;
import org.apache.geode.cache.execute.FunctionService;
import org.apache.geode.cache.execute.ResultCollector;
import org.apache.geode.distributed.ConfigurationProperties;
import org.apache.geode.distributed.internal.membership.InternalDistributedMember;
import org.apache.geode.management.internal.cli.i18n.CliStrings;
import org.apache.geode.test.concurrent.FileBasedCountDownLatch;
import org.apache.geode.test.dunit.rules.ClusterStartupRule;
import org.apache.geode.test.dunit.rules.MemberVM;
import org.apache.geode.test.junit.rules.GfshCommandRule;
/**
* Distributed test base for show deadlock command in {@link ShowDeadlockCommand}.
*/
public class ShowDeadlockDistributedTestBase {
private static Thread stuckThread;
private static final ReentrantLock LOCK = new ReentrantLock();
protected MemberVM locator;
private MemberVM server1;
private MemberVM server2;
private File outputFile;
private String showDeadlockCommand;
@Rule
public ClusterStartupRule lsRule = new ClusterStartupRule();
@Rule
public TemporaryFolder temporaryFolder = new TemporaryFolder();
@Rule
public GfshCommandRule gfsh = new GfshCommandRule();
@Before
public void setup() throws Exception {
outputFile = new File(temporaryFolder.getRoot(), "dependency.txt").getAbsoluteFile();
showDeadlockCommand = "show dead-locks --file=" + outputFile.getAbsolutePath();
outputFile.delete();
locator = lsRule.startLocatorVM(0, l -> l.withHttpService());
Properties props = new Properties();
props.setProperty(ConfigurationProperties.SERIALIZABLE_OBJECT_FILTER,
"org.apache.geode.management.internal.cli.commands.ShowDeadlock*");
server1 = lsRule.startServerVM(1, props, locator.getPort());
server2 = lsRule.startServerVM(2, props, locator.getPort());
connect();
}
@After
public final void interruptStuckThreads() throws Exception {
server1.invoke(() -> {
if (stuckThread != null) {
stuckThread.interrupt();
}
stuckThread = null;
});
server2.invoke(() -> {
if (stuckThread != null) {
stuckThread.interrupt();
}
stuckThread = null;
});
// Wait to allow the locks to be released to avoid environment pollution for tests that follow
server1.invoke(() -> {
await().until(() -> !LOCK.isLocked());
});
server2.invoke(() -> {
await().until(() -> !LOCK.isLocked());
});
}
public void connect() throws Exception {
gfsh.connectAndVerify(locator);
}
@Test
public void testNoDeadlock() throws Exception {
gfsh.executeAndAssertThat(showDeadlockCommand).statusIsSuccess();
String commandOutput = gfsh.getGfshOutput();
assertThat(commandOutput).startsWith(CliStrings.SHOW_DEADLOCK__NO__DEADLOCK);
assertThat(outputFile).exists();
}
@Test
public void testDistributedDeadlockWithFunction() throws Exception {
FileBasedCountDownLatch countDownLatch = new FileBasedCountDownLatch(2);
// This thread locks the lock in server1 first, then server2.
lockTheLocks(server1, server2, countDownLatch);
// This thread locks the lock server2 first, then server1.
lockTheLocks(server2, server1, countDownLatch);
await()
.untilAsserted(() -> {
gfsh.executeAndAssertThat(showDeadlockCommand).statusIsSuccess();
String commandOutput = gfsh.getGfshOutput();
assertThat(commandOutput).startsWith(CliStrings.SHOW_DEADLOCK__DEADLOCK__DETECTED);
assertThat(outputFile).exists();
});
}
private void lockTheLocks(MemberVM thisVM, final MemberVM thatVM,
FileBasedCountDownLatch countDownLatch) {
thisVM.invokeAsync(() -> {
LOCK.lock();
countDownLatch.countDown();
countDownLatch.await();
// At this point each VM will hold its own lock.
lockRemoteVM(thatVM);
LOCK.unlock();
});
}
private static void lockRemoteVM(MemberVM vmToLock) {
InternalDistributedMember thatInternalMember = getInternalDistributedMember(vmToLock);
ResultCollector collector =
FunctionService.onMember(thatInternalMember).execute(new LockFunction());
collector.getResult();
}
private static InternalDistributedMember getInternalDistributedMember(MemberVM memberVM) {
return memberVM.getVM().invoke(
() -> ClusterStartupRule.getCache().getInternalDistributedSystem().getDistributedMember());
}
private static class LockFunction implements Function<Object> {
@Override
public void execute(FunctionContext<Object> context) {
stuckThread = Thread.currentThread();
try {
LOCK.tryLock(5, TimeUnit.MINUTES);
LOCK.unlock();
} catch (InterruptedException e) {
if (LOCK.isHeldByCurrentThread()) {
LOCK.unlock();
}
} finally {
context.getResultSender().lastResult(null);
}
}
}
}