Skip to content

Commit d876a35

Browse files
authored
Merge pull request #1935 from trxcllnt/fix-1921
Fixes #1921
2 parents f63dde9 + 4d23f87 commit d876a35

File tree

3 files changed

+58
-4
lines changed

3 files changed

+58
-4
lines changed

spec/Observable-spec.ts

+54
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,60 @@ describe('Observable', () => {
192192
source.subscribe();
193193
});
194194

195+
it('should run unsubscription logic when an error is sent synchronously and subscribe is called with no arguments', () => {
196+
let unsubscribeCalled = false;
197+
const source = new Observable((subscriber: Rx.Subscriber<string>) => {
198+
subscriber.error(0);
199+
return () => {
200+
unsubscribeCalled = true;
201+
};
202+
});
203+
204+
try {
205+
source.subscribe();
206+
} catch (e) {
207+
// error'ing to an empty Observer re-throws, so catch and ignore it here.
208+
}
209+
210+
expect(unsubscribeCalled).to.be.true;
211+
});
212+
213+
it('should run unsubscription logic when an error is sent asynchronously and subscribe is called with no arguments', (done: MochaDone) => {
214+
let unsubscribeCalled = false;
215+
const source = new Observable((subscriber: Rx.Subscriber<string>) => {
216+
const id = setInterval(() => {
217+
try {
218+
subscriber.error(0);
219+
} catch (e) {
220+
// asynchronously error'ing to an empty Observer re-throws, so catch and ignore it here.
221+
}
222+
}, 1);
223+
return () => {
224+
clearInterval(id);
225+
unsubscribeCalled = true;
226+
};
227+
});
228+
229+
source.subscribe();
230+
231+
setTimeout(() => {
232+
let err;
233+
let errHappened = false;
234+
try {
235+
expect(unsubscribeCalled).to.be.true;
236+
} catch (e) {
237+
err = e;
238+
errHappened = true;
239+
} finally {
240+
if (!errHappened) {
241+
done();
242+
} else {
243+
done(err);
244+
}
245+
}
246+
}, 100);
247+
});
248+
195249
it('should return a Subscription that calls the unsubscribe function returned by the subscriber', () => {
196250
let unsubscribeCalled = false;
197251

src/observable/dom/AjaxObservable.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ export class AjaxSubscriber<T> extends Subscriber<Event> {
361361

362362
unsubscribe() {
363363
const { done, xhr } = this;
364-
if (!done && xhr && xhr.readyState !== 4) {
364+
if (!done && xhr && xhr.readyState !== 4 && typeof xhr.abort === 'function') {
365365
xhr.abort();
366366
}
367367
super.unsubscribe();

src/util/toSubscriber.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { PartialObserver } from '../Observer';
21
import { Subscriber } from '../Subscriber';
32
import { $$rxSubscriber } from '../symbol/rxSubscriber';
3+
import { PartialObserver, empty as emptyObserver } from '../Observer';
44

55
export function toSubscriber<T>(
66
nextOrObserver?: PartialObserver<T> | ((value: T) => void),
@@ -18,8 +18,8 @@ export function toSubscriber<T>(
1818
}
1919

2020
if (!nextOrObserver && !error && !complete) {
21-
return new Subscriber();
21+
return new Subscriber(emptyObserver);
2222
}
2323

2424
return new Subscriber(nextOrObserver, error, complete);
25-
}
25+
}

0 commit comments

Comments
 (0)