使用cassandra embedded时出现nohostavailableexception

vxqlmq5t  于 2021-06-14  发布在  Cassandra
关注(0)|答案(1)|浏览(468)

我有一个spring引导应用程序,它使用spring数据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嵌入式配置不起作用!

7jmck4yq

7jmck4yq1#

我不擅长 cassandra-unit ,但我可以向您推荐另一个库:https://github.com/nosan/embedded-cassandra

@SpringBootTest
@EmbeddedCassandra(scripts = "...", replace = EmbeddedCassandra.Replace.NONE /*use auto-configured cluster */)
@ExtendWith(SpringExtension.class)
public class EmbeddedCassandraTests {

    @Test
    public void testMe() {

    }

}

希望对你有帮助。

相关问题