2014-11-07 17:30:04 -05:00
|
|
|
import {describe, ddescribe, it, iit, xit, xdescribe, expect, beforeEach} from 'test_lib/test_lib';
|
2015-01-08 12:11:33 -05:00
|
|
|
import {bootstrap, appDocumentToken, appElementToken}
|
2014-11-07 17:30:04 -05:00
|
|
|
from 'core/application';
|
2014-11-22 00:19:23 -05:00
|
|
|
import {Component} from 'core/annotations/annotations';
|
2014-11-07 17:30:04 -05:00
|
|
|
import {DOM} from 'facade/dom';
|
|
|
|
import {ListWrapper} from 'facade/collection';
|
|
|
|
import {PromiseWrapper} from 'facade/async';
|
2015-01-08 12:11:33 -05:00
|
|
|
import {bind, Inject} from 'di/di';
|
2014-11-07 17:30:04 -05:00
|
|
|
import {TemplateConfig} from 'core/annotations/template_config';
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'hello-app',
|
|
|
|
template: new TemplateConfig({
|
|
|
|
inline: '{{greeting}} world!',
|
|
|
|
directives: []
|
|
|
|
})
|
|
|
|
})
|
|
|
|
class HelloRootCmp {
|
2014-11-22 00:19:23 -05:00
|
|
|
greeting:string;
|
2014-11-07 17:30:04 -05:00
|
|
|
constructor() {
|
|
|
|
this.greeting = 'hello';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'hello-app-2',
|
|
|
|
template: new TemplateConfig({
|
|
|
|
inline: '{{greeting}} world, again!',
|
|
|
|
directives: []
|
|
|
|
})
|
|
|
|
})
|
|
|
|
class HelloRootCmp2 {
|
2014-11-22 00:19:23 -05:00
|
|
|
greeting:string;
|
2014-11-07 17:30:04 -05:00
|
|
|
constructor() {
|
|
|
|
this.greeting = 'hello';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-08 12:11:33 -05:00
|
|
|
@Component({
|
|
|
|
selector: 'hello-app',
|
|
|
|
template: new TemplateConfig({
|
|
|
|
inline: '',
|
|
|
|
directives: []
|
|
|
|
})
|
|
|
|
})
|
|
|
|
class HelloRootCmp3 {
|
|
|
|
appBinding;
|
|
|
|
|
|
|
|
constructor(@Inject("appBinding") appBinding) {
|
|
|
|
this.appBinding = appBinding;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-07 17:30:04 -05:00
|
|
|
export function main() {
|
2015-01-08 12:11:33 -05:00
|
|
|
var fakeDoc, el, el2, testBindings;
|
2014-11-07 17:30:04 -05:00
|
|
|
|
|
|
|
beforeEach(() => {
|
|
|
|
fakeDoc = DOM.createHtmlDocument();
|
|
|
|
el = DOM.createElement('hello-app', fakeDoc);
|
|
|
|
el2 = DOM.createElement('hello-app-2', fakeDoc);
|
|
|
|
DOM.appendChild(fakeDoc.body, el);
|
|
|
|
DOM.appendChild(fakeDoc.body, el2);
|
2015-01-08 12:11:33 -05:00
|
|
|
testBindings = [bind(appDocumentToken).toValue(fakeDoc)];
|
2014-11-07 17:30:04 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
describe('bootstrap factory method', () => {
|
|
|
|
it('should throw if no element is found', (done) => {
|
2014-12-11 14:36:05 -05:00
|
|
|
var injectorPromise = bootstrap(HelloRootCmp, [], (e,t) => {throw e;});
|
2014-11-07 17:30:04 -05:00
|
|
|
PromiseWrapper.then(injectorPromise, null, (reason) => {
|
|
|
|
expect(reason.message).toContain(
|
|
|
|
'The app selector "hello-app" did not match any elements');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should create an injector promise', () => {
|
2015-01-08 12:11:33 -05:00
|
|
|
var injectorPromise = bootstrap(HelloRootCmp, testBindings);
|
2014-11-07 17:30:04 -05:00
|
|
|
expect(injectorPromise).not.toBe(null);
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should resolve an injector promise and contain bindings', (done) => {
|
2015-01-08 12:11:33 -05:00
|
|
|
var injectorPromise = bootstrap(HelloRootCmp, testBindings);
|
2014-11-07 17:30:04 -05:00
|
|
|
injectorPromise.then((injector) => {
|
|
|
|
expect(injector.get(appElementToken)).toBe(el);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-12-08 13:54:43 -05:00
|
|
|
it('should provide the application component in the injector', (done) => {
|
2015-01-08 12:11:33 -05:00
|
|
|
var injectorPromise = bootstrap(HelloRootCmp, testBindings);
|
2014-12-08 13:54:43 -05:00
|
|
|
injectorPromise.then((injector) => {
|
|
|
|
expect(injector.get(HelloRootCmp)).toBeAnInstanceOf(HelloRootCmp);
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-11-07 17:30:04 -05:00
|
|
|
it('should display hello world', (done) => {
|
2015-01-08 12:11:33 -05:00
|
|
|
var injectorPromise = bootstrap(HelloRootCmp, testBindings);
|
2014-11-07 17:30:04 -05:00
|
|
|
injectorPromise.then((injector) => {
|
|
|
|
expect(injector.get(appElementToken)
|
|
|
|
.shadowRoot.childNodes[0].nodeValue).toEqual('hello world!');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should support multiple calls to bootstrap', (done) => {
|
2015-01-08 12:11:33 -05:00
|
|
|
var injectorPromise1 = bootstrap(HelloRootCmp, testBindings);
|
|
|
|
var injectorPromise2 = bootstrap(HelloRootCmp2, testBindings);
|
2014-11-07 17:30:04 -05:00
|
|
|
PromiseWrapper.all([injectorPromise1, injectorPromise2]).then((injectors) => {
|
|
|
|
expect(injectors[0].get(appElementToken)
|
|
|
|
.shadowRoot.childNodes[0].nodeValue).toEqual('hello world!');
|
|
|
|
expect(injectors[1].get(appElementToken)
|
|
|
|
.shadowRoot.childNodes[0].nodeValue).toEqual('hello world, again!');
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2015-01-08 12:11:33 -05:00
|
|
|
|
|
|
|
it("should make the provided binings available to the application component", (done) => {
|
|
|
|
var injectorPromise = bootstrap(HelloRootCmp3, [
|
|
|
|
testBindings,
|
|
|
|
bind("appBinding").toValue("BoundValue")
|
|
|
|
]);
|
|
|
|
|
|
|
|
injectorPromise.then((injector) => {
|
|
|
|
expect(injector.get(HelloRootCmp3).appBinding).toEqual("BoundValue");
|
|
|
|
done();
|
|
|
|
});
|
|
|
|
});
|
2014-11-07 17:30:04 -05:00
|
|
|
});
|
|
|
|
}
|