/
githubmirror
/
RxJava
Обзор
Документация
Войти
/
githubmirror
/
RxJava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
src/test/java/io/reactivex/rxjava4/observable/ObservableTest.java
982 строки
31 KB
David Karnok
4.x: Streamable + takeUntil + groupBy + refactor + helpers (#8215)
05 июл 2026, 01:45
Не верифицирован
05 июл 2026, 01:45
580b39c
Код
Авторство
О чём код?
/* * 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.rxjava4.observable; import static org.junit.jupiter.api.Assertions.*; import static org.mockito.ArgumentMatchers.*; import static org.mockito.Mockito.*; import java.util.*; import java.util.concurrent.*; import java.util.concurrent.atomic.*; import org.junit.jupiter.api.*; import org.mockito.InOrder; import io.reactivex.rxjava4.core.*; import io.reactivex.rxjava4.core.Observable; import io.reactivex.rxjava4.core.Observer; import io.reactivex.rxjava4.disposables.Disposable; import io.reactivex.rxjava4.functions.*; import io.reactivex.rxjava4.internal.functions.Functions; import io.reactivex.rxjava4.observers.*; import io.reactivex.rxjava4.schedulers.*; import io.reactivex.rxjava4.subjects.*; import io.reactivex.rxjava4.testsupport.*; public class ObservableTest extends RxJavaTest { Observer<Number> w; SingleObserver<Number> wo; MaybeObserver<Number> wm; private static final Predicate<Integer> IS_EVEN = v -> v % 2 == 0; @BeforeEach public void before() { w = TestHelper.mockObserver(); wo = TestHelper.mockSingleObserver(); wm = TestHelper.mockMaybeObserver(); } @Test public void fromArray() { String[] items = new String[] { "one", "two", "three" }; assertEquals((Long)3L, Observable.fromArray(items).count().blockingGet()); assertEquals("two", Observable.fromArray(items).skip(1).take(1).blockingSingle()); assertEquals("three", Observable.fromArray(items).takeLast(1).blockingSingle()); } @Test public void fromIterable() { ArrayList<String> items = new ArrayList<>(); items.add("one"); items.add("two"); items.add("three"); assertEquals((Long)3L, Observable.fromIterable(items).count().blockingGet()); assertEquals("two", Observable.fromIterable(items).skip(1).take(1).blockingSingle()); assertEquals("three", Observable.fromIterable(items).takeLast(1).blockingSingle()); } @Test public void fromArityArgs3() { Observable<String> items = Observable.just("one", "two", "three"); assertEquals((Long)3L, items.count().blockingGet()); assertEquals("two", items.skip(1).take(1).blockingSingle()); assertEquals("three", items.takeLast(1).blockingSingle()); } @Test public void fromArityArgs1() { Observable<String> items = Observable.just("one"); assertEquals((Long)1L, items.count().blockingGet()); assertEquals("one", items.takeLast(1).blockingSingle()); } @Test public void create() { Observable<String> o = Observable.just("one", "two", "three"); Observer<String> observer = TestHelper.mockObserver(); o.subscribe(observer); verify(observer, times(1)).onNext("one"); verify(observer, times(1)).onNext("two"); verify(observer, times(1)).onNext("three"); verify(observer, never()).onError(any(Throwable.class)); verify(observer, times(1)).onComplete(); } @Test public void countAFewItemsObservable() { Observable<String> o = Observable.just("a", "b", "c", "d"); o.count().toObservable().subscribe(w); // we should be called only once verify(w, times(1)).onNext(anyLong()); verify(w).onNext(4L); verify(w, never()).onError(any(Throwable.class)); verify(w, times(1)).onComplete(); } @Test public void countZeroItemsObservable() { Observable<String> o = Observable.empty(); o.count().toObservable().subscribe(w); // we should be called only once verify(w, times(1)).onNext(anyLong()); verify(w).onNext(0L); verify(w, never()).onError(any(Throwable.class)); verify(w, times(1)).onComplete(); } @Test public void countErrorObservable() { Observable<String> o = Observable.error(RuntimeException::new); o.count().toObservable().subscribe(w); verify(w, never()).onNext(anyInt()); verify(w, never()).onComplete(); verify(w, times(1)).onError(any(RuntimeException.class)); } @Test public void countAFewItems() { Observable<String> o = Observable.just("a", "b", "c", "d"); o.count().subscribe(wo); // we should be called only once verify(wo, times(1)).onSuccess(anyLong()); verify(wo).onSuccess(4L); verify(wo, never()).onError(any(Throwable.class)); } @Test public void countZeroItems() { Observable<String> o = Observable.empty(); o.count().subscribe(wo); // we should be called only once verify(wo, times(1)).onSuccess(anyLong()); verify(wo).onSuccess(0L); verify(wo, never()).onError(any(Throwable.class)); } @Test public void countError() { Observable<String> o = Observable.error(RuntimeException::new); o.count().subscribe(wo); verify(wo, never()).onSuccess(anyInt()); verify(wo, times(1)).onError(any(RuntimeException.class)); } @Test public void takeFirstWithPredicateOfSome() { Observable<Integer> o = Observable.just(1, 3, 5, 4, 6, 3); o.filter(IS_EVEN).take(1).subscribe(w); verify(w, times(1)).onNext(anyInt()); verify(w).onNext(4); verify(w, times(1)).onComplete(); verify(w, never()).onError(any(Throwable.class)); } @Test public void takeFirstWithPredicateOfNoneMatchingThePredicate() { Observable<Integer> o = Observable.just(1, 3, 5, 7, 9, 7, 5, 3, 1); o.filter(IS_EVEN).take(1).subscribe(w); verify(w, never()).onNext(anyInt()); verify(w, times(1)).onComplete(); verify(w, never()).onError(any(Throwable.class)); } @Test public void takeFirstOfSome() { Observable<Integer> o = Observable.just(1, 2, 3); o.take(1).subscribe(w); verify(w, times(1)).onNext(anyInt()); verify(w).onNext(1); verify(w, times(1)).onComplete(); verify(w, never()).onError(any(Throwable.class)); } @Test public void takeFirstOfNone() { Observable<Integer> o = Observable.empty(); o.take(1).subscribe(w); verify(w, never()).onNext(anyInt()); verify(w, times(1)).onComplete(); verify(w, never()).onError(any(Throwable.class)); } @Test public void firstOfNone() { Observable<Integer> o = Observable.empty(); o.firstElement().subscribe(wm); verify(wm, never()).onSuccess(anyInt()); verify(wm).onComplete(); verify(wm, never()).onError(any(Throwable.class)); } @Test public void firstWithPredicateOfNoneMatchingThePredicate() { Observable<Integer> o = Observable.just(1, 3, 5, 7, 9, 7, 5, 3, 1); o.filter(IS_EVEN).firstElement().subscribe(wm); verify(wm, never()).onSuccess(anyInt()); verify(wm).onComplete(); verify(wm, never()).onError(any(Throwable.class)); } @Test public void reduce() { Observable<Integer> o = Observable.just(1, 2, 3, 4); o.reduce(Integer::sum) .subscribe(wm); // we should be called only once verify(wm, times(1)).onSuccess(anyInt()); verify(wm).onSuccess(10); verify(wm, never()).onError(any(Throwable.class)); verify(wm, never()).onComplete(); } @Test public void reduceObservable() { Observable<Integer> o = Observable.just(1, 2, 3, 4); o.reduce(Integer::sum) .toObservable() .subscribe(w); // we should be called only once verify(w, times(1)).onNext(anyInt()); verify(w).onNext(10); verify(w, never()).onError(any(Throwable.class)); verify(w).onComplete(); } @Test public void reduceWithEmptyObservable() { Observable<Integer> o = Observable.range(1, 0); o.reduce(Integer::sum) .toObservable() .test() .assertResult(); } /** * A reduce on an empty Observable and a seed should just pass the seed through. * * This is confirmed at https://github.com/ReactiveX/RxJava/issues/423#issuecomment-27642456 */ @Test public void reduceWithEmptyObservableAndSeed() { Observable<Integer> o = Observable.range(1, 0); int value = o.reduce(1, Integer::sum) .blockingGet(); assertEquals(1, value); } @Test public void reduceWithInitialValue() { Observable<Integer> o = Observable.just(1, 2, 3, 4); o.reduce(50, Integer::sum) .subscribe(wo); // we should be called only once verify(wo, times(1)).onSuccess(anyInt()); verify(wo).onSuccess(60); verify(wo, never()).onError(any(Throwable.class)); } @Test public void reduceWithInitialValueObservable() { Observable<Integer> o = Observable.just(1, 2, 3, 4); o.reduce(50, Integer::sum) .toObservable() .subscribe(w); // we should be called only once verify(w, times(1)).onNext(anyInt()); verify(w).onNext(60); } @Test public void materializeDematerializeChaining() { Observable<Integer> obs = Observable.just(1); Observable<Integer> chained = obs.materialize() .dematerialize(Functions.<Notification<Integer>>identity()); Observer<Integer> observer = TestHelper.mockObserver(); chained.subscribe(observer); verify(observer, times(1)).onNext(1); verify(observer, times(1)).onComplete(); verify(observer, times(0)).onError(any(Throwable.class)); } /** * The error from the user provided Observer is not handled by the subscribe method try/catch. * * It is handled by the AtomicObserver that wraps the provided Observer. * * Result: Passes (if AtomicObserver functionality exists) * @throws InterruptedException if the test is interrupted */ @Test public void customObservableWithErrorInObserverAsynchronous() throws InterruptedException { final CountDownLatch latch = new CountDownLatch(1); final AtomicInteger count = new AtomicInteger(); final AtomicReference<Throwable> error = new AtomicReference<>(); // FIXME custom built??? Observable.just("1", "2", "three", "4") .subscribeOn(Schedulers.newThread()) .safeSubscribe(new DefaultObserver<>() /* NFI */ { @Override public void onComplete() { System.out.println("completed"); latch.countDown(); } @Override public void onError(Throwable e) { error.set(e); System.out.println("error"); e.printStackTrace(); latch.countDown(); } @Override public void onNext(String v) { int num = Integer.parseInt(v); System.out.println(num); // doSomething(num); count.incrementAndGet(); } }); // wait for async sequence to complete latch.await(); assertEquals(2, count.get()); assertNotNull(error.get()); if (!(error.get() instanceof NumberFormatException)) { fail("It should be a NumberFormatException"); } } /** * The error from the user provided Observer is handled by the subscribe try/catch because this is synchronous. * * Result: Passes */ @Test public void customObservableWithErrorInObserverSynchronous() { final AtomicInteger count = new AtomicInteger(); final AtomicReference<Throwable> error = new AtomicReference<>(); // FIXME custom built??? Observable.just("1", "2", "three", "4") .safeSubscribe(new DefaultObserver<>() /* NFI */ { @Override public void onComplete() { System.out.println("completed"); } @Override public void onError(Throwable e) { error.set(e); System.out.println("error"); e.printStackTrace(); } @Override public void onNext(String v) { int num = Integer.parseInt(v); System.out.println(num); // doSomething(num); count.incrementAndGet(); } }); assertEquals(2, count.get()); assertNotNull(error.get()); if (!(error.get() instanceof NumberFormatException)) { fail("It should be a NumberFormatException"); } } /** * The error from the user provided Observable is handled by the subscribe try/catch because this is synchronous. * * * Result: Passes */ @Test public void customObservableWithErrorInObservableSynchronous() { final AtomicInteger count = new AtomicInteger(); final AtomicReference<Throwable> error = new AtomicReference<>(); // FIXME custom built??? Observable.just("1", "2").concatWith(Observable.<String>error(NumberFormatException::new)) .subscribe(new DefaultObserver<>() /* NFI */ { @Override public void onComplete() { System.out.println("completed"); } @Override public void onError(Throwable e) { error.set(e); System.out.println("error"); e.printStackTrace(); } @Override public void onNext(String v) { System.out.println(v); count.incrementAndGet(); } }); assertEquals(2, count.get()); assertNotNull(error.get()); if (!(error.get() instanceof NumberFormatException)) { fail("It should be a NumberFormatException"); } } @Test public void publishLast() throws InterruptedException { final AtomicInteger count = new AtomicInteger(); ConnectableObservable<String> connectable = Observable.<String>unsafeCreate(observer -> { observer.onSubscribe(Disposable.empty()); count.incrementAndGet(); new Thread(() -> { observer.onNext("first"); observer.onNext("last"); observer.onComplete(); }).start(); }).takeLast(1).publish(); // subscribe once final CountDownLatch latch = new CountDownLatch(1); connectable.subscribe(value -> { assertEquals("last", value); latch.countDown(); }); // subscribe twice connectable.subscribe(); Disposable subscription = connectable.connect(); assertTrue(latch.await(1000, TimeUnit.MILLISECONDS)); assertEquals(1, count.get()); subscription.dispose(); } @Test public void replay() throws InterruptedException { final AtomicInteger counter = new AtomicInteger(); ConnectableObservable<String> o = Observable.<String>unsafeCreate(observer -> { observer.onSubscribe(Disposable.empty()); new Thread(() -> { counter.incrementAndGet(); observer.onNext("one"); observer.onComplete(); }).start(); }).replay(); // we connect immediately and it will emit the value Disposable connection = o.connect(); try { // we then expect the following 2 subscriptions to get that same value final CountDownLatch latch = new CountDownLatch(2); // subscribe once o.subscribe(v -> { assertEquals("one", v); latch.countDown(); }); // subscribe again o.subscribe(v -> { assertEquals("one", v); latch.countDown(); }); if (!latch.await(1000, TimeUnit.MILLISECONDS)) { fail("subscriptions did not receive values"); } assertEquals(1, counter.get()); } finally { connection.dispose(); } } @Test public void cache() throws InterruptedException { final AtomicInteger counter = new AtomicInteger(); Observable<String> o = Observable.<String>unsafeCreate(observer -> { observer.onSubscribe(Disposable.empty()); new Thread(() -> { counter.incrementAndGet(); observer.onNext("one"); observer.onComplete(); }).start(); }).cache(); // we then expect the following 2 subscriptions to get that same value final CountDownLatch latch = new CountDownLatch(2); // subscribe once o.subscribe(v -> { assertEquals("one", v); latch.countDown(); }); // subscribe again o.subscribe(v -> { assertEquals("one", v); latch.countDown(); }); if (!latch.await(1000, TimeUnit.MILLISECONDS)) { fail("subscriptions did not receive values"); } assertEquals(1, counter.get()); } @Test public void cacheWithCapacity() throws InterruptedException { final AtomicInteger counter = new AtomicInteger(); Observable<String> o = Observable.<String>unsafeCreate(observer -> { observer.onSubscribe(Disposable.empty()); new Thread(() -> { counter.incrementAndGet(); observer.onNext("one"); observer.onComplete(); }).start(); }).cacheWithInitialCapacity(1); // we then expect the following 2 subscriptions to get that same value final CountDownLatch latch = new CountDownLatch(2); // subscribe once o.subscribe(v -> { assertEquals("one", v); latch.countDown(); }); // subscribe again o.subscribe(v -> { assertEquals("one", v); latch.countDown(); }); if (!latch.await(1000, TimeUnit.MILLISECONDS)) { fail("subscriptions did not receive values"); } assertEquals(1, counter.get()); } @Test public void takeWithErrorInObserver() { final AtomicInteger count = new AtomicInteger(); final AtomicReference<Throwable> error = new AtomicReference<>(); Observable.just("1", "2", "three", "4").take(3) .safeSubscribe(new DefaultObserver<>() /* NFI */ { @Override public void onComplete() { System.out.println("completed"); } @Override public void onError(Throwable e) { error.set(e); System.out.println("error"); e.printStackTrace(); } @Override public void onNext(String v) { int num = Integer.parseInt(v); System.out.println(num); // doSomething(num); count.incrementAndGet(); } }); assertEquals(2, count.get()); assertNotNull(error.get()); if (!(error.get() instanceof NumberFormatException)) { fail("It should be a NumberFormatException"); } } @Test public void ofType() { Observable<String> o = Observable.just(1, "abc", false, 2L).ofType(String.class); Observer<Object> observer = TestHelper.mockObserver(); o.subscribe(observer); verify(observer, never()).onNext(1); verify(observer, times(1)).onNext("abc"); verify(observer, never()).onNext(false); verify(observer, never()).onNext(2L); verify(observer, never()).onError( any(Throwable.class)); verify(observer, times(1)).onComplete(); } @Test public void ofTypeWithPolymorphism() { ArrayList<Integer> l1 = new ArrayList<>(); l1.add(1); LinkedList<Integer> l2 = new LinkedList<>(); l2.add(2); @SuppressWarnings("rawtypes") Observable<List> o = Observable.<Object> just(l1, l2, "123").ofType(List.class); Observer<Object> observer = TestHelper.mockObserver(); o.subscribe(observer); verify(observer, times(1)).onNext(l1); verify(observer, times(1)).onNext(l2); verify(observer, never()).onNext("123"); verify(observer, never()).onError( any(Throwable.class)); verify(observer, times(1)).onComplete(); } @Test public void containsObservable() { Observable<Boolean> o = Observable.just("a", "b", "c").contains("b").toObservable(); Observer<Boolean> observer = TestHelper.mockObserver(); o.subscribe(observer); verify(observer, times(1)).onNext(true); verify(observer, never()).onNext(false); verify(observer, never()).onError( any(Throwable.class)); verify(observer, times(1)).onComplete(); } @Test public void containsWithInexistenceObservable() { Observable<Boolean> o = Observable.just("a", "b").contains("c").toObservable(); Observer<Object> observer = TestHelper.mockObserver(); o.subscribe(observer); verify(observer, times(1)).onNext(false); verify(observer, never()).onNext(true); verify(observer, never()).onError( any(Throwable.class)); verify(observer, times(1)).onComplete(); } @Test public void containsWithEmptyObservableObservable() { Observable<Boolean> o = Observable.<String> empty().contains("a").toObservable(); Observer<Object> observer = TestHelper.mockObserver(); o.subscribe(observer); verify(observer, times(1)).onNext(false); verify(observer, never()).onNext(true); verify(observer, never()).onError( any(Throwable.class)); verify(observer, times(1)).onComplete(); } @Test public void contains() { Single<Boolean> o = Observable.just("a", "b", "c").contains("b"); // FIXME nulls not allowed, changed to "c" SingleObserver<Boolean> observer = TestHelper.mockSingleObserver(); o.subscribe(observer); verify(observer, times(1)).onSuccess(true); verify(observer, never()).onSuccess(false); verify(observer, never()).onError( any(Throwable.class)); } @Test public void containsWithInexistence() { Single<Boolean> o = Observable.just("a", "b").contains("c"); // FIXME null values are not allowed, removed SingleObserver<Object> observer = TestHelper.mockSingleObserver(); o.subscribe(observer); verify(observer, times(1)).onSuccess(false); verify(observer, never()).onSuccess(true); verify(observer, never()).onError( any(Throwable.class)); } @Test public void containsWithEmptyObservable() { Single<Boolean> o = Observable.<String> empty().contains("a"); SingleObserver<Object> observer = TestHelper.mockSingleObserver(); o.subscribe(observer); verify(observer, times(1)).onSuccess(false); verify(observer, never()).onSuccess(true); verify(observer, never()).onError( any(Throwable.class)); } @Test public void ignoreElements() { Completable o = Observable.just(1, 2, 3).ignoreElements(); CompletableObserver observer = TestHelper.mockCompletableObserver(); o.subscribe(observer); verify(observer, never()).onError(any(Throwable.class)); verify(observer, times(1)).onComplete(); } @Test public void ignoreElementsObservable() { Observable<Integer> o = Observable.just(1, 2, 3).ignoreElements().toObservable(); Observer<Object> observer = TestHelper.mockObserver(); o.subscribe(observer); verify(observer, never()).onNext(any(Integer.class)); verify(observer, never()).onError(any(Throwable.class)); verify(observer, times(1)).onComplete(); } @Test public void justWithScheduler() { TestScheduler scheduler = new TestScheduler(); Observable<Integer> o = Observable.fromArray(1, 2).subscribeOn(scheduler); Observer<Integer> observer = TestHelper.mockObserver(); o.subscribe(observer); scheduler.advanceTimeBy(1, TimeUnit.MILLISECONDS); InOrder inOrder = inOrder(observer); inOrder.verify(observer, times(1)).onNext(1); inOrder.verify(observer, times(1)).onNext(2); inOrder.verify(observer, times(1)).onComplete(); inOrder.verifyNoMoreInteractions(); } @Test public void startWithWithScheduler() { TestScheduler scheduler = new TestScheduler(); Observable<Integer> o = Observable.just(3, 4).startWithIterable(Arrays.asList(1, 2)).subscribeOn(scheduler); Observer<Integer> observer = TestHelper.mockObserver(); o.subscribe(observer); scheduler.advanceTimeBy(1, TimeUnit.MILLISECONDS); InOrder inOrder = inOrder(observer); inOrder.verify(observer, times(1)).onNext(1); inOrder.verify(observer, times(1)).onNext(2); inOrder.verify(observer, times(1)).onNext(3); inOrder.verify(observer, times(1)).onNext(4); inOrder.verify(observer, times(1)).onComplete(); inOrder.verifyNoMoreInteractions(); } @Test public void rangeWithScheduler() { TestScheduler scheduler = new TestScheduler(); Observable<Integer> o = Observable.range(3, 4).subscribeOn(scheduler); Observer<Integer> observer = TestHelper.mockObserver(); o.subscribe(observer); scheduler.advanceTimeBy(1, TimeUnit.MILLISECONDS); InOrder inOrder = inOrder(observer); inOrder.verify(observer, times(1)).onNext(3); inOrder.verify(observer, times(1)).onNext(4); inOrder.verify(observer, times(1)).onNext(5); inOrder.verify(observer, times(1)).onNext(6); inOrder.verify(observer, times(1)).onComplete(); inOrder.verifyNoMoreInteractions(); } @Test public void mergeWith() { TestObserver<Integer> to = new TestObserver<>(); Observable.just(1).mergeWith(Observable.just(2)).subscribe(to); to.assertValues(1, 2); } @Test public void concatWith() { TestObserver<Integer> to = new TestObserver<>(); Observable.just(1).concatWith(Observable.just(2)).subscribe(to); to.assertValues(1, 2); } @Test public void ambWith() { TestObserver<Integer> to = new TestObserver<>(); Observable.just(1).ambWith(Observable.just(2)).subscribe(to); to.assertValue(1); } @Test public void takeWhileToList() { final int expectedCount = 3; final AtomicInteger count = new AtomicInteger(); for (int i = 0; i < expectedCount; i++) { Observable .just(Boolean.TRUE, Boolean.FALSE) .takeWhile(v -> v) .toList() .doOnSuccess(_ -> count.incrementAndGet()) .subscribe(); } assertEquals(expectedCount, count.get()); } @Test public void compose() { TestObserverEx<String> to = new TestObserverEx<>(); Observable.just(1, 2, 3).compose(t1 -> t1.map(String::valueOf)) .subscribe(to); to.assertTerminated(); to.assertNoErrors(); to.assertValues("1", "2", "3"); } @Test public void errorThrownIssue1685() { Subject<Object> subject = ReplaySubject.create(); Observable.error(new RuntimeException("oops")) .materialize() .delay(1, TimeUnit.SECONDS) .dematerialize(Functions.<Notification<Object>>identity()) .subscribe(subject); subject.subscribe(); subject.materialize().blockingFirst(); System.out.println("Done"); } @Test public void emptyIdentity() { assertEquals(Observable.empty(), Observable.empty()); } @Test public void emptyIsEmpty() { Observable.<Integer>empty().subscribe(w); verify(w).onComplete(); verify(w, never()).onNext(any(Integer.class)); verify(w, never()).onError(any(Throwable.class)); } @Test public void extend() { final TestObserver<Object> to = new TestObserver<>(); final Object value = new Object(); Object returned = Observable.just(value).to(onSubscribe -> { onSubscribe.subscribe(to); to.assertNoErrors(); to.assertComplete(); to.assertValue(value); return to.values().getFirst(); }); assertSame(returned, value); } @Test public void asExtend() { final TestObserver<Object> to = new TestObserver<>(); final Object value = new Object(); Object returned = Observable.just(value).to(onSubscribe -> { onSubscribe.subscribe(to); to.assertNoErrors(); to.assertComplete(); to.assertValue(value); return to.values().getFirst(); }); assertSame(returned, value); } @Test public void as() { Observable.just(1).to(v -> v.toFlowable(BackpressureStrategy.MISSING)) .test() .assertResult(1); } @Test public void flatMap() { List<Integer> list = Observable.range(1, 5).flatMap((Function<Integer, Observable<Integer>>) v -> Observable.range(v, 2)).toList().blockingGet(); assertEquals(Arrays.asList(1, 2, 2, 3, 3, 4, 4, 5, 5, 6), list); } @Test public void singleDefault() { Observable.just(1).single(100).test().assertResult(1); Observable.empty().single(100).test().assertResult(100); } @Test public void singleDefaultObservable() { Observable.just(1).single(100).toObservable().test().assertResult(1); Observable.empty().single(100).toObservable().test().assertResult(100); } @Test public void zipIterableObject() { final List<Observable<Integer>> observables = Arrays.asList(Observable.just(1, 2, 3), Observable.just(1, 2, 3)); Observable.zip(observables, (Function<Object[], Object>) o -> { int sum = 0; for (Object i : o) { sum += (Integer) i; } return sum; }).test().assertResult(2, 4, 6); } @Test public void combineLatestObject() { final List<Observable<Integer>> observables = Arrays.asList(Observable.just(1, 2, 3), Observable.just(1, 2, 3)); Observable.combineLatest(observables, (Function<Object[], Object>) o -> { int sum = 1; for (Object i : o) { sum *= (Integer) i; } return sum; }).test().assertResult(3, 6, 9); } }