У меня есть приложение весенней загрузки, которое использует spring-data-cassandra.Я пытаюсь написать интеграционный тест для этого приложения, используя встроенную Cassandra.
Вот зависимости, которые я использовал:
testCompile('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'junit'
}
testCompile("org.junit.jupiter:junit-jupiter-api:5.3.2")
testRuntime("org.junit.jupiter:junit-jupiter-engine:5.3.2")
testCompile("org.mockito:mockito-junit-jupiter:2.23.4")
testCompile group: 'org.cassandraunit', name: 'cassandra-unit-spring', version: '3.5.0.1'
Вот код теста:
import org.cassandraunit.spring.CassandraDataSet;
import org.cassandraunit.spring.CassandraUnitTestExecutionListener;
import org.cassandraunit.spring.EmbeddedCassandra;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.extension.ExtendWith;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.ActiveProfiles;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.TestExecutionListeners;
import org.springframework.test.context.junit.jupiter.SpringExtension;
@ContextConfiguration
@TestExecutionListeners(
listeners = CassandraUnitTestExecutionListener.class,
mergeMode = TestExecutionListeners.MergeMode.MERGE_WITH_DEFAULTS)
@CassandraDataSet(value = "dataset.cql", keyspace = "key_space")
@EmbeddedCassandra
@ActiveProfiles("test")
@SpringBootTest
@ExtendWith(SpringExtension.class)
public class IntegrationTest {
@Test
public void test() {
System.out.println("Test");
}
}
Однако при запуске приложения я получил следующую ошибку:
com.datastax.driver.core.exceptions.NoHostAvailableException
Это означает, что встроенная конфигурация Cassandra по умолчанию не работает!