/** * 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 io.reactivex.Single; import io.reactivex.SingleSource; import io.reactivex.TestHelper; import io.reactivex.exceptions.TestException; import io.reactivex.functions.Action; import io.reactivex.functions.Function; import io.reactivex.internal.functions.Functions; import io.reactivex.observers.TestObserver; import io.reactivex.plugins.RxJavaPlugins; import io.reactivex.subjects.PublishSubject; import org.junit.Test; import java.util.List; import static org.junit.Assert.assertEquals; public class SingleDoAfterTerminateTest { private final int[] call = { 0 }; private final Action afterTerminate = new Action() { @Override public void run() throws Exception { call[0]++; } }; private final TestObserver<Integer> ts = new TestObserver<Integer>(); @Test public void just() { Single.just(1) .doAfterTerminate(afterTerminate) .subscribeWith(ts) .assertResult(1); assertAfterTerminateCalledOnce(); } @Test public void error() { Single.<Integer>error(new TestException()) .doAfterTerminate(afterTerminate) .subscribeWith(ts) .assertFailure(TestException.class); assertAfterTerminateCalledOnce(); } @Test(expected = NullPointerException.class) public void afterTerminateActionNull() { Single.just(1).doAfterTerminate(null); } @Test public void justConditional() { Single.just(1) .doAfterTerminate(afterTerminate) .filter(Functions.alwaysTrue()) .subscribeWith(ts) .assertResult(1); assertAfterTerminateCalledOnce(); } @Test public void errorConditional() { Single.<Integer>error(new TestException()) .doAfterTerminate(afterTerminate) .filter(Functions.alwaysTrue()) .subscribeWith(ts) .assertFailure(TestException.class); assertAfterTerminateCalledOnce(); } @Test public void actionThrows() { List<Throwable> errors = TestHelper.trackPluginErrors(); try { Single.just(1) .doAfterTerminate(new Action() { @Override public void run() throws Exception { throw new TestException(); } }) .test() .assertResult(1); TestHelper.assertUndeliverable(errors, 0, TestException.class); } finally { RxJavaPlugins.reset(); } } @Test public void dispose() { TestHelper.checkDisposed(PublishSubject.<Integer>create().singleOrError().doAfterTerminate(afterTerminate)); } @Test public void doubleOnSubscribe() { TestHelper.checkDoubleOnSubscribeSingle(new Function<Single<Integer>, SingleSource<Integer>>() { @Override public SingleSource<Integer> apply(Single<Integer> m) throws Exception { return m.doAfterTerminate(afterTerminate); } }); } private void assertAfterTerminateCalledOnce() { assertEquals(1, call[0]); } }