blob: 8fbd3bf7922144b2a26c095856e6f9c1ff775113 [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 java.util.concurrent.TimeUnit.MILLISECONDS;
import static org.apache.geode.test.awaitility.GeodeAwaitility.await;
import static org.apache.geode.test.awaitility.GeodeAwaitility.getTimeout;
import static org.assertj.core.api.Assertions.assertThat;
import java.util.concurrent.Future;
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.annotation.DirtiesContext;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringRunner;
import org.springframework.test.context.web.WebAppConfiguration;
import org.springframework.web.client.RestTemplate;
import org.springframework.web.context.WebApplicationContext;
import org.apache.geode.management.api.ClusterManagementException;
import org.apache.geode.management.api.ClusterManagementResult;
import org.apache.geode.management.api.ClusterManagementService;
import org.apache.geode.management.api.RestTemplateClusterManagementServiceTransport;
import org.apache.geode.management.configuration.Member;
import org.apache.geode.management.internal.rest.LocatorWebContext;
import org.apache.geode.management.internal.rest.PlainLocatorContextLoader;
import org.apache.geode.test.dunit.rules.ClusterStartupRule;
import org.apache.geode.test.junit.rules.ExecutorServiceRule;
@RunWith(SpringRunner.class)
@ContextConfiguration(locations = {"classpath*:WEB-INF/management-servlet.xml"},
loader = PlainLocatorContextLoader.class)
@WebAppConfiguration
@DirtiesContext(classMode = DirtiesContext.ClassMode.AFTER_CLASS)
public class GetStartingMemberTest {
@Autowired
private WebApplicationContext webApplicationContext;
@Rule
public ClusterStartupRule cluster = new ClusterStartupRule(1);
@Rule
public ExecutorServiceRule executorServiceRule = new ExecutorServiceRule();
private ClusterManagementService client;
private LocatorWebContext webContext;
@Before
public void before() {
cluster.setSkipLocalDistributedSystemCleanup(true);
webContext = new LocatorWebContext(webApplicationContext);
client = new ClusterManagementServiceBuilder().setTransport(
new RestTemplateClusterManagementServiceTransport(
new RestTemplate(webContext.getRequestFactory())))
.build();
}
@Test
public void getStartingMember() throws Exception {
Member server0 = new Member();
server0.setId("server-0");
Future<Void> startServer = executorServiceRule.submit(() -> {
cluster.startServerVM(0, webContext.getLocator().getPort());
});
await()
.ignoreException(ClusterManagementException.class)
.untilAsserted(() -> assertThat(client.get(server0).getStatusCode()).isEqualTo(
ClusterManagementResult.StatusCode.OK));
startServer.get(getTimeout().toMillis(), MILLISECONDS);
}
}