2016-06-23 12:47:54 -04:00
|
|
|
/**
|
|
|
|
* @license
|
2020-05-19 15:08:49 -04:00
|
|
|
* Copyright Google LLC All Rights Reserved.
|
2016-06-23 12:47:54 -04:00
|
|
|
*
|
|
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
|
|
* found in the LICENSE file at https://angular.io/license
|
|
|
|
*/
|
|
|
|
|
2018-02-04 11:58:02 -05:00
|
|
|
import {filter} from 'rxjs/operators';
|
|
|
|
|
2017-03-01 13:28:52 -05:00
|
|
|
import {EventEmitter} from '../src/event_emitter';
|
2015-05-26 20:00:31 -04:00
|
|
|
|
2017-12-15 19:28:41 -05:00
|
|
|
{
|
2015-05-26 20:00:31 -04:00
|
|
|
describe('EventEmitter', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
let emitter: EventEmitter<any>;
|
2015-05-26 20:00:31 -04:00
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
beforeEach(() => {
|
|
|
|
emitter = new EventEmitter();
|
|
|
|
});
|
2015-05-26 20:00:31 -04:00
|
|
|
|
2021-05-23 16:16:02 -04:00
|
|
|
it('should call the next callback', done => {
|
|
|
|
emitter.subscribe({
|
|
|
|
next: (value: any) => {
|
|
|
|
expect(value).toEqual(99);
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
emitter.emit(99);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should call the throw callback', done => {
|
|
|
|
emitter.subscribe({
|
|
|
|
next: () => {},
|
|
|
|
error: (error: any) => {
|
|
|
|
expect(error).toEqual('Boom');
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
emitter.error('Boom');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should work when no throw callback is provided', done => {
|
|
|
|
emitter.subscribe({
|
|
|
|
next: () => {},
|
|
|
|
error: (_: any) => {
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
emitter.error('Boom');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should call the return callback', done => {
|
|
|
|
emitter.subscribe({
|
|
|
|
next: () => {},
|
|
|
|
error: (_: any) => {},
|
|
|
|
complete: () => {
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
emitter.complete();
|
|
|
|
});
|
2015-05-26 20:00:31 -04:00
|
|
|
|
2016-06-08 19:38:52 -04:00
|
|
|
it('should subscribe to the wrapper synchronously', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
let called = false;
|
2020-04-13 19:40:21 -04:00
|
|
|
emitter.subscribe({
|
|
|
|
next: (value: any) => {
|
|
|
|
called = true;
|
|
|
|
}
|
|
|
|
});
|
2016-08-02 18:53:34 -04:00
|
|
|
emitter.emit(99);
|
2015-05-26 20:00:31 -04:00
|
|
|
|
2016-05-26 12:34:04 -04:00
|
|
|
expect(called).toBe(true);
|
2015-05-26 20:00:31 -04:00
|
|
|
});
|
|
|
|
|
2021-05-23 16:16:02 -04:00
|
|
|
it('delivers next and error events synchronously', done => {
|
|
|
|
const log: any[] /** TODO #9100 */ = [];
|
|
|
|
|
|
|
|
emitter.subscribe({
|
|
|
|
next: (x: any) => {
|
|
|
|
log.push(x);
|
|
|
|
expect(log).toEqual([1, 2]);
|
|
|
|
},
|
|
|
|
error: (err: any) => {
|
|
|
|
log.push(err);
|
|
|
|
expect(log).toEqual([1, 2, 3, 4]);
|
|
|
|
done();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
log.push(1);
|
|
|
|
emitter.emit(2);
|
|
|
|
log.push(3);
|
|
|
|
emitter.error(4);
|
|
|
|
log.push(5);
|
|
|
|
});
|
2016-08-02 13:58:03 -04:00
|
|
|
|
|
|
|
it('delivers next and complete events synchronously', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const log: any[] /** TODO #9100 */ = [];
|
2016-08-02 18:53:34 -04:00
|
|
|
|
|
|
|
emitter.subscribe({
|
|
|
|
next: (x: any) => {
|
|
|
|
log.push(x);
|
|
|
|
expect(log).toEqual([1, 2]);
|
|
|
|
},
|
|
|
|
error: null,
|
|
|
|
complete: () => {
|
|
|
|
log.push(4);
|
|
|
|
expect(log).toEqual([1, 2, 3, 4]);
|
|
|
|
}
|
|
|
|
});
|
2016-08-02 13:58:03 -04:00
|
|
|
log.push(1);
|
2016-08-02 18:53:34 -04:00
|
|
|
emitter.emit(2);
|
2016-08-02 13:58:03 -04:00
|
|
|
log.push(3);
|
2016-08-02 18:53:34 -04:00
|
|
|
emitter.complete();
|
2016-08-02 13:58:03 -04:00
|
|
|
log.push(5);
|
|
|
|
expect(log).toEqual([1, 2, 3, 4, 5]);
|
|
|
|
});
|
2015-10-19 17:41:15 -04:00
|
|
|
|
2021-05-23 16:16:02 -04:00
|
|
|
it('delivers events asynchronously when forced to async mode', done => {
|
|
|
|
const e = new EventEmitter(true);
|
|
|
|
const log: any[] /** TODO #9100 */ = [];
|
|
|
|
e.subscribe((x: any) => {
|
|
|
|
log.push(x);
|
|
|
|
expect(log).toEqual([1, 3, 2]);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
log.push(1);
|
|
|
|
e.emit(2);
|
|
|
|
log.push(3);
|
|
|
|
});
|
2015-10-19 17:41:15 -04:00
|
|
|
|
|
|
|
it('reports whether it has subscribers', () => {
|
2016-11-12 08:08:58 -05:00
|
|
|
const e = new EventEmitter(false);
|
2016-08-02 18:53:34 -04:00
|
|
|
expect(e.observers.length > 0).toBe(false);
|
|
|
|
e.subscribe({next: () => {}});
|
|
|
|
expect(e.observers.length > 0).toBe(true);
|
2015-10-19 17:41:15 -04:00
|
|
|
});
|
|
|
|
|
2018-02-04 11:58:02 -05:00
|
|
|
it('remove a subscriber subscribed directly to EventEmitter', () => {
|
|
|
|
const sub = emitter.subscribe();
|
|
|
|
expect(emitter.observers.length).toBe(1);
|
|
|
|
sub.unsubscribe();
|
|
|
|
expect(emitter.observers.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('remove a subscriber subscribed after applying operators with pipe()', () => {
|
|
|
|
const sub = emitter.pipe(filter(() => true)).subscribe();
|
|
|
|
expect(emitter.observers.length).toBe(1);
|
|
|
|
sub.unsubscribe();
|
|
|
|
expect(emitter.observers.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
2021-05-23 16:16:02 -04:00
|
|
|
it('unsubscribing a subscriber invokes the dispose method', done => {
|
|
|
|
const sub = emitter.subscribe();
|
|
|
|
sub.add(() => done());
|
|
|
|
sub.unsubscribe();
|
2018-02-04 11:58:02 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('unsubscribing a subscriber after applying operators with pipe() invokes the dispose method',
|
2021-05-23 16:16:02 -04:00
|
|
|
done => {
|
|
|
|
const sub = emitter.pipe(filter(() => true)).subscribe();
|
|
|
|
sub.add(() => done());
|
|
|
|
sub.unsubscribe();
|
2018-02-04 11:58:02 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
it('error thrown inside an Rx chain propagates to the error handler and disposes the chain',
|
|
|
|
() => {
|
|
|
|
let errorPropagated = false;
|
2020-04-13 19:40:21 -04:00
|
|
|
emitter
|
|
|
|
.pipe(
|
|
|
|
filter(() => {
|
|
|
|
throw new Error();
|
|
|
|
}),
|
|
|
|
)
|
|
|
|
.subscribe(
|
|
|
|
() => {},
|
|
|
|
err => errorPropagated = true,
|
|
|
|
);
|
2018-02-04 11:58:02 -05:00
|
|
|
|
|
|
|
emitter.next(1);
|
|
|
|
|
|
|
|
expect(errorPropagated).toBe(true);
|
|
|
|
expect(emitter.observers.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('error sent by EventEmitter should dispose the Rx chain and remove subscribers', () => {
|
|
|
|
let errorPropagated = false;
|
2020-04-13 19:40:21 -04:00
|
|
|
emitter.pipe(filter(() => true))
|
|
|
|
.subscribe(
|
|
|
|
() => {},
|
|
|
|
err => errorPropagated = true,
|
|
|
|
);
|
2018-02-04 11:58:02 -05:00
|
|
|
|
|
|
|
emitter.error(1);
|
|
|
|
|
|
|
|
expect(errorPropagated).toBe(true);
|
|
|
|
expect(emitter.observers.length).toBe(0);
|
|
|
|
});
|
|
|
|
|
2015-05-26 20:00:31 -04:00
|
|
|
// TODO: vsavkin: add tests cases
|
|
|
|
// should call dispose on the subscription if generator returns {done:true}
|
|
|
|
// should call dispose on the subscription on throw
|
|
|
|
// should call dispose on the subscription on return
|
|
|
|
});
|
2015-05-29 20:09:59 -04:00
|
|
|
}
|