com.palantir.atlasdb.keyvalue.cassandra.CassandraTestSuite.java Source code

Java tutorial

Introduction

Here is the source code for com.palantir.atlasdb.keyvalue.cassandra.CassandraTestSuite.java

Source

/**
 * Copyright 2015 Palantir Technologies
 * <p>
 * Licensed under the BSD-3 License (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 * <p>
 * http://opensource.org/licenses/BSD-3-Clause
 * <p>
 * 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.palantir.atlasdb.keyvalue.cassandra;

import java.net.InetSocketAddress;

import org.joda.time.Duration;
import org.junit.BeforeClass;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
import org.junit.runners.Suite.SuiteClasses;

import com.palantir.atlasdb.cassandra.CassandraKeyValueServiceConfig;
import com.palantir.atlasdb.cassandra.ImmutableCassandraKeyValueServiceConfig;

@RunWith(Suite.class)
@SuiteClasses({ CassandraKeyValueServiceSerializableTransactionTest.class,
        CassandraKeyValueServiceTransactionTest.class, CassandraKeyValueServiceSweeperTest.class,
        CassandraTimestampTest.class, CassandraKeyValueServiceTest.class })
public class CassandraTestSuite {

    static CassandraKeyValueServiceConfig CKVS_CONFIG = ImmutableCassandraKeyValueServiceConfig.builder()
            .addServers(
                    new InetSocketAddress(CassandraTestConfigs.CASSANDRA_HOST, CassandraTestConfigs.THRIFT_PORT))
            .poolSize(20).keyspace("atlasdb").ssl(false).replicationFactor(1).mutationBatchCount(10000)
            .mutationBatchSizeBytes(10000000).fetchBatchCount(1000).safetyDisabled(false).autoRefreshNodes(false)
            .build();

    @BeforeClass
    public static void waitUntilCassandraIsUp() {
        CassandraTestTools.waitTillServiceIsUp(CassandraTestConfigs.CASSANDRA_HOST,
                CassandraTestConfigs.THRIFT_PORT, Duration.millis(10000));
    }
}