2019-05-31 11:56:07 -04:00
|
|
|
/**
|
|
|
|
* @license
|
|
|
|
* Copyright Google Inc. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*/
|
2020-04-13 19:40:21 -04:00
|
|
|
import {from, Observable} from 'rxjs';
|
2019-05-31 11:56:07 -04:00
|
|
|
|
|
|
|
import {asyncTest} from '../test-util';
|
|
|
|
|
|
|
|
describe('Observable.from', () => {
|
|
|
|
let log: any[];
|
|
|
|
const constructorZone1: Zone = Zone.current.fork({name: 'Constructor Zone1'});
|
|
|
|
const subscriptionZone: Zone = Zone.current.fork({name: 'Subscription Zone'});
|
|
|
|
let observable1: Observable<any>;
|
|
|
|
|
2020-04-13 19:40:21 -04:00
|
|
|
beforeEach(() => {
|
|
|
|
log = [];
|
|
|
|
});
|
2019-05-31 11:56:07 -04:00
|
|
|
|
|
|
|
it('from array should run in the correct zone', () => {
|
2020-04-13 19:40:21 -04:00
|
|
|
observable1 = constructorZone1.run(() => {
|
|
|
|
return from([1, 2]);
|
|
|
|
});
|
2019-05-31 11:56:07 -04:00
|
|
|
|
|
|
|
subscriptionZone.run(() => {
|
|
|
|
observable1.subscribe(
|
|
|
|
(result: any) => {
|
|
|
|
expect(Zone.current.name).toEqual(subscriptionZone.name);
|
|
|
|
log.push(result);
|
|
|
|
},
|
2020-04-13 19:40:21 -04:00
|
|
|
() => {
|
|
|
|
fail('should not call error');
|
|
|
|
},
|
2019-05-31 11:56:07 -04:00
|
|
|
() => {
|
|
|
|
expect(Zone.current.name).toEqual(subscriptionZone.name);
|
|
|
|
log.push('completed');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(log).toEqual([1, 2, 'completed']);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('from array like object should run in the correct zone', () => {
|
2020-04-13 19:40:21 -04:00
|
|
|
observable1 = constructorZone1.run(() => {
|
|
|
|
return from('foo');
|
|
|
|
});
|
2019-05-31 11:56:07 -04:00
|
|
|
|
|
|
|
subscriptionZone.run(() => {
|
|
|
|
observable1.subscribe(
|
|
|
|
(result: any) => {
|
|
|
|
expect(Zone.current.name).toEqual(subscriptionZone.name);
|
|
|
|
log.push(result);
|
|
|
|
},
|
2020-04-13 19:40:21 -04:00
|
|
|
() => {
|
|
|
|
fail('should not call error');
|
|
|
|
},
|
2019-05-31 11:56:07 -04:00
|
|
|
() => {
|
|
|
|
expect(Zone.current.name).toEqual(subscriptionZone.name);
|
|
|
|
log.push('completed');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(log).toEqual(['f', 'o', 'o', 'completed']);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('from promise object should run in the correct zone', asyncTest((done: any) => {
|
|
|
|
const constructorZone1: Zone = Zone.current.fork({name: 'Constructor Zone1'});
|
|
|
|
const subscriptionZone: Zone = Zone.current.fork({name: 'Subscription Zone'});
|
2020-04-13 19:40:21 -04:00
|
|
|
observable1 = constructorZone1.run(() => {
|
|
|
|
return from(new Promise((resolve, reject) => {
|
|
|
|
resolve(1);
|
|
|
|
}));
|
|
|
|
});
|
2019-05-31 11:56:07 -04:00
|
|
|
|
|
|
|
subscriptionZone.run(() => {
|
|
|
|
observable1.subscribe(
|
|
|
|
(result: any) => {
|
|
|
|
expect(Zone.current.name).toEqual(subscriptionZone.name);
|
|
|
|
log.push(result);
|
|
|
|
},
|
2020-04-13 19:40:21 -04:00
|
|
|
(error: any) => {
|
|
|
|
fail('should not call error' + error);
|
|
|
|
},
|
2019-05-31 11:56:07 -04:00
|
|
|
() => {
|
|
|
|
expect(Zone.current.name).toEqual(subscriptionZone.name);
|
|
|
|
log.push('completed');
|
|
|
|
expect(log).toEqual([1, 'completed']);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
expect(log).toEqual([]);
|
|
|
|
}, Zone.root));
|
|
|
|
});
|