Merge pull request #8879 from mathieufortin01/BAEL-3806

BAEL-3806 Fixed integration test
This commit is contained in:
Greg 2020-03-20 14:48:37 -04:00 committed by GitHub
commit c0f61d0167
2 changed files with 8 additions and 4 deletions

View File

@ -52,14 +52,13 @@ public class ConsumerFooServiceIntegrationTest {
.map(Arrays::stream) .map(Arrays::stream)
.orElse(Stream.empty()); .orElse(Stream.empty());
}) })
.map(IThrowableProxy::getMessage) .map(IThrowableProxy::getClassName)
.collect(Collectors.toList()); .collect(Collectors.toList());
assertThat(allLoggedEntries).anyMatch(entry -> entry.contains("The following error happened on processFoo method!")) assertThat(allLoggedEntries).anyMatch(entry -> entry.contains("The following error happened on processFoo method!"))
.anyMatch(entry -> entry.contains("| onSubscribe")) .anyMatch(entry -> entry.contains("| onSubscribe"))
.anyMatch(entry -> entry.contains("| cancel()")); .anyMatch(entry -> entry.contains("| cancel()"));
assertThat(allSuppressedEntries).anyMatch(entry -> entry.contains("Assembly trace from producer")) assertThat(allSuppressedEntries)
.anyMatch(entry -> entry.contains("Error has been observed by the following operator(s)")); .anyMatch(entry -> entry.contains("reactor.core.publisher.FluxOnAssembly$OnAssemblyException"));
} }
} }

View File

@ -7,6 +7,11 @@ import org.springframework.test.web.reactive.server.WebTestClient.ResponseSpec;
import com.baeldung.debugging.consumer.service.FooService; import com.baeldung.debugging.consumer.service.FooService;
/**
* In order to run this live test, start the following classes:
* - com.baeldung.debugging.server.ServerDebuggingApplication
* - com.baeldung.debugging.consumer.ConsumerDebuggingApplication
*/
public class ConsumerFooServiceLiveTest { public class ConsumerFooServiceLiveTest {
FooService service = new FooService(); FooService service = new FooService();