blob: 09ded9ea57b44dd01365ffcfbc7ec945df065d96 [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.functions;
import static org.assertj.core.api.Assertions.assertThat;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.doCallRealMethod;
import static org.mockito.Mockito.doReturn;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.times;
import static org.mockito.Mockito.verify;
import org.junit.Before;
import org.junit.Test;
import org.mockito.ArgumentCaptor;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.configuration.GatewayReceiverConfig;
import org.apache.geode.cache.execute.FunctionContext;
import org.apache.geode.cache.execute.ResultSender;
import org.apache.geode.cache.wan.GatewayReceiver;
public class GatewayReceiverCreateFunctionTest {
private GatewayReceiverCreateFunction function = mock(GatewayReceiverCreateFunction.class);
private FunctionContext context = mock(FunctionContext.class);
private Cache cache = mock(Cache.class);
private GatewayReceiverConfig args = mock(GatewayReceiverConfig.class);
private GatewayReceiver receiver = mock(GatewayReceiver.class);
private ResultSender resultSender = mock(ResultSender.class);
@Before
public void setup() {
doReturn(cache).when(context).getCache();
doReturn(new Object[] {args, Boolean.FALSE}).when(context).getArguments();
doReturn("server-1").when(context).getMemberName();
doReturn(resultSender).when(context).getResultSender();
doCallRealMethod().when(function).execute(context);
doReturn(false).when(function).gatewayReceiverExists(any());
doReturn(receiver).when(function).createGatewayReceiver(cache, args);
doReturn(5555).when(receiver).getPort();
}
@Test
public void testFunctionSuccessResult() {
function.execute(context);
ArgumentCaptor<Object> resultObject = ArgumentCaptor.forClass(Object.class);
verify(resultSender, times(1)).lastResult(resultObject.capture());
CliFunctionResult result = (CliFunctionResult) resultObject.getValue();
assertThat(result.getStatusMessage()).contains("5555");
}
}