Revert "Nodetool ring testing"

This reverts commit c54da9e243.
This commit is contained in:
Brandon Williams 2020-10-17 15:46:18 -05:00
parent 4adb8a5e07
commit fde6600a52
4 changed files with 16 additions and 262 deletions

View File

@ -18,9 +18,7 @@
~ under the License.
-->
<project basedir="." default="jar" name="apache-cassandra"
xmlns:artifact="antlib:org.apache.maven.artifact.ant"
xmlns:if="ant:if"
xmlns:unless="ant:unless">
xmlns:artifact="antlib:org.apache.maven.artifact.ant">
<property environment="env"/>
<property file="build.properties" />
<property file="build.properties.default" />
@ -1612,8 +1610,7 @@
-->
<target name="testsome" depends="build-test" description="Execute specific unit tests" >
<testmacro inputdir="${test.unit.src}" timeout="${test.timeout}">
<test unless:blank="${test.methods}" name="${test.name}" methods="${test.methods}" outfile="build/test/output/TEST-${test.name}-${test.methods}"/>
<test if:blank="${test.methods}" name="${test.name}" outfile="build/test/output/TEST-${test.name}"/>
<test name="${test.name}" methods="${test.methods}" outfile="build/test/output/TEST-${test.name}-${test.methods}"/>
<jvmarg value="-Dlegacy-sstable-root=${test.data}/legacy-sstables"/>
<jvmarg value="-Dinvalid-legacy-sstable-root=${test.data}/invalid-legacy-sstables"/>
<jvmarg value="-Dcassandra.ring_delay_ms=1000"/>
@ -1627,8 +1624,7 @@
-->
<target name="long-testsome" depends="build-test" description="Execute specific long unit tests" >
<testmacro inputdir="${test.long.src}" timeout="${test.long.timeout}">
<test unless:blank="${test.methods}" name="${test.name}" methods="${test.methods}"/>
<test if:blank="${test.methods}" name="${test.name}"/>
<test name="${test.name}" methods="${test.methods}"/>
<jvmarg value="-Dcassandra.ring_delay_ms=1000"/>
<jvmarg value="-Dcassandra.tolerate_sstable_size=true"/>
</testmacro>
@ -1639,8 +1635,7 @@
-->
<target name="burn-testsome" depends="build-test" description="Execute specific burn unit tests" >
<testmacro inputdir="${test.burn.src}" timeout="${test.burn.timeout}">
<test unless:blank="${test.methods}" name="${test.name}" methods="${test.methods}"/>
<test if:blank="${test.methods}" name="${test.name}"/>
<test name="${test.name}" methods="${test.methods}"/>
<jvmarg value="-Dlogback.configurationFile=test/conf/logback-burntest.xml"/>
</testmacro>
</target>
@ -2132,8 +2127,7 @@
-->
<target name="test-jvm-dtest-some" depends="build-test" description="Execute some in-jvm dtests">
<testmacro inputdir="${test.distributed.src}" timeout="${test.distributed.timeout}" forkmode="once" showoutput="true">
<test unless:blank="${test.methods}" name="${test.name}" methods="${test.methods}" outfile="build/test/output/TEST-${test.name}-${test.methods}"/>
<test if:blank="${test.methods}" name="${test.name}" outfile="build/test/output/TEST-${test.name}"/>
<test name="${test.name}" methods="${test.methods}" outfile="build/test/output/TEST-${test.name}-${test.methods}"/>
<jvmarg value="-Dlogback.configurationFile=test/conf/logback-dtest.xml"/>
<jvmarg value="-Dcassandra.ring_delay_ms=10000"/>
<jvmarg value="-Dcassandra.tolerate_sstable_size=true"/>

View File

@ -244,9 +244,7 @@ public class Ring extends NodeToolCmd
for (HostStatWithPort stat : hoststats)
{
// Remove extra '/' from address
String addressNPort = stat.endpointWithPort.toString().replaceAll("^/", "");
tokens.addAll(endpointsToTokens.get(addressNPort));
tokens.addAll(endpointsToTokens.get(stat.endpoint.toString()));
lastToken = tokens.get(tokens.size() - 1);
}

View File

@ -1,170 +0,0 @@
/*
* 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.cassandra.distributed.test;
import java.io.IOException;
import java.util.Arrays;
import org.junit.AfterClass;
import org.junit.Before;
import org.junit.Test;
import org.apache.cassandra.distributed.api.ICluster;
import org.apache.cassandra.tools.ToolRunner;
import org.apache.cassandra.tools.ToolRunner.ToolResult;
import org.assertj.core.api.Assertions;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
public class NodeToolRingTest extends TestBaseImpl
{
private static ICluster cluster;
@Before
public void setupEnv() throws IOException
{
if (cluster == null)
cluster = init(builder().withNodes(1).start());
}
@AfterClass
public static void teardownEnv() throws Exception
{
cluster.close();
}
@Test
public void testWrongArgFailsAndPrintsHelp()
{
ToolResult tool = ToolRunner.invokeNodetoolJvmDtest(cluster.get(1), "--wrongarg", "ring");
Assertions.assertThat(tool.getStdout()).containsIgnoringCase("nodetool help");
assertEquals(1, tool.getExitCode());
assertTrue(tool.getCleanedStderr().isEmpty());
}
@Test
public void testMaybeChangeDocs()
{
// If you added, modified options or help, please update docs if necessary
ToolResult tool = ToolRunner.invokeNodetoolJvmDtest(cluster.get(1), "help", "ring");
String help = "NAME\n" + " nodetool ring - Print information about the token ring\n"
+ "\n"
+ "SYNOPSIS\n"
+ " nodetool [(-h <host> | --host <host>)] [(-p <port> | --port <port>)]\n"
+ " [(-pp | --print-port)] [(-pw <password> | --password <password>)]\n"
+ " [(-pwf <passwordFilePath> | --password-file <passwordFilePath>)]\n"
+ " [(-u <username> | --username <username>)] ring [(-r | --resolve-ip)]\n"
+ " [--] [<keyspace>]\n"
+ "\n"
+ "OPTIONS\n"
+ " -h <host>, --host <host>\n"
+ " Node hostname or ip address\n"
+ "\n"
+ " -p <port>, --port <port>\n"
+ " Remote jmx agent port number\n"
+ "\n"
+ " -pp, --print-port\n"
+ " Operate in 4.0 mode with hosts disambiguated by port number\n"
+ "\n"
+ " -pw <password>, --password <password>\n"
+ " Remote jmx agent password\n"
+ "\n"
+ " -pwf <passwordFilePath>, --password-file <passwordFilePath>\n"
+ " Path to the JMX password file\n"
+ "\n"
+ " -r, --resolve-ip\n"
+ " Show node domain names instead of IPs\n"
+ "\n"
+ " -u <username>, --username <username>\n"
+ " Remote jmx agent username\n"
+ "\n"
+ " --\n"
+ " This option can be used to separate command-line options from the\n"
+ " list of argument, (useful when arguments might be mistaken for\n"
+ " command-line options\n"
+ "\n"
+ " <keyspace>\n"
+ " Specify a keyspace for accurate ownership information (topology\n"
+ " awareness)\n"
+ "\n"
+ "\n";
Assertions.assertThat(tool.getStdout()).isEqualTo(help);
}
@Test
public void testRing()
{
ToolResult tool = ToolRunner.invokeNodetoolJvmDtest(cluster.get(1), "ring");
Assertions.assertThat(tool.getStdout())
.contains("Datacenter: datacenter0")
.contains("Address Rack Status State Load Owns Token")
.contains("127.0.0.1 rack0 Up Normal")
.contains("100.00% 9223372036854775807");
assertEquals(0, tool.getExitCode());
assertTrue(tool.getCleanedStderr().isEmpty());
}
@Test
public void testRingPrintPort()
{
Arrays.asList("-pp", "--print-port").forEach(arg -> {
ToolResult tool = ToolRunner.invokeNodetoolJvmDtest(cluster.get(1), arg, "ring");
Assertions.assertThat(tool.getStdout())
.contains("Datacenter: datacenter0")
.contains("Address Rack Status State Load Owns Token")
.contains("Unknown")
.contains("100.00% 9223372036854775807");
assertEquals(0, tool.getExitCode());
assertTrue(tool.getCleanedStderr().isEmpty());
});
}
@Test
public void testRingResolve()
{
Arrays.asList("-r", "--resolve-ip").forEach(arg -> {
ToolResult tool = ToolRunner.invokeNodetoolJvmDtest(cluster.get(1), "ring", arg);
Assertions.assertThat(tool.getStdout())
.contains("Datacenter: datacenter0")
.contains("Address Rack Status State Load Owns Token")
.contains("localhost rack0 Up Normal")
.contains("100.00% 9223372036854775807");
assertEquals(0, tool.getExitCode());
assertTrue(tool.getCleanedStderr().isEmpty());
});
}
@Test
public void testRingKeyspace()
{
// Bad KS
ToolResult tool = ToolRunner.invokeNodetoolJvmDtest(cluster.get(1), "ring", "mockks");
Assertions.assertThat(tool.getStdout()).contains("The keyspace mockks, does not exist");
assertEquals(0, tool.getExitCode());
assertTrue(tool.getCleanedStderr().isEmpty());
// Good KS
tool = ToolRunner.invokeNodetoolJvmDtest(cluster.get(1), "ring", "system_schema");
Assertions.assertThat(tool.getStdout()).contains("Datacenter: datacenter0");
assertEquals(0, tool.getExitCode());
assertTrue(tool.getCleanedStderr().isEmpty());
}
}

View File

@ -33,7 +33,6 @@ import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.concurrent.CompletableFuture;
import java.util.function.Supplier;
import java.util.stream.Collectors;
import com.google.common.base.Throwables;
@ -43,11 +42,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.cassandra.cql3.CQLTester;
import org.apache.cassandra.distributed.api.IInstance;
import org.apache.cassandra.distributed.api.NodeToolResult;
import org.apache.cassandra.tools.OfflineToolUtils.SystemExitException;
import org.apache.cassandra.utils.Pair;
import org.assertj.core.util.Lists;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
@ -243,51 +238,6 @@ public class ToolRunner
allArgs.add(klass);
allArgs.addAll(Arrays.asList(args));
Supplier<Integer> runMe = new Supplier<Integer>()
{
@Override
public Integer get()
{
return runClassAsTool(klass, args);
}
};
Pair<Integer, ToolResult> res = invokeSupplier(runMe, stdin);
return new ToolResult(allArgs,
res.right.getExitCode() == -1 ? -1 : res.left,
res.right.getStdout(),
res.right.getStderr(),
res.right.getException());
}
public static ToolResult invokeNodetoolJvmDtest(IInstance node, String... args)
{
Supplier<NodeToolResult> runMe = new Supplier<NodeToolResult>()
{
@Override
public NodeToolResult get()
{
return node.nodetoolResult(args);
}
};
Pair<NodeToolResult, ToolResult> res = invokeSupplier(runMe);
return new ToolResult(Arrays.asList(args),
res.left,
res.right.getExitCode() == -1 ? -1 : res.left.getRc(),
res.right.getStdout(),
res.right.getStderr(),
res.right.getException());
}
public static <T> Pair<T, ToolResult> invokeSupplier(Supplier<T> runMe)
{
return invokeSupplier(runMe, null);
}
public static <T> Pair<T, ToolResult> invokeSupplier(Supplier<T> runMe, InputStream stdin)
{
PrintStream originalSysOut = System.out;
PrintStream originalSysErr = System.err;
InputStream originalSysIn = System.in;
@ -298,24 +248,23 @@ public class ToolRunner
System.setIn(stdin == null ? originalSysIn : stdin);
T res = null;
try(PrintStream newOut = new PrintStream(out); PrintStream newErr = new PrintStream(err))
try (PrintStream newOut = new PrintStream(out);
PrintStream newErr = new PrintStream(err))
{
System.setOut(newOut);
System.setErr(newErr);
res = runMe.get();
int rc = runClassAsTool(klass, args);
out.flush();
err.flush();
return Pair.create(res, new ToolResult(Lists.emptyList(), 0, out.toString(), err.toString(), null));
return new ToolResult(allArgs, rc, out.toString(), err.toString(), null);
}
catch(Exception e)
catch (Exception e)
{
return Pair.create(res,
new ToolResult(Lists.emptyList(),
-1,
out.toString(),
err.toString() + "\n" + Throwables.getStackTraceAsString(e),
e));
return new ToolResult(allArgs,
-1,
out.toString(),
err.toString() + "\n" + Throwables.getStackTraceAsString(e),
e);
}
finally
{
@ -337,7 +286,6 @@ public class ToolRunner
private final String stdout;
private final String stderr;
private final Exception e;
private final NodeToolResult ntRes;
private ToolResult(List<String> allArgs, int exitCode, String stdout, String stderr, Exception e)
{
@ -346,22 +294,6 @@ public class ToolRunner
this.stdout = stdout;
this.stderr = stderr;
this.e = e;
this.ntRes = null;
}
private ToolResult(List<String> allArgs, NodeToolResult ntRes, int exitCode, String stdout, String stderr, Exception e)
{
this.allArgs = allArgs;
this.exitCode = exitCode;
this.stdout = stdout;
this.stderr = stderr;
this.e = e;
this.ntRes = ntRes;
}
public NodeToolResult getNodeToolResult()
{
return ntRes;
}
public int getExitCode()