com.spotify.helios.testing.DefaultDeployer Maven / Gradle / Ivy
/*
* Copyright (c) 2014 Spotify AB.
*
* 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 com.spotify.helios.testing;
import com.google.common.annotations.VisibleForTesting;
import com.google.common.base.Joiner;
import com.google.common.base.Throwables;
import com.google.common.collect.FluentIterable;
import com.google.common.collect.Lists;
import com.spotify.helios.client.HeliosClient;
import com.spotify.helios.common.descriptors.HostStatus.Status;
import com.spotify.helios.common.descriptors.Job;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.util.List;
import java.util.Set;
import java.util.concurrent.ExecutionException;
import static com.google.common.base.Predicates.containsPattern;
import static com.google.common.base.Strings.isNullOrEmpty;
import static java.lang.String.format;
import static java.util.Arrays.asList;
import static org.junit.Assert.fail;
public class DefaultDeployer implements Deployer {
private static final Logger log = LoggerFactory.getLogger(DefaultDeployer.class);
private final HeliosClient client;
private final List jobs;
private final HostPickingStrategy hostPicker;
private final String jobDeployedMessageFormat;
private final long deployTimeoutMillis;
private boolean readyToDeploy;
public DefaultDeployer(final HeliosClient client, final List jobs,
final HostPickingStrategy hostPicker,
final String jobDeployedMessageFormat, final long deployTimeoutMillis) {
this.client = client;
this.jobs = jobs;
this.hostPicker = hostPicker;
this.jobDeployedMessageFormat = jobDeployedMessageFormat;
this.deployTimeoutMillis = deployTimeoutMillis;
}
@Override
public TemporaryJob deploy(final Job job, final String hostFilter,
final Set waitPorts, final Prober prober) {
if (isNullOrEmpty(hostFilter)) {
fail("a host filter pattern must be passed to hostFilter(), " +
"or one must be specified in HELIOS_HOST_FILTER");
}
final List hosts;
try {
log.info("Getting list of hosts");
hosts = client.listHosts().get();
} catch (InterruptedException | ExecutionException e) {
throw new AssertionError("Failed to get list of Helios hosts", e);
}
final List filteredHosts = FluentIterable.from(hosts)
.filter(containsPattern(hostFilter))
.toList();
if (filteredHosts.isEmpty()) {
fail(format("no hosts matched the filter pattern - %s", hostFilter));
}
final String chosenHost = pickHost(filteredHosts);
return deploy(job, asList(chosenHost), waitPorts, prober);
}
@VisibleForTesting
String pickHost(final List filteredHosts) {
final List mutatedList = Lists.newArrayList(filteredHosts);
while (true) {
final String candidateHost = hostPicker.pickHost(mutatedList);
try {
if (Status.UP == client.hostStatus(candidateHost).get().getStatus()) {
return candidateHost;
}
mutatedList.remove(candidateHost);
if (mutatedList.isEmpty()) {
fail("all hosts matching filter pattern are DOWN");
}
} catch (InterruptedException | ExecutionException e) {
throw Throwables.propagate(e);
}
}
}
@Override
public TemporaryJob deploy(final Job job, final List hosts,
final Set waitPorts, final Prober prober) {
if (!readyToDeploy) {
fail("deploy() must be called in a @Before or in the test method, or perhaps you forgot"
+ " to put @Rule before TemporaryJobs");
}
if (hosts.isEmpty()) {
fail("at least one host must be explicitly specified, or deploy() must be called with " +
"no arguments to automatically select a host");
}
log.info("Deploying {} to {}", job.getImage(), Joiner.on(", ").skipNulls().join(hosts));
final TemporaryJob temporaryJob = new TemporaryJob(client, prober, job, hosts, waitPorts,
jobDeployedMessageFormat, deployTimeoutMillis);
jobs.add(temporaryJob);
temporaryJob.deploy();
return temporaryJob;
}
@Override
public void readyToDeploy() {
readyToDeploy = true;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy