com.spotify.helios.testing.HeliosDeploymentResource Maven / Gradle / Ivy
/*
* Copyright (c) 2014 Spotify AB.
*
* Licensed 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 com.spotify.helios.testing;
import com.google.common.net.HostAndPort;
import com.google.common.util.concurrent.ListenableFuture;
import com.spotify.helios.client.HeliosClient;
import org.junit.rules.ExternalResource;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.net.ConnectException;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.net.SocketAddress;
import java.net.SocketTimeoutException;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
/**
* A HeliosDeploymentResource makes the supplied {@link HeliosDeployment} available to a JUnit
* test, and guarantees to tear it down afterward.
*/
public class HeliosDeploymentResource extends ExternalResource {
private static final Logger log = LoggerFactory.getLogger(HeliosDeploymentResource.class);
private final HeliosDeployment deployment;
/**
* @param deployment The Helios deployment to expose to your JUnit tests.
*/
HeliosDeploymentResource(final HeliosDeployment deployment) {
this.deployment = deployment;
}
/** Ensure that the HeliosDeployment is up. */
@Override
protected void before() throws Throwable {
super.before();
// wait for the helios master to be available
Polling.awaitUnchecked(30, TimeUnit.SECONDS, new Callable() {
@Override
public Boolean call() throws Exception {
final HostAndPort hap = deployment.address();
final SocketAddress address = new InetSocketAddress(hap.getHostText(), hap.getPort());
log.debug("attempting to connect to {}", address);
try {
final Socket s = new Socket();
s.connect(address, 100);
log.info("successfully connected to address {} for {}", address, deployment);
return true;
} catch (SocketTimeoutException | ConnectException e) {
log.debug("could not yet connect to HeliosDeployment: {}", e.toString());
return null;
}
}
});
// ensure that at least one agent is available in this HeliosDeployment
// this doesn't check that the agent is UP but should be sufficient to avoid conditions
// like continuing with the test when starting up helios-solo before the agent is registered
final HeliosClient client = client();
Polling.awaitUnchecked(30, TimeUnit.SECONDS, new Callable() {
@Override
public Boolean call() throws Exception {
final ListenableFuture> future = client.listHosts();
final List hosts;
try {
// use a short timeout to allow this request to be retried a few times by the
// Polling.await loop
hosts = future.get(1, TimeUnit.SECONDS);
} catch (TimeoutException | InterruptedException e) {
log.debug("timed out waiting for listHosts request to finish, will retry");
return null;
}
if (!hosts.isEmpty()) {
log.info("Ensured that at least one agent is available in this HeliosDeployment, "
+ "continuing with test!");
return true;
}
log.debug("0 agents in {}, will retry", deployment);
return null;
}
});
}
@Override
protected void after() {
log.info("Tearing down {}", this.deployment);
deployment.close();
}
/**
*
* @return A Helios client connected to the Helios deployment supplied when instantiating the
* HeliosDeploymentResource.
*/
public HeliosClient client() {
return deployment.client();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy