angular-cn/modules/angular2/src/mock/location_mock.ts

62 lines
1.7 KiB
TypeScript
Raw Normal View History

import {Injectable} from 'angular2/src/core/di';
import {EventEmitter, ObservableWrapper} from 'angular2/src/facade/async';
import {ListWrapper} from 'angular2/src/facade/collection';
2015-04-21 14:23:23 -04:00
import {Location} from 'angular2/src/router/location';
@Injectable()
2015-08-26 14:41:41 -04:00
export class SpyLocation implements Location {
urlChanges: string[] = [];
/** @internal */
2015-08-26 14:41:41 -04:00
_path: string = '';
/** @internal */
_query: string = '';
/** @internal */
_subject: EventEmitter<any> = new EventEmitter();
/** @internal */
2015-08-26 14:41:41 -04:00
_baseHref: string = '';
2015-04-21 14:23:23 -04:00
setInitialPath(url: string) { this._path = url; }
2015-04-21 14:23:23 -04:00
setBaseHref(url: string) { this._baseHref = url; }
path(): string { return this._path; }
2015-04-21 14:23:23 -04:00
simulateUrlPop(pathname: string) { ObservableWrapper.callEmit(this._subject, {'url': pathname}); }
2015-04-21 14:23:23 -04:00
prepareExternalUrl(url: string): string {
if (url.length > 0 && !url.startsWith('/')) {
url = '/' + url;
}
return this._baseHref + url;
}
go(path: string, query: string = '') {
path = this.prepareExternalUrl(path);
if (this._path == path && this._query == query) {
2015-04-21 14:23:23 -04:00
return;
}
this._path = path;
this._query = query;
var url = path + (query.length > 0 ? ('?' + query) : '');
this.urlChanges.push(url);
2015-04-21 14:23:23 -04:00
}
forward() {
// TODO
}
back() {
// TODO
}
subscribe(onNext: (value: any) => void, onThrow: (error: any) => void = null,
onReturn: () => void = null): Object {
return ObservableWrapper.subscribe(this._subject, onNext, onThrow, onReturn);
2015-04-21 14:23:23 -04:00
}
2015-08-26 14:41:41 -04:00
// TODO: remove these once Location is an interface, and can be implemented cleanly
platformStrategy: any = null;
normalize(url: string): string { return null; }
2015-04-21 14:23:23 -04:00
}