blob: 5c17cf89c4976cfb51175fb7376424f2d995c407 [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.client;
import static org.assertj.core.api.Assertions.assertThat;
import org.junit.After;
import org.junit.Before;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
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.distributed.internal.InternalConfigurationPersistenceService;
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.configuration.Pdx;
import org.apache.geode.management.internal.rest.LocatorWebContext;
import org.apache.geode.management.internal.rest.PlainLocatorContextLoader;
import org.apache.geode.test.dunit.rules.ClusterStartupRule;
@RunWith(SpringRunner.class)
@ContextConfiguration(locations = {"classpath*:WEB-INF/management-servlet.xml"},
loader = PlainLocatorContextLoader.class)
@WebAppConfiguration
public class ConfigurePDXDUnitTest {
@Autowired
private WebApplicationContext webApplicationContext;
@Rule
public ClusterStartupRule cluster = new ClusterStartupRule(1);
private ClusterManagementService client;
private LocatorWebContext webContext;
@Before
public void before() {
cluster.setSkipLocalDistributedSystemCleanup(true);
webContext = new LocatorWebContext(webApplicationContext);
client = ClusterManagementServiceBuilder.buildWithRequestFactory()
.setRequestFactory(webContext.getRequestFactory()).build();
cluster.startServerVM(1, webContext.getLocator().getPort());
}
@After
public void after() throws Exception {
// for the test to be run multiple times, we need to clean out the cluster config
InternalConfigurationPersistenceService cps =
((PlainLocatorContextLoader) webContext.getLocator()).getLocatorStartupRule().getLocator()
.getConfigurationPersistenceService();
cps.updateCacheConfig("cluster", config -> {
config.setPdx(null);
return config;
});
}
@Test
public void configurePdx() {
Pdx pdxType = new Pdx();
ClusterManagementRealizationResult result = client.create(pdxType);
// needed to pass StressNewTest since we haven't yet implemented delete(PdxType)
if (result.getStatusCode() == ClusterManagementResult.StatusCode.ENTITY_EXISTS)
return;
assertThat(result.isSuccessful()).isTrue();
assertThat(result.getStatusCode()).isEqualTo(ClusterManagementResult.StatusCode.OK);
assertThat(result.getUri()).isEqualTo("/management/experimental/configurations/pdx");
RealizationResult status = result.getMemberStatuses().get(0);
assertThat(status.getMemberName()).isEqualTo("server-1");
assertThat(status.getMessage()).contains(
"Server 'server-1' needs to be restarted for this configuration change to be realized.");
}
}