blob: 74b7e93e82fa9e881c4a8d9a8ca7890136b7ef23 [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.GROUPS;
import static org.apache.geode.distributed.ConfigurationProperties.LOG_FILE;
import static org.apache.geode.distributed.ConfigurationProperties.NAME;
import static org.apache.geode.test.junit.rules.GfshCommandRule.PortType.jmxManager;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.Properties;
import org.junit.After;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.apache.geode.test.dunit.rules.ClusterStartupRule;
import org.apache.geode.test.dunit.rules.MemberVM;
import org.apache.geode.test.junit.rules.GfshCommandRule;
public class GcCommandDUnitTestBase {
private static final String MANAGER_NAME = "Manager";
private static final String SERVER1_NAME = "Server1";
private static final String SERVER2_NAME = "Server2";
private static final String GROUP0 = "Group0";
private static final String GROUP1 = "Group1";
private static final String GROUP2 = "Group2";
protected static MemberVM locator;
@ClassRule
public static ClusterStartupRule clusterStartupRule = new ClusterStartupRule();
@ClassRule
public static GfshCommandRule gfsh = new GfshCommandRule();
@BeforeClass
public static void setup() throws Exception {
Properties managerProps = new Properties();
managerProps.setProperty(NAME, MANAGER_NAME);
managerProps.setProperty(GROUPS, GROUP0);
managerProps.setProperty(LOG_FILE, "someLog.log");
locator =
clusterStartupRule.startLocatorVM(0, l -> l.withHttpService().withProperties(managerProps));
Properties server1Props = new Properties();
server1Props.setProperty(NAME, SERVER1_NAME);
server1Props.setProperty(GROUPS, GROUP1);
clusterStartupRule.startServerVM(1, server1Props, locator.getPort());
Properties server2Props = new Properties();
server2Props.setProperty(NAME, SERVER2_NAME);
server2Props.setProperty(GROUPS, GROUP2);
clusterStartupRule.startServerVM(2, server2Props, locator.getPort());
}
@Before
public void before() throws Exception {
gfsh.connectAndVerify(locator.getJmxPort(), jmxManager);
}
@After
public void after() throws Exception {
gfsh.disconnect();
}
@Test
public void testGCForGroup() {
String gcCommand = "gc --group=" + GROUP0;
gfsh.executeAndAssertThat(gcCommand).statusIsSuccess();
assertThat(gfsh.getGfshOutput()).contains(MANAGER_NAME);
}
@Test
public void testGCForMemberID() {
String gcCommand = "gc --member=" + MANAGER_NAME;
gfsh.executeAndAssertThat(gcCommand).statusIsSuccess();
assertThat(gfsh.getGfshOutput()).contains(MANAGER_NAME);
}
@Test
public void testGCForEntireCluster() {
String command = "gc";
gfsh.executeAndAssertThat(command).statusIsSuccess();
String output = gfsh.getGfshOutput();
assertThat(output).contains(SERVER1_NAME);
assertThat(output).contains(SERVER2_NAME);
assertThat(output).doesNotContain(MANAGER_NAME);
}
@Test
public void testGCForInvalidMember() throws Exception {
String gcCommand = "gc --member=NotAValidMember";
gfsh.executeAndAssertThat(gcCommand).statusIsError()
.containsOutput("Member NotAValidMember could not be found.");
}
}