/** * 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.internal.operators.single; import static org.junit.Assert.*; import java.util.concurrent.TimeUnit; import org.junit.Test; import io.reactivex.Single; import io.reactivex.exceptions.TestException; import io.reactivex.observers.TestObserver; import io.reactivex.schedulers.TestScheduler; import io.reactivex.subjects.PublishSubject; public class SingleTimeoutTest { @Test public void shouldUnsubscribeFromUnderlyingSubscriptionOnDispose() { final PublishSubject<String> subject = PublishSubject.create(); final TestScheduler scheduler = new TestScheduler(); final TestObserver<String> observer = subject.single("") .timeout(100, TimeUnit.MILLISECONDS, scheduler) .test(); assertTrue(subject.hasObservers()); observer.dispose(); assertFalse(subject.hasObservers()); } @Test public void otherErrors() { Single.never() .timeout(1, TimeUnit.MILLISECONDS, Single.error(new TestException())) .test() .awaitDone(5, TimeUnit.SECONDS) .assertFailure(TestException.class); } @Test public void mainSuccess() { Single.just(1) .timeout(1, TimeUnit.DAYS) .test() .awaitDone(5, TimeUnit.SECONDS) .assertResult(1); } @Test public void mainError() { Single.error(new TestException()) .timeout(1, TimeUnit.DAYS) .test() .awaitDone(5, TimeUnit.SECONDS) .assertFailure(TestException.class); } }