2015-05-29 17:58:41 -04:00
|
|
|
import {
|
|
|
|
AsyncTestCompleter,
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
xdescribe,
|
|
|
|
xit,
|
|
|
|
} from 'angular2/test_lib';
|
|
|
|
|
|
|
|
import {bootstrap} from 'angular2/src/core/application';
|
|
|
|
import {Component, Directive, View} from 'angular2/src/core/annotations/decorators';
|
|
|
|
import {DOM} from 'angular2/src/dom/dom_adapter';
|
|
|
|
import {bind} from 'angular2/di';
|
|
|
|
import {DOCUMENT_TOKEN} from 'angular2/src/render/dom/dom_renderer';
|
2015-07-13 19:12:48 -04:00
|
|
|
import {RouteConfig, Route, Redirect} from 'angular2/src/router/route_config_decorator';
|
2015-06-08 21:04:13 -04:00
|
|
|
import {PromiseWrapper} from 'angular2/src/facade/async';
|
|
|
|
import {BaseException} from 'angular2/src/facade/lang';
|
2015-06-15 18:41:09 -04:00
|
|
|
import {routerInjectables, Router, appBaseHrefToken, routerDirectives} from 'angular2/router';
|
2015-06-22 15:14:19 -04:00
|
|
|
import {LocationStrategy} from 'angular2/src/router/location_strategy';
|
|
|
|
import {MockLocationStrategy} from 'angular2/src/mock/mock_location_strategy';
|
2015-05-29 17:58:41 -04:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('router injectables', () => {
|
|
|
|
var fakeDoc, el, testBindings;
|
|
|
|
beforeEach(() => {
|
|
|
|
fakeDoc = DOM.createHtmlDocument();
|
|
|
|
el = DOM.createElement('app-cmp', fakeDoc);
|
|
|
|
DOM.appendChild(fakeDoc.body, el);
|
|
|
|
testBindings = [
|
|
|
|
routerInjectables,
|
2015-06-22 15:14:19 -04:00
|
|
|
bind(LocationStrategy).toClass(MockLocationStrategy),
|
2015-05-29 17:58:41 -04:00
|
|
|
bind(DOCUMENT_TOKEN).toValue(fakeDoc)
|
|
|
|
];
|
|
|
|
});
|
|
|
|
|
2015-06-15 18:41:09 -04:00
|
|
|
it('should bootstrap a simple app', inject([AsyncTestCompleter], (async) => {
|
2015-05-29 17:58:41 -04:00
|
|
|
bootstrap(AppCmp, testBindings)
|
|
|
|
.then((applicationRef) => {
|
|
|
|
var router = applicationRef.hostComponent.router;
|
|
|
|
router.subscribe((_) => {
|
|
|
|
expect(el).toHaveText('outer { hello }');
|
2015-06-22 15:14:19 -04:00
|
|
|
expect(applicationRef.hostComponent.location.path()).toEqual('');
|
2015-05-29 17:58:41 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2015-06-08 21:04:13 -04:00
|
|
|
it('should rethrow exceptions from component constructors',
|
|
|
|
inject([AsyncTestCompleter], (async) => {
|
|
|
|
bootstrap(BrokenAppCmp, testBindings)
|
|
|
|
.then((applicationRef) => {
|
|
|
|
var router = applicationRef.hostComponent.router;
|
|
|
|
PromiseWrapper.catchError(router.navigate('/cause-error'), (error) => {
|
|
|
|
expect(el).toHaveText('outer { oh no }');
|
2015-06-26 18:59:18 -04:00
|
|
|
expect(error.message).toContain('oops!');
|
2015-06-08 21:04:13 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2015-06-15 18:41:09 -04:00
|
|
|
it('should bootstrap an app with a hierarchy', inject([AsyncTestCompleter], (async) => {
|
|
|
|
bootstrap(HierarchyAppCmp, testBindings)
|
|
|
|
.then((applicationRef) => {
|
|
|
|
var router = applicationRef.hostComponent.router;
|
|
|
|
router.subscribe((_) => {
|
|
|
|
expect(el).toHaveText('root { parent { hello } }');
|
|
|
|
expect(applicationRef.hostComponent.location.path()).toEqual('/parent/child');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
router.navigate('/parent/child');
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
it('should bootstrap an app with a custom app base href',
|
|
|
|
inject([AsyncTestCompleter], (async) => {
|
|
|
|
bootstrap(HierarchyAppCmp, [testBindings, bind(appBaseHrefToken).toValue('/my/app')])
|
|
|
|
.then((applicationRef) => {
|
|
|
|
var router = applicationRef.hostComponent.router;
|
|
|
|
router.subscribe((_) => {
|
|
|
|
expect(el).toHaveText('root { parent { hello } }');
|
|
|
|
expect(applicationRef.hostComponent.location.path())
|
|
|
|
.toEqual('/my/app/parent/child');
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
router.navigate('/parent/child');
|
|
|
|
});
|
|
|
|
}));
|
2015-05-29 17:58:41 -04:00
|
|
|
// TODO: add a test in which the child component has bindings
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Component({selector: 'hello-cmp'})
|
2015-06-15 18:41:09 -04:00
|
|
|
@View({template: 'hello'})
|
2015-05-29 17:58:41 -04:00
|
|
|
class HelloCmp {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'app-cmp'})
|
2015-06-15 18:41:09 -04:00
|
|
|
@View({template: "outer { <router-outlet></router-outlet> }", directives: routerDirectives})
|
2015-07-13 19:12:48 -04:00
|
|
|
@RouteConfig([new Route({path: '/', component: HelloCmp})])
|
2015-05-29 17:58:41 -04:00
|
|
|
class AppCmp {
|
2015-06-22 15:14:19 -04:00
|
|
|
constructor(public router: Router, public location: LocationStrategy) {}
|
2015-06-15 18:41:09 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'parent-cmp'})
|
|
|
|
@View({template: `parent { <router-outlet></router-outlet> }`, directives: routerDirectives})
|
2015-07-13 19:12:48 -04:00
|
|
|
@RouteConfig([new Route({path: '/child', component: HelloCmp})])
|
2015-06-15 18:41:09 -04:00
|
|
|
class ParentCmp {
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'app-cmp'})
|
|
|
|
@View({template: `root { <router-outlet></router-outlet> }`, directives: routerDirectives})
|
2015-07-13 19:12:48 -04:00
|
|
|
@RouteConfig([new Route({path: '/parent/...', component: ParentCmp})])
|
2015-06-15 18:41:09 -04:00
|
|
|
class HierarchyAppCmp {
|
2015-06-22 15:14:19 -04:00
|
|
|
constructor(public router: Router, public location: LocationStrategy) {}
|
2015-05-29 17:58:41 -04:00
|
|
|
}
|
2015-06-08 21:04:13 -04:00
|
|
|
|
|
|
|
@Component({selector: 'oops-cmp'})
|
|
|
|
@View({template: "oh no"})
|
|
|
|
class BrokenCmp {
|
|
|
|
constructor() { throw new BaseException('oops!'); }
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({selector: 'app-cmp'})
|
2015-07-13 19:12:48 -04:00
|
|
|
@View({template: `outer { <router-outlet></router-outlet> }`, directives: routerDirectives})
|
|
|
|
@RouteConfig([new Route({path: '/cause-error', component: BrokenCmp})])
|
2015-06-08 21:04:13 -04:00
|
|
|
class BrokenAppCmp {
|
2015-06-22 15:14:19 -04:00
|
|
|
constructor(public router: Router, public location: LocationStrategy) {}
|
2015-06-08 21:04:13 -04:00
|
|
|
}
|