blob: 444c8a62f25e73b8532edb7f57e79434b6e10bb0 [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.assertj.core.api.Assertions.assertThat;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.spy;
import java.util.ArrayList;
import java.util.List;
import java.util.Set;
import org.junit.Before;
import org.junit.ClassRule;
import org.junit.Test;
import org.apache.geode.internal.cache.InternalCache;
import org.apache.geode.management.internal.functions.CliFunctionResult;
import org.apache.geode.test.junit.rules.GfshParserRule;
public class DestroyGatewaySenderCommandTest {
@ClassRule
public static GfshParserRule parser = new GfshParserRule();
private DestroyGatewaySenderCommand command;
private List<CliFunctionResult> functionResults;
private CliFunctionResult result1, result2;
@Before
@SuppressWarnings("unchecked")
public void before() {
command = spy(DestroyGatewaySenderCommand.class);
InternalCache cache = mock(InternalCache.class);
doReturn(cache).when(command).getCache();
doReturn(true).when(command).waitForGatewaySenderMBeanDeletion(any(), any());
functionResults = new ArrayList<>();
doReturn(functionResults).when(command).executeAndGetFunctionResult(any(), any(),
any(Set.class));
}
@Test
public void mandatoryOptions() {
assertThat(parser.parse("destroy gateway-sender --member=A")).isNull();
}
@Test
@SuppressWarnings("deprecation")
public void allFunctionReturnsOK() {
result1 = new CliFunctionResult("member", CliFunctionResult.StatusState.OK,
"result1");
result2 = new CliFunctionResult("member", CliFunctionResult.StatusState.OK,
"result2");
functionResults.add(result1);
functionResults.add(result2);
doReturn(mock(Set.class)).when(command).getMembers(any(), any());
parser.executeAndAssertThat(command, "destroy gateway-sender --id=1").statusIsSuccess()
.tableHasColumnWithValuesContaining("Message", "result1", "result2");
}
@Test
@SuppressWarnings("deprecation")
public void oneFunctionReturnsError() {
result1 = new CliFunctionResult("member", CliFunctionResult.StatusState.OK,
"result1");
result2 = new CliFunctionResult("member", CliFunctionResult.StatusState.ERROR,
"result2");
functionResults.add(result1);
functionResults.add(result2);
doReturn(mock(Set.class)).when(command).getMembers(any(), any());
parser.executeAndAssertThat(command, "destroy gateway-sender --id=1").statusIsSuccess()
.tableHasColumnWithValuesContaining("Message", "result1", "result2");
}
@Test
@SuppressWarnings("deprecation")
public void oneFunctionThrowsGeneralException() {
result1 = new CliFunctionResult("member", CliFunctionResult.StatusState.OK, "result1");
result2 = new CliFunctionResult("member", new Exception("something happened"), null);
functionResults.add(result1);
functionResults.add(result2);
doReturn(mock(Set.class)).when(command).getMembers(any(), any());
parser.executeAndAssertThat(command, "destroy gateway-sender --id=1").statusIsSuccess()
.tableHasColumnWithValuesContaining("Message", "result1",
"java.lang.Exception: something happened");
}
@Test
public void putsIdOfDestroyedSenderInResult() {
result1 = new CliFunctionResult("member", CliFunctionResult.StatusState.OK,
"result1");
functionResults.add(result1);
doReturn(mock(Set.class)).when(command).getMembers(any(), any());
String id = (String) parser
.executeAndAssertThat(command, "destroy gateway-sender --id=1")
.statusIsSuccess()
.getResultModel()
.getConfigObject();
assertThat(id).isEqualTo("1");
}
}