Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Observable.timeout/Flowable.timeout should unsubscribe from underlying subscription on dispose #4536

Merged
merged 1 commit into from
Sep 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,6 @@ void scheduleTimeout(final long idx) {
public void run() {
if (idx == index) {
done = true;
s.cancel();
dispose();

actual.onError(new TimeoutException());
Expand Down Expand Up @@ -293,6 +292,7 @@ public void onComplete() {
public void dispose() {
worker.dispose();
DisposableHelper.dispose(timer);
s.cancel();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,6 @@ void scheduleTimeout(final long idx) {
public void run() {
if (idx == index) {
done = true;
s.dispose();
dispose();

actual.onError(new TimeoutException());
Expand Down Expand Up @@ -292,6 +291,7 @@ public void onComplete() {
public void dispose() {
worker.dispose();
DisposableHelper.dispose(timer);
s.dispose();
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,14 @@
package io.reactivex.internal.operators.completable;

import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

import java.util.concurrent.*;

import io.reactivex.schedulers.TestScheduler;
import io.reactivex.subjects.PublishSubject;
import io.reactivex.subscribers.TestSubscriber;
import org.junit.Test;

import io.reactivex.Completable;
Expand Down Expand Up @@ -56,4 +61,20 @@ public void run() throws Exception {
assertEquals(1, call[0]);
}

@Test
public void shouldUnsubscribeFromUnderlyingSubscriptionOnDispose() {
final PublishSubject<String> subject = PublishSubject.create();
final TestScheduler scheduler = new TestScheduler();

final TestSubscriber<Void> observer = subject.toCompletable()
.timeout(100, TimeUnit.MILLISECONDS, scheduler)
.test();

assertTrue(subject.hasObservers());

observer.dispose();

assertFalse(subject.hasObservers());
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

package io.reactivex.internal.operators.flowable;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;

Expand Down Expand Up @@ -358,6 +360,21 @@ public void subscribe(Subscriber<? super String> subscriber) {
verify(s, times(1)).cancel();
}

@Test
public void shouldUnsubscribeFromUnderlyingSubscriptionOnDispose() {
final PublishProcessor<String> subject = PublishProcessor.create();
final TestScheduler scheduler = new TestScheduler();

final TestSubscriber<String> observer = subject
.timeout(100, TimeUnit.MILLISECONDS, scheduler)
.test();

assertTrue(subject.hasSubscribers());

observer.dispose();

assertFalse(subject.hasSubscribers());
}

@Test
public void timedAndOther() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@

package io.reactivex.internal.operators.observable;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
import static org.mockito.Matchers.*;
import static org.mockito.Mockito.*;

Expand Down Expand Up @@ -357,6 +359,22 @@ public void subscribe(Observer<? super String> NbpSubscriber) {
verify(s, times(1)).dispose();
}

@Test
public void shouldUnsubscribeFromUnderlyingSubscriptionOnDispose() {
final PublishSubject<String> subject = PublishSubject.create();
final TestScheduler scheduler = new TestScheduler();

final TestObserver<String> observer = subject
.timeout(100, TimeUnit.MILLISECONDS, scheduler)
.test();

assertTrue(subject.hasObservers());

observer.dispose();

assertFalse(subject.hasObservers());
}

@Test
public void timedAndOther() {
Observable.never().timeout(100, TimeUnit.MILLISECONDS, Observable.just(1))
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
/**
* Copyright 2016 Netflix, Inc.
*
* 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.schedulers.TestScheduler;
import io.reactivex.subjects.PublishSubject;
import io.reactivex.subscribers.TestSubscriber;
import org.junit.Test;

import java.util.concurrent.TimeUnit;

import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;

public class SingleTimeoutTests {

@Test
public void shouldUnsubscribeFromUnderlyingSubscriptionOnDispose() {
final PublishSubject<String> subject = PublishSubject.create();
final TestScheduler scheduler = new TestScheduler();

final TestSubscriber<String> observer = subject.toSingle()
.timeout(100, TimeUnit.MILLISECONDS, scheduler)
.test();

assertTrue(subject.hasObservers());

observer.dispose();

assertFalse(subject.hasObservers());
}

}