blob: e96898343fa78b71ffa078b42d198017f09c7265 [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.assertThatThrownBy;
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.get;
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.content;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.security.test.context.support.WithMockUser;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.web.context.WebApplicationContext;
import org.apache.geode.cache.configuration.RegionConfig;
import org.apache.geode.cache.configuration.RegionType;
import org.apache.geode.management.api.ClusterManagementResult;
import org.apache.geode.management.api.ClusterManagementService;
import org.apache.geode.management.client.ClusterManagementServiceBuilder;
@RunWith(SpringRunner.class)
@ContextConfiguration(locations = {"classpath*:WEB-INF/management-servlet.xml"},
loader = PlainLocatorContextLoader.class)
@WebAppConfiguration
public class RegionManagementIntegrationTest {
@Autowired
private WebApplicationContext webApplicationContext;
// needs to be used together with any BaseLocatorContextLoader
private LocatorWebContext context;
private ClusterManagementService client;
@Before
public void before() {
context = new LocatorWebContext(webApplicationContext);
client = ClusterManagementServiceBuilder.buildWithRequestFactory()
.setRequestFactory(context.getRequestFactory()).build();
}
@Test
@WithMockUser
public void sanityCheck() {
RegionConfig regionConfig = new RegionConfig();
regionConfig.setName("customers");
regionConfig.setType(RegionType.REPLICATE);
// if run multiple times, this could either be OK or ENTITY_EXISTS
assertManagementResult(client.create(regionConfig))
.hasStatusCode(ClusterManagementResult.StatusCode.OK,
ClusterManagementResult.StatusCode.ENTITY_EXISTS);
}
@Test
@WithMockUser
public void invalidType() {
RegionConfig regionConfig = new RegionConfig();
regionConfig.setName("customers");
regionConfig.setType("LOCAL");
assertThatThrownBy(() -> client.create(regionConfig))
.hasMessageContaining(
"ILLEGAL_ARGUMENT: Region type 'LOCAL' is not supported.");
}
@Test
public void invalidGroup() {
RegionConfig regionConfig = new RegionConfig();
regionConfig.setName("customers");
regionConfig.setGroup("cluster");
assertThatThrownBy(() -> client.create(regionConfig))
.hasMessageContaining("ILLEGAL_ARGUMENT: 'cluster' is a reserved group name");
}
@Test
@WithMockUser
public void ping() throws Exception {
context.perform(get("/experimental/ping"))
.andExpect(content().string("pong"));
}
}