Class com.learnreactivespring.controller.FluxAndMonoControllerTest

6

tests

0

failures

0

ignored

3.063s

duration

100%

successful

Tests

Test Duration Result
fluxStream 3.035s passed
flux_approach1 0.006s passed
flux_approach2 0.005s passed
flux_approach3 0.004s passed
flux_approach4 0.007s passed
mono 0.006s passed

Standard output

2019-02-14 05:46:09.692  INFO 3868 --- [    Test worker] b.t.a.w.r.WebFluxTestContextBootstrapper : Neither @ContextConfiguration nor @ContextHierarchy found for test class [com.learnreactivespring.controller.FluxAndMonoControllerTest], using SpringBootContextLoader
2019-02-14 05:46:09.693  INFO 3868 --- [    Test worker] o.s.t.c.support.AbstractContextLoader    : Could not detect default resource locations for test class [com.learnreactivespring.controller.FluxAndMonoControllerTest]: no resource found for suffixes {-context.xml, Context.groovy}.
2019-02-14 05:46:09.693  INFO 3868 --- [    Test worker] t.c.s.AnnotationConfigContextLoaderUtils : Could not detect default configuration classes for test class [com.learnreactivespring.controller.FluxAndMonoControllerTest]: FluxAndMonoControllerTest does not declare any static, non-private, non-final, nested classes annotated with @Configuration.
2019-02-14 05:46:09.704  INFO 3868 --- [    Test worker] .b.t.c.SpringBootTestContextBootstrapper : Found @SpringBootConfiguration com.learnreactivespring.LearnReactivespringApplication for test class com.learnreactivespring.controller.FluxAndMonoControllerTest
2019-02-14 05:46:09.705  INFO 3868 --- [    Test worker] b.t.a.w.r.WebFluxTestContextBootstrapper : Loaded default TestExecutionListener class names from location [META-INF/spring.factories]: [org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener, org.springframework.test.context.web.ServletTestExecutionListener, org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener, org.springframework.test.context.support.DependencyInjectionTestExecutionListener, org.springframework.test.context.support.DirtiesContextTestExecutionListener, org.springframework.test.context.transaction.TransactionalTestExecutionListener, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener]
2019-02-14 05:46:09.706  INFO 3868 --- [    Test worker] b.t.a.w.r.WebFluxTestContextBootstrapper : Using TestExecutionListeners: [org.springframework.test.context.support.DirtiesContextBeforeModesTestExecutionListener@58379f33, org.springframework.boot.test.mock.mockito.MockitoTestExecutionListener@4f94714a, org.springframework.boot.test.autoconfigure.SpringBootDependencyInjectionTestExecutionListener@b57172d, org.springframework.test.context.support.DirtiesContextTestExecutionListener@3a166586, org.springframework.test.context.transaction.TransactionalTestExecutionListener@5e3cabf0, org.springframework.test.context.jdbc.SqlScriptsTestExecutionListener@324e8f5c, org.springframework.boot.test.autoconfigure.restdocs.RestDocsTestExecutionListener@1930847, org.springframework.boot.test.autoconfigure.web.client.MockRestServiceServerResetTestExecutionListener@82077a6, org.springframework.boot.test.autoconfigure.web.servlet.MockMvcPrintOnlyOnFailureTestExecutionListener@33783e79, org.springframework.boot.test.autoconfigure.web.servlet.WebDriverTestExecutionListener@758a6325, org.springframework.boot.test.mock.mockito.ResetMocksTestExecutionListener@6c429ce3]

  .   ____          _            __ _ _
 /\\ / ___'_ __ _ _(_)_ __  __ _ \ \ \ \
( ( )\___ | '_ | '_| | '_ \/ _` | \ \ \ \
 \\/  ___)| |_)| | | | | || (_| |  ) ) ) )
  '  |____| .__|_| |_|_| |_\__, | / / / /
 =========|_|==============|___/=/_/_/_/
 :: Spring Boot ::        (v2.1.1.RELEASE)

2019-02-14 05:46:09.735  INFO 3868 --- [    Test worker] c.l.c.FluxAndMonoControllerTest          : Starting FluxAndMonoControllerTest on dca9046e8fde with PID 3868 (started by z001qgd in /Users/z001qgd/Dilip/study/Reactive-Spring/course-codebase/learn-reactivespring)
2019-02-14 05:46:09.735  INFO 3868 --- [    Test worker] c.l.c.FluxAndMonoControllerTest          : The following profiles are active: nonprod
2019-02-14 05:46:09.986  INFO 3868 --- [    Test worker] c.l.c.FluxAndMonoControllerTest          : Started FluxAndMonoControllerTest in 0.278 seconds (JVM running for 7.316)
2019-02-14 05:46:10.018  INFO 3868 --- [    Test worker] reactor.Flux.Interval.9                  : onSubscribe(FluxInterval.IntervalRunnable)
2019-02-14 05:46:10.018  INFO 3868 --- [    Test worker] reactor.Flux.Interval.9                  : request(1)
2019-02-14 05:46:11.021  INFO 3868 --- [     parallel-1] reactor.Flux.Interval.9                  : onNext(0)
2019-02-14 05:46:11.025  INFO 3868 --- [    Test worker] reactor.Flux.Interval.9                  : request(31)
2019-02-14 05:46:12.021  INFO 3868 --- [     parallel-1] reactor.Flux.Interval.9                  : onNext(1)
2019-02-14 05:46:13.021  INFO 3868 --- [     parallel-1] reactor.Flux.Interval.9                  : onNext(2)
2019-02-14 05:46:13.024  INFO 3868 --- [     parallel-1] reactor.Flux.Interval.9                  : cancel()
2019-02-14 05:46:13.028  INFO 3868 --- [    Test worker] reactor.Mono.Just.10                     : | onSubscribe([Synchronous Fuseable] Operators.ScalarSubscription)
2019-02-14 05:46:13.028  INFO 3868 --- [    Test worker] reactor.Mono.Just.10                     : | request(unbounded)
2019-02-14 05:46:13.028  INFO 3868 --- [    Test worker] reactor.Mono.Just.10                     : | onNext(1)
2019-02-14 05:46:13.029  INFO 3868 --- [    Test worker] reactor.Mono.Just.10                     : | onComplete()
2019-02-14 05:46:13.034  INFO 3868 --- [    Test worker] reactor.Flux.Array.11                    : | onSubscribe([Synchronous Fuseable] FluxArray.ArraySubscription)
2019-02-14 05:46:13.034  INFO 3868 --- [    Test worker] reactor.Flux.Array.11                    : | request(unbounded)
2019-02-14 05:46:13.034  INFO 3868 --- [    Test worker] reactor.Flux.Array.11                    : | onNext(1)
2019-02-14 05:46:13.034  INFO 3868 --- [    Test worker] reactor.Flux.Array.11                    : | onNext(2)
2019-02-14 05:46:13.034  INFO 3868 --- [    Test worker] reactor.Flux.Array.11                    : | onNext(3)
2019-02-14 05:46:13.034  INFO 3868 --- [    Test worker] reactor.Flux.Array.11                    : | onNext(4)
2019-02-14 05:46:13.034  INFO 3868 --- [    Test worker] reactor.Flux.Array.11                    : | onComplete()
2019-02-14 05:46:13.039  INFO 3868 --- [    Test worker] reactor.Flux.Array.12                    : | onSubscribe([Synchronous Fuseable] FluxArray.ArraySubscription)
2019-02-14 05:46:13.039  INFO 3868 --- [    Test worker] reactor.Flux.Array.12                    : | request(unbounded)
2019-02-14 05:46:13.039  INFO 3868 --- [    Test worker] reactor.Flux.Array.12                    : | onNext(1)
2019-02-14 05:46:13.039  INFO 3868 --- [    Test worker] reactor.Flux.Array.12                    : | onNext(2)
2019-02-14 05:46:13.039  INFO 3868 --- [    Test worker] reactor.Flux.Array.12                    : | onNext(3)
2019-02-14 05:46:13.039  INFO 3868 --- [    Test worker] reactor.Flux.Array.12                    : | onNext(4)
2019-02-14 05:46:13.039  INFO 3868 --- [    Test worker] reactor.Flux.Array.12                    : | onComplete()
2019-02-14 05:46:13.046  INFO 3868 --- [    Test worker] reactor.Flux.Array.13                    : | onSubscribe([Synchronous Fuseable] FluxArray.ArraySubscription)
2019-02-14 05:46:13.046  INFO 3868 --- [    Test worker] reactor.Flux.Array.13                    : | request(unbounded)
2019-02-14 05:46:13.046  INFO 3868 --- [    Test worker] reactor.Flux.Array.13                    : | onNext(1)
2019-02-14 05:46:13.046  INFO 3868 --- [    Test worker] reactor.Flux.Array.13                    : | onNext(2)
2019-02-14 05:46:13.046  INFO 3868 --- [    Test worker] reactor.Flux.Array.13                    : | onNext(3)
2019-02-14 05:46:13.046  INFO 3868 --- [    Test worker] reactor.Flux.Array.13                    : | onNext(4)
2019-02-14 05:46:13.046  INFO 3868 --- [    Test worker] reactor.Flux.Array.13                    : | onComplete()
2019-02-14 05:46:13.052  INFO 3868 --- [    Test worker] reactor.Flux.Array.14                    : | onSubscribe([Synchronous Fuseable] FluxArray.ArraySubscription)
2019-02-14 05:46:13.052  INFO 3868 --- [    Test worker] reactor.Flux.Array.14                    : | request(unbounded)
2019-02-14 05:46:13.053  INFO 3868 --- [    Test worker] reactor.Flux.Array.14                    : | onNext(1)
2019-02-14 05:46:13.053  INFO 3868 --- [    Test worker] reactor.Flux.Array.14                    : | onNext(2)
2019-02-14 05:46:13.053  INFO 3868 --- [    Test worker] reactor.Flux.Array.14                    : | onNext(3)
2019-02-14 05:46:13.053  INFO 3868 --- [    Test worker] reactor.Flux.Array.14                    : | onNext(4)
2019-02-14 05:46:13.053  INFO 3868 --- [    Test worker] reactor.Flux.Array.14                    : | onComplete()