@SpringBootTest
@DirtiesContext
@EmbeddedKafka(partitions = 1, bootstrapServersProperty = "spring.kafka.bootstrap-servers"})
@TestPropertySource(properties = "test.topic=<endTestTopic>")
public class ListeningEndTopicNameIT {
@BeforeEach
public void startServices() {
ConfigurableApplicationContext serivceAContext = null;
ConfigurableApplicationContext serviceBContext = null;
Executors.newSingleThreadExecutor().execute(() -> {
SpringApplication application = new SpringApplication(com.demo.servicea.Application.class);
application.setAdditionalProfiles("serviceAProfile");
serviceAContext = application.run();
});
while (serviceAContext == null || !serviceAContext.isRunning()) {
Thread.sleep(1000);
}
Executors.newSingleThreadExecutor().execute(() -> {
SpringApplication application = new SpringApplication(com.demo.serviceb.Application.class);
application.setAdditionalProfiles("serviceBProfile");
serviceBContext = application.run();
});
while (serviceBContext == null || !serviceBContext.isRunning()) {
Thread.sleep(1000);
}
}
@AfterEach
public void cleanTestState() {
serviceAContext.close();
serviceBContext.close();
}
@Autowired
private KafkaConsumer consumer;
@Autowired
private KafkaProducer producer;
@Test
public void verifyEventGeneratedInTopicCorrect() throws Exception {
producer.send("<topicBeingListenedTo>", "payload");
consumer.getLatch().await(1, TimeUnit.MINUTES);
assertThat(consumer.getLatch().getCount(), equalTo(0L));
byte[] recordBytes = consumer.getRecordValue();
assertNotNull(recordBytes)
}