blob: 944969886d6ecdc2c1fb682670bd4f3fbd7db096 [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.distributed.ConfigurationProperties.ENABLE_TIME_STATISTICS;
import static org.apache.geode.distributed.ConfigurationProperties.GROUPS;
import static org.apache.geode.distributed.ConfigurationProperties.STATISTIC_SAMPLING_ENABLED;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.Properties;
import junitparams.Parameters;
import org.junit.Rule;
import org.junit.Test;
import org.junit.experimental.categories.Category;
import org.junit.rules.TemporaryFolder;
import org.junit.runner.RunWith;
import org.apache.geode.distributed.internal.DistributionConfig;
import org.apache.geode.distributed.internal.InternalDistributedSystem;
import org.apache.geode.internal.cache.InternalCache;
import org.apache.geode.test.dunit.rules.ClusterStartupRule;
import org.apache.geode.test.dunit.rules.MemberVM;
import org.apache.geode.test.junit.categories.GfshTest;
import org.apache.geode.test.junit.rules.GfshCommandRule;
import org.apache.geode.test.junit.runners.GeodeParamsRunner;
@Category({GfshTest.class})
@RunWith(GeodeParamsRunner.class)
public class DescribeConfigCommandDUnitTest {
@Rule
public ClusterStartupRule startupRule = new ClusterStartupRule().withLogFile();
@Rule
public GfshCommandRule gfsh = new GfshCommandRule();
@Rule
public TemporaryFolder temporaryFolder = new TemporaryFolder();
@Test
@Parameters({"true", "false"})
public void testDescribeConfig(final boolean connectOverHttp) throws Exception {
Properties localProps = new Properties();
localProps.setProperty(STATISTIC_SAMPLING_ENABLED, "true");
localProps.setProperty(ENABLE_TIME_STATISTICS, "true");
localProps.setProperty(GROUPS, "G1");
MemberVM server0 =
startupRule.startServerVM(0,
x -> x.withProperties(localProps).withJMXManager().withHttpService());
if (connectOverHttp) {
gfsh.connectAndVerify(server0.getHttpPort(), GfshCommandRule.PortType.http);
} else {
gfsh.connectAndVerify(server0.getJmxPort(), GfshCommandRule.PortType.jmxManager);
}
server0.invoke(() -> {
InternalCache cache = ClusterStartupRule.getCache();
InternalDistributedSystem system = cache.getInternalDistributedSystem();
DistributionConfig config = system.getConfig();
config.setArchiveFileSizeLimit(1000);
});
gfsh.executeAndAssertThat("describe config --member=" + server0.getName()).statusIsSuccess();
String result = gfsh.getGfshOutput();
assertThat(result).containsPattern("enable-time-statistics\\s+: true");
assertThat(result).containsPattern("groups\\s+: G1");
assertThat(result).containsPattern("archive-file-size-limit\\s+: 1000");
assertThat(result).containsPattern("name\\s+: server-0");
assertThat(result).containsPattern("is-server\\s+: true");
assertThat(result).doesNotContain("copy-on-read");
gfsh.executeAndAssertThat(
"describe config --member=" + server0.getName() + " --hide-defaults=false")
.statusIsSuccess().containsOutput("copy-on-read");
}
}