/
githubmirror
/
RxJava
Обзор
Документация
Войти
/
githubmirror
/
RxJava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
src/test/java/io/reactivex/rxjava4/subscribers/DisposableSubscriberTest.java
122 строки
3 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.subscribers; import static org.junit.jupiter.api.Assertions.*; import java.util.*; import org.junit.jupiter.api.Test; import io.reactivex.rxjava4.core.*; import io.reactivex.rxjava4.internal.subscriptions.BooleanSubscription; import io.reactivex.rxjava4.internal.util.EndConsumerHelper; import io.reactivex.rxjava4.plugins.RxJavaPlugins; import io.reactivex.rxjava4.testsupport.TestHelper; public class DisposableSubscriberTest extends RxJavaTest { static final class TestDisposableSubscriber<T> extends DisposableSubscriber<T> { int start; final List<T> values = new ArrayList<>(); final List<Throwable> errors = new ArrayList<>(); int completions; @Override protected void onStart() { request(1); start++; } @Override public void onNext(T value) { values.add(value); } @Override public void onError(Throwable e) { errors.add(e); } @Override public void onComplete() { completions++; } } @Test public void normal() { TestDisposableSubscriber<Integer> tc = new TestDisposableSubscriber<>(); assertFalse(tc.isDisposed()); assertEquals(0, tc.start); assertTrue(tc.values.isEmpty()); assertTrue(tc.errors.isEmpty()); Flowable.just(1).subscribe(tc); assertFalse(tc.isDisposed()); assertEquals(1, tc.start); assertEquals(1, tc.values.getFirst().intValue()); assertTrue(tc.errors.isEmpty()); } @Test public void startOnce() { List<Throwable> error = TestHelper.trackPluginErrors(); try { TestDisposableSubscriber<Integer> tc = new TestDisposableSubscriber<>(); tc.onSubscribe(new BooleanSubscription()); BooleanSubscription bs = new BooleanSubscription(); tc.onSubscribe(bs); assertTrue(bs.isCancelled()); assertEquals(1, tc.start); TestHelper.assertError(error, 0, IllegalStateException.class, EndConsumerHelper.composeMessage(tc.getClass().getName())); } finally { RxJavaPlugins.reset(); } } @Test public void dispose() { TestDisposableSubscriber<Integer> tc = new TestDisposableSubscriber<>(); assertFalse(tc.isDisposed()); tc.dispose(); assertTrue(tc.isDisposed()); BooleanSubscription bs = new BooleanSubscription(); tc.onSubscribe(bs); assertTrue(bs.isCancelled()); assertEquals(0, tc.start); } }