File tree 3 files changed +58
-4
lines changed
3 files changed +58
-4
lines changed Original file line number Diff line number Diff line change @@ -192,6 +192,60 @@ describe('Observable', () => {
192
192
source . subscribe ( ) ;
193
193
} ) ;
194
194
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
+
195
249
it ( 'should return a Subscription that calls the unsubscribe function returned by the subscriber' , ( ) => {
196
250
let unsubscribeCalled = false ;
197
251
Original file line number Diff line number Diff line change @@ -361,7 +361,7 @@ export class AjaxSubscriber<T> extends Subscriber<Event> {
361
361
362
362
unsubscribe ( ) {
363
363
const { done, xhr } = this ;
364
- if ( ! done && xhr && xhr . readyState !== 4 ) {
364
+ if ( ! done && xhr && xhr . readyState !== 4 && typeof xhr . abort === 'function' ) {
365
365
xhr . abort ( ) ;
366
366
}
367
367
super . unsubscribe ( ) ;
Original file line number Diff line number Diff line change 1
- import { PartialObserver } from '../Observer' ;
2
1
import { Subscriber } from '../Subscriber' ;
3
2
import { $$rxSubscriber } from '../symbol/rxSubscriber' ;
3
+ import { PartialObserver , empty as emptyObserver } from '../Observer' ;
4
4
5
5
export function toSubscriber < T > (
6
6
nextOrObserver ?: PartialObserver < T > | ( ( value : T ) => void ) ,
@@ -18,8 +18,8 @@ export function toSubscriber<T>(
18
18
}
19
19
20
20
if ( ! nextOrObserver && ! error && ! complete ) {
21
- return new Subscriber ( ) ;
21
+ return new Subscriber ( emptyObserver ) ;
22
22
}
23
23
24
24
return new Subscriber ( nextOrObserver , error , complete ) ;
25
- }
25
+ }
You can’t perform that action at this time.
0 commit comments