2015-04-17 12:59:56 -04:00
|
|
|
import {
|
|
|
|
AsyncTestCompleter,
|
|
|
|
describe,
|
|
|
|
proxy,
|
|
|
|
it, iit,
|
|
|
|
ddescribe, expect,
|
|
|
|
inject, beforeEach,
|
|
|
|
SpyObject} from 'angular2/test_lib';
|
|
|
|
import {IMPLEMENTS} from 'angular2/src/facade/lang';
|
|
|
|
|
|
|
|
import {Promise, PromiseWrapper} from 'angular2/src/facade/async';
|
2015-04-29 18:07:55 -04:00
|
|
|
import {RootRouter} from 'angular2/src/router/router';
|
2015-04-17 12:59:56 -04:00
|
|
|
import {Pipeline} from 'angular2/src/router/pipeline';
|
|
|
|
import {RouterOutlet} from 'angular2/src/router/router_outlet';
|
2015-04-21 14:23:23 -04:00
|
|
|
import {DummyLocation} from 'angular2/src/mock/location_mock'
|
2015-04-17 12:59:56 -04:00
|
|
|
|
|
|
|
export function main() {
|
|
|
|
describe('Router', () => {
|
2015-04-21 14:23:23 -04:00
|
|
|
var router,
|
|
|
|
location;
|
2015-04-17 12:59:56 -04:00
|
|
|
|
|
|
|
beforeEach(() => {
|
2015-04-21 14:23:23 -04:00
|
|
|
location = new DummyLocation();
|
|
|
|
router = new RootRouter(new Pipeline(), location);
|
2015-04-17 12:59:56 -04:00
|
|
|
});
|
|
|
|
|
2015-04-21 14:23:23 -04:00
|
|
|
|
|
|
|
it('should navigate based on the initial URL state', inject([AsyncTestCompleter], (async) => {
|
|
|
|
var outlet = makeDummyRef();
|
|
|
|
|
2015-04-29 18:47:12 -04:00
|
|
|
router.config({'path': '/', 'component': 'Index' })
|
2015-04-21 14:23:23 -04:00
|
|
|
.then((_) => router.registerOutlet(outlet))
|
|
|
|
.then((_) => {
|
|
|
|
expect(outlet.spy('activate')).toHaveBeenCalled();
|
2015-04-29 18:47:12 -04:00
|
|
|
expect(location.urlChanges).toEqual([]);
|
2015-04-21 14:23:23 -04:00
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
|
|
it('should activate viewports and update URL on navigate', inject([AsyncTestCompleter], (async) => {
|
|
|
|
var outlet = makeDummyRef();
|
|
|
|
|
|
|
|
router.registerOutlet(outlet)
|
|
|
|
.then((_) => {
|
2015-04-29 18:47:12 -04:00
|
|
|
return router.config({'path': '/a', 'component': 'A' });
|
2015-04-21 14:23:23 -04:00
|
|
|
})
|
|
|
|
.then((_) => router.navigate('/a'))
|
|
|
|
.then((_) => {
|
|
|
|
expect(outlet.spy('activate')).toHaveBeenCalled();
|
|
|
|
expect(location.urlChanges).toEqual(['/a']);
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2015-04-17 12:59:56 -04:00
|
|
|
it('should navigate after being configured', inject([AsyncTestCompleter], (async) => {
|
|
|
|
var outlet = makeDummyRef();
|
|
|
|
|
|
|
|
router.registerOutlet(outlet)
|
|
|
|
.then((_) => router.navigate('/a'))
|
|
|
|
.then((_) => {
|
|
|
|
expect(outlet.spy('activate')).not.toHaveBeenCalled();
|
2015-04-29 18:47:12 -04:00
|
|
|
return router.config({'path': '/a', 'component': 'A' });
|
2015-04-17 12:59:56 -04:00
|
|
|
})
|
|
|
|
.then((_) => {
|
|
|
|
expect(outlet.spy('activate')).toHaveBeenCalled();
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
@proxy
|
|
|
|
@IMPLEMENTS(RouterOutlet)
|
|
|
|
class DummyOutletRef extends SpyObject {noSuchMethod(m){return super.noSuchMethod(m)}}
|
|
|
|
|
|
|
|
function makeDummyRef() {
|
|
|
|
var ref = new DummyOutletRef();
|
|
|
|
ref.spy('activate').andCallFake((_) => PromiseWrapper.resolve(true));
|
|
|
|
ref.spy('canActivate').andCallFake((_) => PromiseWrapper.resolve(true));
|
|
|
|
ref.spy('canDeactivate').andCallFake((_) => PromiseWrapper.resolve(true));
|
|
|
|
ref.spy('deactivate').andCallFake((_) => PromiseWrapper.resolve(true));
|
|
|
|
return ref;
|
|
|
|
}
|