Search in sources :

Example 86 with PublishSubject

use of io.reactivex.rxjava3.subjects.PublishSubject in project RxJava by ReactiveX.

the class ObservableZipIterableTest method zipIterableHasNextThrows.

@Test
public void zipIterableHasNextThrows() {
    PublishSubject<String> r1 = PublishSubject.create();
    /* define an Observer to receive aggregated events */
    Observer<String> o = TestHelper.mockObserver();
    InOrder io = inOrder(o);
    Iterable<String> r2 = new Iterable<String>() {

        @Override
        public Iterator<String> iterator() {
            return new Iterator<String>() {

                int count;

                @Override
                public boolean hasNext() {
                    if (count == 0) {
                        return true;
                    }
                    throw new TestException();
                }

                @Override
                public String next() {
                    count++;
                    return "1";
                }

                @Override
                public void remove() {
                    throw new UnsupportedOperationException("Not supported yet.");
                }
            };
        }
    };
    r1.zipWith(r2, zipr2).subscribe(o);
    r1.onNext("one-");
    r1.onError(new TestException());
    io.verify(o).onNext("one-1");
    io.verify(o).onError(any(TestException.class));
    verify(o, never()).onComplete();
}
Also used : InOrder(org.mockito.InOrder) CrashingIterable(io.reactivex.rxjava3.internal.util.CrashingIterable) TestException(io.reactivex.rxjava3.exceptions.TestException)

Example 87 with PublishSubject

use of io.reactivex.rxjava3.subjects.PublishSubject in project RxJava by ReactiveX.

the class ObservableZipIterableTest method zipIterableFirstThrows.

@Test
public void zipIterableFirstThrows() {
    PublishSubject<String> r1 = PublishSubject.create();
    /* define an Observer to receive aggregated events */
    Observer<String> o = TestHelper.mockObserver();
    InOrder io = inOrder(o);
    Iterable<String> r2 = Arrays.asList("1", "2", "3");
    r1.zipWith(r2, zipr2).subscribe(o);
    r1.onNext("one-");
    r1.onNext("two-");
    r1.onError(new TestException());
    io.verify(o).onNext("one-1");
    io.verify(o).onNext("two-2");
    io.verify(o).onError(any(TestException.class));
    verify(o, never()).onComplete();
}
Also used : InOrder(org.mockito.InOrder) TestException(io.reactivex.rxjava3.exceptions.TestException)

Example 88 with PublishSubject

use of io.reactivex.rxjava3.subjects.PublishSubject in project RxJava by ReactiveX.

the class ObservableZipIterableTest method zipIterableIteratorThrows.

@Test
public void zipIterableIteratorThrows() {
    PublishSubject<String> r1 = PublishSubject.create();
    /* define an Observer to receive aggregated events */
    Observer<String> o = TestHelper.mockObserver();
    InOrder io = inOrder(o);
    Iterable<String> r2 = new Iterable<String>() {

        @Override
        public Iterator<String> iterator() {
            throw new TestException();
        }
    };
    r1.zipWith(r2, zipr2).subscribe(o);
    r1.onNext("one-");
    r1.onNext("two-");
    r1.onError(new TestException());
    io.verify(o).onError(any(TestException.class));
    verify(o, never()).onComplete();
    verify(o, never()).onNext(any(String.class));
}
Also used : InOrder(org.mockito.InOrder) CrashingIterable(io.reactivex.rxjava3.internal.util.CrashingIterable) TestException(io.reactivex.rxjava3.exceptions.TestException)

Example 89 with PublishSubject

use of io.reactivex.rxjava3.subjects.PublishSubject in project RxJava by ReactiveX.

the class ObservableThrottleLatestTest method normal.

@Test
public void normal() {
    TestScheduler sch = new TestScheduler();
    PublishSubject<Integer> ps = PublishSubject.create();
    TestObserver<Integer> to = ps.throttleLatest(1, TimeUnit.SECONDS, sch).test();
    ps.onNext(1);
    to.assertValuesOnly(1);
    ps.onNext(2);
    to.assertValuesOnly(1);
    ps.onNext(3);
    to.assertValuesOnly(1);
    sch.advanceTimeBy(1, TimeUnit.SECONDS);
    to.assertValuesOnly(1, 3);
    ps.onNext(4);
    to.assertValuesOnly(1, 3);
    ps.onNext(5);
    sch.advanceTimeBy(1, TimeUnit.SECONDS);
    to.assertValuesOnly(1, 3, 5);
    sch.advanceTimeBy(1, TimeUnit.SECONDS);
    to.assertValuesOnly(1, 3, 5);
    ps.onNext(6);
    to.assertValuesOnly(1, 3, 5, 6);
    ps.onNext(7);
    ps.onComplete();
    to.assertResult(1, 3, 5, 6);
    sch.advanceTimeBy(1, TimeUnit.SECONDS);
    to.assertResult(1, 3, 5, 6);
}
Also used : TestScheduler(io.reactivex.rxjava3.schedulers.TestScheduler) Test(org.junit.Test)

Example 90 with PublishSubject

use of io.reactivex.rxjava3.subjects.PublishSubject in project RxJava by ReactiveX.

the class ObservableTakeTimedTest method takeTimedErrorBeforeTime.

@Test
public void takeTimedErrorBeforeTime() {
    TestScheduler scheduler = new TestScheduler();
    PublishSubject<Integer> source = PublishSubject.create();
    Observable<Integer> result = source.take(1, TimeUnit.SECONDS, scheduler);
    Observer<Object> o = TestHelper.mockObserver();
    result.subscribe(o);
    source.onNext(1);
    source.onNext(2);
    source.onNext(3);
    source.onError(new TestException());
    scheduler.advanceTimeBy(1, TimeUnit.SECONDS);
    source.onNext(4);
    InOrder inOrder = inOrder(o);
    inOrder.verify(o).onNext(1);
    inOrder.verify(o).onNext(2);
    inOrder.verify(o).onNext(3);
    inOrder.verify(o).onError(any(TestException.class));
    inOrder.verifyNoMoreInteractions();
    verify(o, never()).onComplete();
    verify(o, never()).onNext(4);
}
Also used : InOrder(org.mockito.InOrder) TestException(io.reactivex.rxjava3.exceptions.TestException) TestScheduler(io.reactivex.rxjava3.schedulers.TestScheduler) Test(org.junit.Test)

Aggregations

TestException (io.reactivex.rxjava3.exceptions.TestException)69 Test (org.junit.Test)68 InOrder (org.mockito.InOrder)36 Observable (io.reactivex.rxjava3.core.Observable)28 Disposable (io.reactivex.rxjava3.disposables.Disposable)17 TestScheduler (io.reactivex.rxjava3.schedulers.TestScheduler)17 TestObserver (io.reactivex.rxjava3.observers.TestObserver)14 RxJavaTest (io.reactivex.rxjava3.core.RxJavaTest)12 AtomicInteger (java.util.concurrent.atomic.AtomicInteger)10 ObservableReplay (io.reactivex.rxjava3.internal.operators.observable.ObservableReplay)4 IOException (java.io.IOException)4 TargetApi (android.annotation.TargetApi)3 Function (io.reactivex.rxjava3.functions.Function)3 CrashingIterable (io.reactivex.rxjava3.internal.util.CrashingIterable)3 PublishSubject (io.reactivex.rxjava3.subjects.PublishSubject)3 Matchers.anyString (org.mockito.Matchers.anyString)3 NonNull (io.reactivex.rxjava3.annotations.NonNull)2 io.reactivex.rxjava3.core (io.reactivex.rxjava3.core)1 Observer (io.reactivex.rxjava3.core.Observer)1 GroupedObservable (io.reactivex.rxjava3.observables.GroupedObservable)1