Java Code Examples for io.reactivex.schedulers.TestScheduler#triggerActions()
The following examples show how to use
io.reactivex.schedulers.TestScheduler#triggerActions() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NonBlockingPoolTest.java From rxjava2-jdbc with Apache License 2.0 | 6 votes |
@Test public void testMaxIdleTime() throws InterruptedException { TestScheduler s = new TestScheduler(); AtomicInteger count = new AtomicInteger(); AtomicInteger disposed = new AtomicInteger(); Pool<Integer> pool = NonBlockingPool // .factory(() -> count.incrementAndGet()) // .healthCheck(n -> true) // .maxSize(3) // .maxIdleTime(1, TimeUnit.MINUTES) // .disposer(n -> disposed.incrementAndGet()) // .scheduler(s) // .build(); TestSubscriber<Member<Integer>> ts = new FlowableSingleDeferUntilRequest<>( // pool.member()) // .doOnNext(m -> m.checkin()) // .doOnNext(System.out::println) // .doOnRequest(t -> System.out.println("test request=" + t)) // .test(1); s.triggerActions(); ts.assertValueCount(1); assertEquals(0, disposed.get()); s.advanceTimeBy(1, TimeUnit.MINUTES); s.triggerActions(); assertEquals(1, disposed.get()); }
Example 2
Source File: NonBlockingPoolTest.java From rxjava2-jdbc with Apache License 2.0 | 6 votes |
@Test public void testConnectionPoolRecylesAlternating() { TestScheduler s = new TestScheduler(); AtomicInteger count = new AtomicInteger(); Pool<Integer> pool = NonBlockingPool // .factory(() -> count.incrementAndGet()) // .healthCheck(n -> true) // .maxSize(2) // .maxIdleTime(1, TimeUnit.MINUTES) // .scheduler(s) // .build(); TestSubscriber<Integer> ts = new FlowableSingleDeferUntilRequest<>(pool.member()) // .repeat() // .doOnNext(m -> m.checkin()) // .map(m -> m.value()) // .test(4); // s.triggerActions(); ts.assertValueCount(4) // .assertNotTerminated(); List<Object> list = ts.getEvents().get(0); // all 4 connections released were the same assertTrue(list.get(0) == list.get(1)); assertTrue(list.get(1) == list.get(2)); assertTrue(list.get(2) == list.get(3)); }
Example 3
Source File: NonBlockingPoolTest.java From rxjava2-jdbc with Apache License 2.0 | 6 votes |
@Test public void testMemberAvailableAfterCreationScheduledIsUsedImmediately() throws InterruptedException { TestScheduler ts = new TestScheduler(); Scheduler s = createScheduleToDelayCreation(ts); AtomicInteger count = new AtomicInteger(); Pool<Integer> pool = NonBlockingPool // .factory(() -> count.incrementAndGet()) // .createRetryInterval(10, TimeUnit.MINUTES) // .maxSize(2) // .maxIdleTime(1, TimeUnit.HOURS) // .scheduler(s) // .build(); List<Member<Integer>> list = new ArrayList<Member<Integer>>(); pool.member().doOnSuccess(m -> list.add(m)).subscribe(); assertEquals(0, list.size()); ts.advanceTimeBy(1, TimeUnit.MINUTES); ts.triggerActions(); assertEquals(1, list.size()); pool.member().doOnSuccess(m -> list.add(m)).subscribe(); list.get(0).checkin(); ts.triggerActions(); assertEquals(2, list.size()); }
Example 4
Source File: TransformersTest.java From mobius with Apache License 2.0 | 5 votes |
@Test public void effectPerformerRunsActionOnSchedulerWheneverEffectIsRequested() throws Exception { PublishSubject<String> upstream = PublishSubject.create(); TestAction action = new TestAction(); TestScheduler scheduler = new TestScheduler(); upstream.compose(Transformers.fromAction(action, scheduler)).subscribe(); upstream.onNext("First Time"); assertThat(action.getRunCount(), is(0)); scheduler.triggerActions(); assertThat(action.getRunCount(), is(1)); }
Example 5
Source File: TransformersTest.java From mobius with Apache License 2.0 | 5 votes |
@Test public void effectPerformerInvokesConsumerOnSchedulerAndPassesTheRequestedEffect() throws Exception { PublishSubject<String> upstream = PublishSubject.create(); TestConsumer<String> consumer = new TestConsumer<>(); TestScheduler scheduler = new TestScheduler(); upstream.compose(Transformers.fromConsumer(consumer, scheduler)).subscribe(); upstream.onNext("First Time"); assertThat(consumer.getCurrentValue(), is(equalTo(null))); scheduler.triggerActions(); assertThat(consumer.getCurrentValue(), is("First Time")); }
Example 6
Source File: TransformersTest.java From mobius with Apache License 2.0 | 5 votes |
@Test public void effectPerformerInvokesFunctionWithReceivedEffectAndEmitsReturnedEvents() { PublishSubject<String> upstream = PublishSubject.create(); TestScheduler scheduler = new TestScheduler(); Function<String, Integer> function = s -> s.length(); TestObserver<Integer> observer = upstream.compose(Transformers.fromFunction(function, scheduler)).test(); upstream.onNext("Hello"); scheduler.triggerActions(); observer.assertValue(5); }
Example 7
Source File: TransformersTest.java From mobius with Apache License 2.0 | 5 votes |
@Test public void effectPerformerInvokesFunctionWithReceivedEffectAndErrorsForUnhandledExceptions() { PublishSubject<String> upstream = PublishSubject.create(); TestScheduler scheduler = new TestScheduler(); Function<String, Integer> function = s -> { throw new RuntimeException("Something bad happened"); }; TestObserver<Integer> observer = upstream.compose(Transformers.fromFunction(function, scheduler)).test(); upstream.onNext("Hello"); scheduler.triggerActions(); observer.assertError(RuntimeException.class); }
Example 8
Source File: NonBlockingPoolTest.java From rxjava2-jdbc with Apache License 2.0 | 5 votes |
@Test public void testMaxIdleTimeResetIfUsed() throws InterruptedException { TestScheduler s = new TestScheduler(); AtomicInteger count = new AtomicInteger(); AtomicInteger disposed = new AtomicInteger(); Pool<Integer> pool = NonBlockingPool // .factory(() -> count.incrementAndGet()) // .healthCheck(n -> true) // .maxSize(1) // .maxIdleTime(2, TimeUnit.MINUTES) // .disposer(n -> disposed.incrementAndGet()) // .scheduler(s) // .build(); Single<Member<Integer>> member = pool.member() // .doOnSuccess(System.out::println) // .doOnSuccess(m -> m.checkin()); member.subscribe(); s.triggerActions(); assertEquals(0, disposed.get()); s.advanceTimeBy(1, TimeUnit.MINUTES); s.triggerActions(); member.subscribe(); s.advanceTimeBy(1, TimeUnit.MINUTES); s.triggerActions(); assertEquals(0, disposed.get()); s.advanceTimeBy(1, TimeUnit.MINUTES); s.triggerActions(); assertEquals(1, disposed.get()); }
Example 9
Source File: NonBlockingPoolTest.java From rxjava2-jdbc with Apache License 2.0 | 5 votes |
@Test public void testPoolFactoryWhenFailsThenRecovers() { AtomicReference<Throwable> ex = new AtomicReference<>(); Consumer<? super Throwable> handler = RxJavaPlugins.getErrorHandler(); RxJavaPlugins.setErrorHandler(t -> ex.set(t)); try { TestScheduler s = new TestScheduler(); AtomicInteger c = new AtomicInteger(); NonBlockingPool<Integer> pool = NonBlockingPool.factory(() -> { if (c.getAndIncrement() == 0) { throw new TestException(); } else { return c.get(); } }) // .maxSize(1) // .scheduler(s) // .createRetryInterval(10, TimeUnit.SECONDS) // .build(); TestObserver<Integer> ts = pool.member() // .map(m -> m.value()) // .test() // .assertNotTerminated() // .assertNoValues(); s.triggerActions(); assertTrue(ex.get() instanceof UndeliverableException); assertTrue(((UndeliverableException) ex.get()).getCause() instanceof TestException); s.advanceTimeBy(10, TimeUnit.SECONDS); s.triggerActions(); ts.assertComplete(); ts.assertValue(2); } finally { RxJavaPlugins.setErrorHandler(handler); } }
Example 10
Source File: NonBlockingPoolTest.java From rxjava2-jdbc with Apache License 2.0 | 4 votes |
@Test public void testHealthCheckWhenFails() throws Exception { TestScheduler s = new TestScheduler(); AtomicInteger count = new AtomicInteger(); AtomicInteger disposed = new AtomicInteger(); AtomicInteger healthChecks = new AtomicInteger(); Pool<Integer> pool = NonBlockingPool // .factory(() -> count.incrementAndGet()) // .healthCheck(n -> { healthChecks.incrementAndGet(); return false; }) // .createRetryInterval(10, TimeUnit.MINUTES) // .idleTimeBeforeHealthCheck(1, TimeUnit.MILLISECONDS) // .maxSize(1) // .maxIdleTime(1, TimeUnit.HOURS) // .disposer(n -> disposed.incrementAndGet()) // .scheduler(s) // .build(); { TestSubscriber<Member<Integer>> ts = new FlowableSingleDeferUntilRequest<>(pool.member()) // .repeat() // .doOnNext(System.out::println) // .doOnNext(m -> m.checkin()) // .doOnRequest(t -> System.out.println("test request=" + t)) // .test(1); s.triggerActions(); // health check doesn't get run on create ts.assertValueCount(1); assertEquals(0, disposed.get()); assertEquals(0, healthChecks.get()); // next request is immediate so health check does not run System.out.println("health check should not run because immediate"); ts.request(1); s.triggerActions(); ts.assertValueCount(2); assertEquals(0, disposed.get()); assertEquals(0, healthChecks.get()); // now try to trigger health check s.advanceTimeBy(1, TimeUnit.MILLISECONDS); s.triggerActions(); System.out.println("trying to trigger health check"); ts.request(1); s.triggerActions(); ts.assertValueCount(2); assertEquals(1, disposed.get()); assertEquals(1, healthChecks.get()); // checkout retry should happen after interval s.advanceTimeBy(10, TimeUnit.MINUTES); ts.assertValueCount(3); // failing health check causes recreate to be scheduled ts.cancel(); // already disposed so cancel has no effect assertEquals(1, disposed.get()); } }
Example 11
Source File: PSTestWithTS.java From akarnokd-misc with Apache License 2.0 | 3 votes |
@Test public void test() { String testString = "testString"; TestScheduler sch = new TestScheduler(); prepare(sch, sch); sch.triggerActions(); source.onNext(testString); sch.triggerActions(); assertEquals(testString, value); }