/
githubmirror
/
RxJava
Обзор
Документация
Войти
/
githubmirror
/
RxJava
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
4.x
src/test/java/io/reactivex/rxjava4/observers/DisposableMaybeObserverTest.java
121 строка
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.observers; 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.disposables.Disposable; import io.reactivex.rxjava4.internal.util.EndConsumerHelper; import io.reactivex.rxjava4.plugins.RxJavaPlugins; import io.reactivex.rxjava4.testsupport.TestHelper; public class DisposableMaybeObserverTest extends RxJavaTest { static final class TestMaybe<T> extends DisposableMaybeObserver<T> { int start; final List<T> values = new ArrayList<>(); final List<Throwable> errors = new ArrayList<>(); int complete; @Override protected void onStart() { super.onStart(); start++; } @Override public void onSuccess(T value) { values.add(value); } @Override public void onError(Throwable e) { errors.add(e); } @Override public void onComplete() { complete++; } } @Test public void normal() { TestMaybe<Integer> tc = new TestMaybe<>(); assertFalse(tc.isDisposed()); assertEquals(0, tc.start); assertTrue(tc.values.isEmpty()); assertTrue(tc.errors.isEmpty()); assertEquals(0, tc.complete); Maybe.just(1).subscribe(tc); assertFalse(tc.isDisposed()); assertEquals(1, tc.start); assertEquals(1, tc.values.getFirst().intValue()); assertTrue(tc.errors.isEmpty()); assertEquals(0, tc.complete); } @Test public void startOnce() { List<Throwable> error = TestHelper.trackPluginErrors(); try { TestMaybe<Integer> tc = new TestMaybe<>(); tc.onSubscribe(Disposable.empty()); Disposable d = Disposable.empty(); tc.onSubscribe(d); assertTrue(d.isDisposed()); assertEquals(1, tc.start); TestHelper.assertError(error, 0, IllegalStateException.class, EndConsumerHelper.composeMessage(tc.getClass().getName())); } finally { RxJavaPlugins.reset(); } } @Test public void dispose() { TestMaybe<Integer> tc = new TestMaybe<>(); tc.dispose(); assertTrue(tc.isDisposed()); Disposable d = Disposable.empty(); tc.onSubscribe(d); assertTrue(d.isDisposed()); assertEquals(0, tc.start); } }