2015-08-20 17:28:25 -04:00
|
|
|
import {EventEmitter, ObservableWrapper} from 'angular2/src/core/facade/async';
|
2015-08-28 14:29:19 -04:00
|
|
|
import {ListWrapper} from 'angular2/src/core/facade/collection';
|
2015-04-21 14:23:23 -04:00
|
|
|
import {Location} from 'angular2/src/router/location';
|
|
|
|
|
2015-08-26 14:41:41 -04:00
|
|
|
export class SpyLocation implements Location {
|
2015-08-28 14:29:19 -04:00
|
|
|
urlChanges: string[] = [];
|
2015-08-26 14:41:41 -04:00
|
|
|
_path: string = '';
|
|
|
|
_subject: EventEmitter = new EventEmitter();
|
|
|
|
_baseHref: string = '';
|
2015-04-21 14:23:23 -04:00
|
|
|
|
2015-05-29 17:58:41 -04:00
|
|
|
setInitialPath(url: string) { this._path = url; }
|
2015-04-21 14:23:23 -04:00
|
|
|
|
2015-05-29 17:58:41 -04:00
|
|
|
setBaseHref(url: string) { this._baseHref = url; }
|
2015-05-12 19:18:58 -04:00
|
|
|
|
2015-05-29 17:58:41 -04:00
|
|
|
path(): string { return this._path; }
|
2015-04-21 14:23:23 -04:00
|
|
|
|
2015-05-29 17:58:41 -04:00
|
|
|
simulateUrlPop(pathname: string) { ObservableWrapper.callNext(this._subject, {'url': pathname}); }
|
2015-04-21 14:23:23 -04:00
|
|
|
|
2015-07-07 23:03:00 -04:00
|
|
|
normalizeAbsolutely(url: string): string { return this._baseHref + url; }
|
2015-05-12 19:18:58 -04:00
|
|
|
|
2015-05-29 17:58:41 -04:00
|
|
|
go(url: string) {
|
2015-05-20 02:14:10 -04:00
|
|
|
url = this.normalizeAbsolutely(url);
|
|
|
|
if (this._path == url) {
|
2015-04-21 14:23:23 -04:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
this._path = url;
|
2015-06-17 14:17:21 -04:00
|
|
|
this.urlChanges.push(url);
|
2015-04-21 14:23:23 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
forward() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
|
|
|
back() {
|
|
|
|
// TODO
|
|
|
|
}
|
|
|
|
|
2015-07-07 23:03:00 -04:00
|
|
|
subscribe(onNext: (value: any) => void, onThrow: (error: any) => void = null,
|
|
|
|
onReturn: () => void = null) {
|
2015-04-21 14:23:23 -04:00
|
|
|
ObservableWrapper.subscribe(this._subject, onNext, onThrow, onReturn);
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|