/** * Copyright (c) 2016-present, RxJava Contributors. * * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in * compliance with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software distributed under the License is * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See * the License for the specific language governing permissions and limitations under the License. */ package io.reactivex.internal.operators.observable; import static org.mockito.Mockito.*; import java.util.concurrent.TimeUnit; import org.junit.*; import org.mockito.InOrder; import io.reactivex.*; import io.reactivex.exceptions.TestException; import io.reactivex.functions.Function; import io.reactivex.plugins.RxJavaPlugins; import io.reactivex.schedulers.*; import io.reactivex.subjects.PublishSubject; public class ObservableTimeIntervalTest { private static final TimeUnit TIME_UNIT = TimeUnit.MILLISECONDS; private Observer<Timed<Integer>> observer; private TestScheduler testScheduler; private PublishSubject<Integer> subject; private Observable<Timed<Integer>> observable; @Before public void setUp() { observer = TestHelper.mockObserver(); testScheduler = new TestScheduler(); subject = PublishSubject.create(); observable = subject.timeInterval(testScheduler); } @Test public void testTimeInterval() { InOrder inOrder = inOrder(observer); observable.subscribe(observer); testScheduler.advanceTimeBy(1000, TIME_UNIT); subject.onNext(1); testScheduler.advanceTimeBy(2000, TIME_UNIT); subject.onNext(2); testScheduler.advanceTimeBy(3000, TIME_UNIT); subject.onNext(3); subject.onComplete(); inOrder.verify(observer, times(1)).onNext( new Timed<Integer>(1, 1000, TIME_UNIT)); inOrder.verify(observer, times(1)).onNext( new Timed<Integer>(2, 2000, TIME_UNIT)); inOrder.verify(observer, times(1)).onNext( new Timed<Integer>(3, 3000, TIME_UNIT)); inOrder.verify(observer, times(1)).onComplete(); inOrder.verifyNoMoreInteractions(); } @Test public void timeIntervalDefault() { final TestScheduler scheduler = new TestScheduler(); RxJavaPlugins.setComputationSchedulerHandler(new Function<Scheduler, Scheduler>() { @Override public Scheduler apply(Scheduler v) throws Exception { return scheduler; } }); try { Observable.range(1, 5) .timeInterval() .map(new Function<Timed<Integer>, Long>() { @Override public Long apply(Timed<Integer> v) throws Exception { return v.time(); } }) .test() .assertResult(0L, 0L, 0L, 0L, 0L); } finally { RxJavaPlugins.reset(); } } @Test public void timeIntervalDefaultSchedulerCustomUnit() { final TestScheduler scheduler = new TestScheduler(); RxJavaPlugins.setComputationSchedulerHandler(new Function<Scheduler, Scheduler>() { @Override public Scheduler apply(Scheduler v) throws Exception { return scheduler; } }); try { Observable.range(1, 5) .timeInterval(TimeUnit.SECONDS) .map(new Function<Timed<Integer>, Long>() { @Override public Long apply(Timed<Integer> v) throws Exception { return v.time(); } }) .test() .assertResult(0L, 0L, 0L, 0L, 0L); } finally { RxJavaPlugins.reset(); } } @Test public void dispose() { TestHelper.checkDisposed(Observable.just(1).timeInterval()); } @SuppressWarnings("unchecked") @Test public void error() { Observable.error(new TestException()) .timeInterval() .test() .assertFailure(TestException.class); } }