blob: 16ce347303af2cd2e4398d718b15c92ea6f6ae2d [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.rest;
import static org.apache.geode.test.junit.assertions.ClusterManagementRealizationResultAssert.assertManagementResult;
import static org.assertj.core.api.Assertions.assertThat;
import static org.assertj.core.api.Assertions.assertThatThrownBy;
import java.util.List;
import org.junit.BeforeClass;
import org.junit.ClassRule;
import org.junit.Test;
import org.apache.geode.cache.Cache;
import org.apache.geode.cache.Region;
import org.apache.geode.cache.configuration.CacheConfig;
import org.apache.geode.cache.configuration.CacheElement;
import org.apache.geode.cache.configuration.RegionAttributesType;
import org.apache.geode.cache.configuration.RegionConfig;
import org.apache.geode.cache.configuration.RegionType;
import org.apache.geode.management.api.ClusterManagementRealizationResult;
import org.apache.geode.management.api.ClusterManagementResult;
import org.apache.geode.management.api.ClusterManagementService;
import org.apache.geode.management.api.RealizationResult;
import org.apache.geode.management.client.ClusterManagementServiceBuilder;
import org.apache.geode.test.dunit.IgnoredException;
import org.apache.geode.test.dunit.rules.ClusterStartupRule;
import org.apache.geode.test.dunit.rules.MemberVM;
import org.apache.geode.test.junit.rules.GeodeDevRestClient;
public class RegionManagementDunitTest {
@ClassRule
public static ClusterStartupRule cluster = new ClusterStartupRule();
private static MemberVM locator, server1, server2, server3;
private static GeodeDevRestClient restClient;
private static ClusterManagementService cms;
@BeforeClass
public static void beforeClass() throws Exception {
locator = cluster.startLocatorVM(0, l -> l.withHttpService());
server1 = cluster.startServerVM(1, "group1", locator.getPort());
server2 = cluster.startServerVM(2, "group2", locator.getPort());
server3 = cluster.startServerVM(3, "group2,group3", locator.getPort());
restClient =
new GeodeDevRestClient("/management/experimental", "localhost", locator.getHttpPort(),
false);
cms = ClusterManagementServiceBuilder.buildWithHostAddress()
.setHostAddress("localhost", locator.getHttpPort())
.build();
}
@Test
public void createsRegion() throws Exception {
RegionConfig regionConfig = new RegionConfig();
regionConfig.setName("customers");
regionConfig.setGroup("group1");
regionConfig.setType(RegionType.REPLICATE);
ClusterManagementRealizationResult result = cms.create(regionConfig);
assertThat(result.isSuccessful()).isTrue();
assertThat(result.getMemberStatuses()).extracting(RealizationResult::getMemberName)
.containsExactly("server-1");
// make sure region is created
server1.invoke(() -> verifyRegionCreated("customers", "REPLICATE"));
// make sure region is persisted
locator.invoke(() -> verifyRegionPersisted("customers", "REPLICATE", "group1"));
}
@Test
public void createRegionWithKeyValueConstraint() throws Exception {
RegionConfig config = new RegionConfig();
config.setName("customers2");
config.setGroup("group1");
config.setType(RegionType.PARTITION);
RegionAttributesType type = new RegionAttributesType();
type.setKeyConstraint("java.lang.Boolean");
type.setValueConstraint("java.lang.Integer");
config.setRegionAttributes(type);
cms.create(config);
List<RegionConfig> result = cms.get(config).getConfigResult();
assertThat(result).hasSize(1);
RegionConfig config1 = result.get(0);
assertThat(config1.getType()).isEqualTo("PARTITION");
assertThat(config1.getRegionAttributes().getDataPolicy().name()).isEqualTo("PARTITION");
assertThat(config1.getRegionAttributes().getValueConstraint()).isEqualTo("java.lang.Integer");
assertThat(config1.getRegionAttributes().getKeyConstraint()).isEqualTo("java.lang.Boolean");
server1.invoke(() -> {
Region customers2 = ClusterStartupRule.getCache().getRegionByPath("/customers2");
assertThatThrownBy(() -> customers2.put("key", 2)).isInstanceOf(ClassCastException.class)
.hasMessageContaining("does not satisfy keyConstraint");
assertThatThrownBy(() -> customers2.put(Boolean.TRUE, "2"))
.isInstanceOf(ClassCastException.class)
.hasMessageContaining("does not satisfy valueConstraint");
});
}
@Test
public void createsAPartitionedRegion() throws Exception {
String json = "{\"name\": \"orders\", \"type\": \"PARTITION\", \"group\": \"group1\"}";
ClusterManagementRealizationResult result =
restClient.doPostAndAssert("/regions", json)
.hasStatusCode(201)
.getClusterManagementRealizationResult();
assertThat(result.isSuccessful()).isTrue();
assertThat(result.getMemberStatuses()).extracting(RealizationResult::getMemberName)
.containsExactly("server-1");
// make sure region is created
server1.invoke(() -> verifyRegionCreated("orders", "PARTITION"));
// make sure region is persisted
locator.invoke(() -> verifyRegionPersisted("orders", "PARTITION", "group1"));
// create the same region 2nd time
result = restClient.doPostAndAssert("/regions", json)
.hasStatusCode(409)
.getClusterManagementRealizationResult();
assertThat(result.isSuccessful()).isFalse();
}
@Test
public void noNameInConfig() throws Exception {
IgnoredException.addIgnoredException("Region name is required.");
String json = "{\"type\": \"REPLICATE\"}";
ClusterManagementResult result =
restClient.doPostAndAssert("/regions", json)
.hasStatusCode(400)
.getClusterManagementResult();
assertThat(result.isSuccessful()).isFalse();
}
static void verifyRegionPersisted(String regionName, String type, String group) {
CacheConfig cacheConfig =
ClusterStartupRule.getLocator().getConfigurationPersistenceService()
.getCacheConfig(group);
RegionConfig regionConfig = CacheElement.findElement(cacheConfig.getRegions(), regionName);
assertThat(regionConfig.getType()).isEqualTo(type);
}
static void verifyRegionCreated(String regionName, String type) {
Cache cache = ClusterStartupRule.getCache();
Region region = cache.getRegion(regionName);
assertThat(region).isNotNull();
assertThat(region.getAttributes().getDataPolicy().toString()).isEqualTo(type);
}
@Test
public void createSameRegionOnDisjointGroups() throws Exception {
RegionConfig regionConfig = new RegionConfig();
regionConfig.setName("disJoint");
regionConfig.setGroup("group1");
regionConfig.setType(RegionType.REPLICATE);
assertManagementResult(cms.create(regionConfig)).isSuccessful();
regionConfig.setName("disJoint");
regionConfig.setGroup("group2");
regionConfig.setType(RegionType.REPLICATE);
assertManagementResult(cms.create(regionConfig)).isSuccessful();
}
@Test
public void createSameRegionOnGroupsWithCommonMember() throws Exception {
RegionConfig regionConfig = new RegionConfig();
regionConfig.setName("commonMember");
regionConfig.setGroup("group2");
regionConfig.setType(RegionType.REPLICATE);
assertManagementResult(cms.create(regionConfig)).isSuccessful();
assertThatThrownBy(() -> cms.create(regionConfig)).hasMessageContaining("ENTITY_EXISTS")
.hasMessageContaining("server-2")
.hasMessageContaining("server-3")
.hasMessageContaining("already exists on member(s)");
regionConfig.setGroup("group3");
assertThatThrownBy(() -> cms.create(regionConfig)).hasMessageContaining("ENTITY_EXISTS")
.hasMessageContaining("already exists on member(s) server-3.");
}
@Test
public void createIncompatibleRegionOnDisjointGroups() throws Exception {
RegionConfig regionConfig = new RegionConfig();
regionConfig.setName("incompatible");
regionConfig.setGroup("group4");
regionConfig.setType(RegionType.REPLICATE);
assertManagementResult(cms.create(regionConfig)).isSuccessful();
regionConfig.setName("incompatible");
regionConfig.setGroup("group5");
regionConfig.setType(RegionType.PARTITION);
assertThatThrownBy(() -> cms.create(regionConfig)).hasMessageContaining("ILLEGAL_ARGUMENT");
regionConfig.setName("incompatible");
regionConfig.setGroup("group5");
regionConfig.setType(RegionType.REPLICATE_PROXY);
assertManagementResult(cms.create(regionConfig)).isSuccessful();
}
}