blob: b43f3ace79c283ef1feabe9149521d358207b633 [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.cassandra.testing;
import java.io.IOException;
import java.net.BindException;
import java.util.function.Consumer;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.apache.cassandra.distributed.UpgradeableCluster;
import org.apache.cassandra.utils.Throwables;
/**
* A Cassandra Test Context implementation that allows advanced cluster configuration before cluster creation
* by providing access to the cluster builder.
*/
public class ConfigurableCassandraTestContext extends AbstractCassandraTestContext
{
private static final Logger LOGGER = LoggerFactory.getLogger(ConfigurableCassandraTestContext.class);
public static final String BUILT_CLUSTER_CANNOT_BE_CONFIGURED_ERROR =
"Cannot configure a cluster after it is built. Please set the buildCluster annotation attribute to false, "
+ "and do not call `getCluster` before calling this method.";
private final UpgradeableCluster.Builder builder;
public ConfigurableCassandraTestContext(SimpleCassandraVersion version,
UpgradeableCluster.Builder builder,
CassandraIntegrationTest annotation)
{
super(version, annotation);
this.builder = builder;
}
public UpgradeableCluster configureCluster(Consumer<UpgradeableCluster.Builder> configurator) throws IOException
{
if (cluster != null)
{
throw new IllegalStateException(BUILT_CLUSTER_CANNOT_BE_CONFIGURED_ERROR);
}
configurator.accept(builder);
cluster = builder.createWithoutStarting();
return cluster;
}
public UpgradeableCluster configureAndStartCluster(Consumer<UpgradeableCluster.Builder> configurator)
throws IOException
{
RuntimeException exception = null;
for (int i = 0; i < 3; i++)
{
try
{
cluster = null; // make sure cluster is null
cluster = configureCluster(configurator);
cluster.startup();
return cluster;
}
catch (RuntimeException ret)
{
exception = ret;
boolean addressAlreadyInUse = Throwables.anyCauseMatches(exception, this::portNotAvailableToBind);
if (addressAlreadyInUse)
{
LOGGER.warn("Failed to provision cluster after {} retries", i, exception);
}
else
{
throw exception;
}
}
}
throw exception;
}
@Override
public String toString()
{
return "ConfigurableCassandraTestContext{"
+ ", version=" + version
+ ", builder=" + builder
+ '}';
}
private boolean portNotAvailableToBind(Throwable ex)
{
return ex instanceof BindException &&
StringUtils.contains(ex.getMessage(), "Address already in use");
}
}