/
githubmirror
/
RxJava
Обзор
Документация
Войти
/
githubmirror
/
RxJava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
src/test/java/io/reactivex/rxjava4/parallel/ParallelMapTryTest.java
310 строк
9 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. */ package io.reactivex.rxjava4.parallel; import java.util.List; import org.junit.jupiter.api.Test; import io.reactivex.rxjava4.core.*; import io.reactivex.rxjava4.exceptions.*; import io.reactivex.rxjava4.functions.*; import io.reactivex.rxjava4.internal.functions.Functions; import io.reactivex.rxjava4.plugins.RxJavaPlugins; import io.reactivex.rxjava4.testsupport.*; public class ParallelMapTryTest extends RxJavaTest implements Consumer<Object> { volatile int calls; @Override public void accept(Object t) throws Exception { calls++; } @Test public void mapNoError() { for (ParallelFailureHandling e : ParallelFailureHandling.values()) { Flowable.just(1) .parallel(1) .map(Functions.identity(), e) .sequential() .test() .assertResult(1); } } @Test public void mapErrorNoError() { for (ParallelFailureHandling e : ParallelFailureHandling.values()) { Flowable.<Integer>error(new TestException()) .parallel(1) .map(Functions.identity(), e) .sequential() .test() .assertFailure(TestException.class); } } @Test public void mapConditionalNoError() { for (ParallelFailureHandling e : ParallelFailureHandling.values()) { Flowable.just(1) .parallel(1) .map(Functions.identity(), e) .filter(Functions.alwaysTrue()) .sequential() .test() .assertResult(1); } } @Test public void mapErrorConditionalNoError() { for (ParallelFailureHandling e : ParallelFailureHandling.values()) { Flowable.<Integer>error(new TestException()) .parallel(1) .map(Functions.identity(), e) .filter(Functions.alwaysTrue()) .sequential() .test() .assertFailure(TestException.class); } } @Test public void mapFailWithError() { Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, ParallelFailureHandling.ERROR) .sequential() .test() .assertFailure(ArithmeticException.class); } @Test public void mapFailWithStop() { Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, ParallelFailureHandling.STOP) .sequential() .test() .assertResult(); } @Test public void mapFailWithRetry() { Flowable.range(0, 2) .parallel(1) .map(new Function<Integer, Integer>() /* NFI */ { int count; @Override public Integer apply(Integer v) throws Exception { if (count++ == 1) { return -1; } return 1 / v; } }, ParallelFailureHandling.RETRY) .sequential() .test() .assertResult(-1, 1); } @Test public void mapFailWithRetryLimited() { Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, (n, _) -> n < 5 ? ParallelFailureHandling.RETRY : ParallelFailureHandling.SKIP) .sequential() .test() .assertResult(1); } @Test public void mapFailWithSkip() { Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, ParallelFailureHandling.SKIP) .sequential() .test() .assertResult(1); } @Test public void mapFailHandlerThrows() { TestSubscriberEx<Integer> ts = Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, (_, _) -> { throw new TestException(); }) .sequential() .to(TestHelper.<Integer>testConsumer()) .assertFailure(CompositeException.class); TestHelper.assertCompositeExceptions(ts, ArithmeticException.class, TestException.class); } @Test public void mapWrongParallelism() { TestHelper.checkInvalidParallelSubscribers( Flowable.just(1).parallel(1) .map(Functions.identity(), ParallelFailureHandling.ERROR) ); } @Test public void mapInvalidSource() { List<Throwable> errors = TestHelper.trackPluginErrors(); try { new ParallelInvalid() .map(Functions.identity(), ParallelFailureHandling.ERROR) .sequential() .test(); TestHelper.assertUndeliverable(errors, 0, TestException.class); } finally { RxJavaPlugins.reset(); } } @Test public void mapFailWithErrorConditional() { Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, ParallelFailureHandling.ERROR) .filter(Functions.alwaysTrue()) .sequential() .test() .assertFailure(ArithmeticException.class); } @Test public void mapFailWithStopConditional() { Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, ParallelFailureHandling.STOP) .filter(Functions.alwaysTrue()) .sequential() .test() .assertResult(); } @Test public void mapFailWithRetryConditional() { Flowable.range(0, 2) .parallel(1) .map(new Function<Integer, Integer>() /* NFI */ { int count; @Override public Integer apply(Integer v) throws Exception { if (count++ == 1) { return -1; } return 1 / v; } }, ParallelFailureHandling.RETRY) .filter(Functions.alwaysTrue()) .sequential() .test() .assertResult(-1, 1); } @Test public void mapFailWithRetryLimitedConditional() { Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, (n, _) -> n < 5 ? ParallelFailureHandling.RETRY : ParallelFailureHandling.SKIP) .filter(Functions.alwaysTrue()) .sequential() .test() .assertResult(1); } @Test public void mapFailWithSkipConditional() { Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, ParallelFailureHandling.SKIP) .filter(Functions.alwaysTrue()) .sequential() .test() .assertResult(1); } @Test public void mapFailHandlerThrowsConditional() { TestSubscriberEx<Integer> ts = Flowable.range(0, 2) .parallel(1) .map(v -> 1 / v, (_, _) -> { throw new TestException(); }) .filter(Functions.alwaysTrue()) .sequential() .to(TestHelper.<Integer>testConsumer()) .assertFailure(CompositeException.class); TestHelper.assertCompositeExceptions(ts, ArithmeticException.class, TestException.class); } @Test public void mapWrongParallelismConditional() { TestHelper.checkInvalidParallelSubscribers( Flowable.just(1).parallel(1) .map(Functions.identity(), ParallelFailureHandling.ERROR) .filter(Functions.alwaysTrue()) ); } @Test public void mapInvalidSourceConditional() { List<Throwable> errors = TestHelper.trackPluginErrors(); try { new ParallelInvalid() .map(Functions.identity(), ParallelFailureHandling.ERROR) .filter(Functions.alwaysTrue()) .sequential() .test(); TestHelper.assertUndeliverable(errors, 0, TestException.class); } finally { RxJavaPlugins.reset(); } } @Test public void failureHandlingEnum() { TestHelper.checkEnum(ParallelFailureHandling.class); } @Test public void invalidSubscriberCount() { TestHelper.checkInvalidParallelSubscribers( Flowable.range(1, 10).parallel() .map(v -> v, ParallelFailureHandling.SKIP) ); } @Test public void doubleOnSubscribe() { TestHelper.checkDoubleOnSubscribeParallel( p -> p.map(v -> v, ParallelFailureHandling.ERROR) ); TestHelper.checkDoubleOnSubscribeParallel( p -> p.map(v -> v, ParallelFailureHandling.ERROR) .filter(_ -> true) ); } }