blob: eec2b6df0031c58d5963082e572a103140bfa0a7 [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.internal.cache.execute;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import static org.mockito.ArgumentMatchers.any;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.spy;
import static org.mockito.Mockito.when;
import org.junit.Before;
import org.junit.Test;
import org.apache.geode.cache.Region;
import org.apache.geode.cache.RegionAttributes;
import org.apache.geode.cache.client.Pool;
import org.apache.geode.cache.execute.FunctionException;
import org.apache.geode.internal.cache.LocalRegion;
import org.apache.geode.internal.cache.PartitionedRegion;
public class InternalFunctionExecutionServiceTest {
private InternalFunctionExecutionServiceImpl functionExecutionService;
@Before
public void setUp() {
functionExecutionService = spy(new InternalFunctionExecutionServiceImpl());
}
@Test
public void onRegionShouldThrowExceptionWhenRegionIsNull() {
assertThatThrownBy(() -> functionExecutionService.onRegion(null))
.isInstanceOf(FunctionException.class)
.hasMessage("Region instance passed is null");
}
@Test
public void onRegionShouldThrowExceptionWhenThePoolAssociatedWithTheRegionCanNotBeFound() {
when(functionExecutionService.findPool(any())).thenReturn(null);
Region mockRegion = mock(Region.class);
RegionAttributes mockAttributes = mock(RegionAttributes.class);
when(mockAttributes.getPoolName()).thenReturn("testPool");
when(mockRegion.getAttributes()).thenReturn(mockAttributes);
assertThatThrownBy(() -> functionExecutionService.onRegion(mockRegion))
.isInstanceOf(IllegalStateException.class)
.hasMessage("Could not find a pool named testPool.");
}
@Test
public void onRegionShouldThrowExceptionWhenMultiUserAuthenticationIsSetForNonProxyRegions() {
Pool mockPool = mock(Pool.class);
when(mockPool.getMultiuserAuthentication()).thenReturn(true);
when(functionExecutionService.findPool(any())).thenReturn(mockPool);
Region mockRegion = mock(Region.class);
RegionAttributes mockAttributes = mock(RegionAttributes.class);
when(mockAttributes.getPoolName()).thenReturn("testPool");
when(mockRegion.getAttributes()).thenReturn(mockAttributes);
assertThatThrownBy(() -> functionExecutionService.onRegion(mockRegion))
.isInstanceOf(UnsupportedOperationException.class);
}
@Test
public void onRegionShouldReturnClientExecutorImplementationForClientRegions() {
LocalRegion mockRegion = mock(LocalRegion.class);
when(mockRegion.hasServerProxy()).thenReturn(true);
RegionAttributes mockAttributes = mock(RegionAttributes.class);
when(mockAttributes.getPoolName()).thenReturn(null);
when(mockRegion.getAttributes()).thenReturn(mockAttributes);
assertThat(functionExecutionService.onRegion(mockRegion))
.isInstanceOf(ServerRegionFunctionExecutor.class);
}
@Test
public void onRegionShouldReturnPartitionExecutorImplementationForPartitionedRegions() {
PartitionedRegion mockRegion = mock(PartitionedRegion.class);
RegionAttributes mockAttributes = mock(RegionAttributes.class);
when(mockAttributes.getPoolName()).thenReturn(null);
when(mockRegion.getAttributes()).thenReturn(mockAttributes);
assertThat(functionExecutionService.onRegion(mockRegion))
.isInstanceOf(PartitionedRegionFunctionExecutor.class);
}
}