/
githubmirror
/
RxJava
Обзор
Документация
Войти
/
githubmirror
/
RxJava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
src/test/java/io/reactivex/rxjava4/internal/observers/CompletableConsumersTest.java
218 строк
6 KB
David Karnok
4.x: Convert from JUnit 4 to JUnit 6 (#8202)
30 июн 2026, 12:01
Не верифицирован
30 июн 2026, 12:01
531388f
Код
Авторство
О чём код?
/* * 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. */ /* * Copyright 2016-2019 David Karnok * * 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.internal.observers; import static org.junit.jupiter.api.Assertions.*; import java.io.IOException; import java.util.*; import org.junit.jupiter.api.Test; import io.reactivex.rxjava4.core.*; import io.reactivex.rxjava4.disposables.*; import io.reactivex.rxjava4.exceptions.CompositeException; import io.reactivex.rxjava4.functions.*; import io.reactivex.rxjava4.observers.LambdaConsumerIntrospection; import io.reactivex.rxjava4.plugins.RxJavaPlugins; import io.reactivex.rxjava4.subjects.CompletableSubject; import io.reactivex.rxjava4.testsupport.TestHelper; public class CompletableConsumersTest implements Consumer<Object>, Action { final CompositeDisposable composite = new CompositeDisposable(); final CompletableSubject processor = CompletableSubject.create(); final List<Object> events = new ArrayList<>(); @Override public void run() throws Exception { events.add("OnComplete"); } @Override public void accept(Object t) throws Exception { events.add(t); } @Test public void onErrorNormal() { processor.subscribe(this, this, composite); assertTrue(composite.size() > 0); assertTrue(events.isEmpty(), events.toString()); processor.onComplete(); assertEquals(0, composite.size()); assertEquals(List.<Object>of("OnComplete"), events); } @Test public void onErrorError() { Disposable d = processor.subscribe(this, this, composite); assertTrue(((LambdaConsumerIntrospection)d).hasCustomOnError(), d.getClass().toString()); assertTrue(composite.size() > 0); assertTrue(events.isEmpty(), events.toString()); processor.onError(new IOException()); assertTrue(events.getFirst() instanceof IOException, events.toString()); assertEquals(0, composite.size()); } @Test public void onCompleteNormal() { processor.subscribe(this, this, composite); assertTrue(composite.size() > 0); assertTrue(events.isEmpty(), events.toString()); processor.onComplete(); assertEquals(0, composite.size()); assertEquals(List.<Object>of("OnComplete"), events); } @Test public void onCompleteError() { processor.subscribe(this, this, composite); assertTrue(composite.size() > 0); assertTrue(events.isEmpty(), events.toString()); processor.onError(new IOException()); assertTrue(events.getFirst() instanceof IOException, events.toString()); assertEquals(0, composite.size()); } @Test public void onCompleteDispose() { Disposable d = processor.subscribe(this, this, composite); assertTrue(composite.size() > 0); assertTrue(events.isEmpty(), events.toString()); assertFalse(d.isDisposed()); d.dispose(); d.dispose(); assertTrue(d.isDisposed()); assertEquals(0, composite.size()); assertFalse(processor.hasObservers()); } @Test public void onErrorCrash() { List<Throwable> errors = TestHelper.trackPluginErrors(); try { processor.subscribe(this, t -> { throw new IOException(t); }, composite); processor.onError(new IllegalArgumentException()); assertTrue(events.isEmpty(), events.toString()); TestHelper.assertError(errors, 0, CompositeException.class); List<Throwable> inners = TestHelper.compositeList(errors.getFirst()); TestHelper.assertError(inners, 0, IllegalArgumentException.class); TestHelper.assertError(inners, 1, IOException.class); } finally { RxJavaPlugins.reset(); } } @Test public void onCompleteCrash() { List<Throwable> errors = TestHelper.trackPluginErrors(); try { processor.subscribe(() -> { throw new IOException(); }, this, composite); processor.onComplete(); assertTrue(events.isEmpty(), events.toString()); TestHelper.assertUndeliverable(errors, 0, IOException.class); } finally { RxJavaPlugins.reset(); } } @Test public void badSource() { List<Throwable> errors = TestHelper.trackPluginErrors(); try { new Completable() /* NFI */ { @Override protected void subscribeActual( CompletableObserver observer) { observer.onSubscribe(Disposable.empty()); observer.onComplete(); observer.onSubscribe(Disposable.empty()); observer.onComplete(); observer.onError(new IOException()); } }.subscribe(this, this, composite); assertEquals(List.<Object>of("OnComplete"), events); TestHelper.assertUndeliverable(errors, 0, IOException.class); } finally { RxJavaPlugins.reset(); } } }