2015-03-13 06:10:11 -04:00
|
|
|
import {
|
|
|
|
afterEach,
|
|
|
|
AsyncTestCompleter,
|
|
|
|
beforeEach,
|
|
|
|
ddescribe,
|
|
|
|
describe,
|
|
|
|
dispatchEvent,
|
|
|
|
el,
|
|
|
|
expect,
|
|
|
|
iit,
|
|
|
|
inject,
|
|
|
|
it,
|
|
|
|
queryView,
|
|
|
|
xit,
|
2015-03-09 12:41:49 -04:00
|
|
|
IS_NODEJS
|
2015-03-13 06:10:11 -04:00
|
|
|
} from 'angular2/test_lib';
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-02-05 17:09:26 -05:00
|
|
|
import {Lexer, Parser, ChangeDetector, dynamicChangeDetection} from 'angular2/change_detection';
|
|
|
|
import {Compiler, CompilerCache} from 'angular2/src/core/compiler/compiler';
|
|
|
|
import {DirectiveMetadataReader} from 'angular2/src/core/compiler/directive_metadata_reader';
|
2015-01-30 03:43:21 -05:00
|
|
|
import {NativeShadowDomStrategy} from 'angular2/src/core/compiler/shadow_dom_strategy';
|
2015-02-12 08:44:59 -05:00
|
|
|
import {TemplateLoader} from 'angular2/src/core/compiler/template_loader';
|
2015-02-24 10:05:45 -05:00
|
|
|
import {ComponentUrlMapper} from 'angular2/src/core/compiler/component_url_mapper';
|
|
|
|
import {UrlResolver} from 'angular2/src/core/compiler/url_resolver';
|
|
|
|
import {StyleUrlResolver} from 'angular2/src/core/compiler/style_url_resolver';
|
2015-03-02 09:02:48 -05:00
|
|
|
import {CssProcessor} from 'angular2/src/core/compiler/css_processor';
|
2015-02-24 10:05:45 -05:00
|
|
|
|
2015-02-24 09:32:44 -05:00
|
|
|
import {MockTemplateResolver} from 'angular2/src/mock/template_resolver_mock';
|
2015-02-12 08:44:59 -05:00
|
|
|
|
2015-02-05 17:09:26 -05:00
|
|
|
import {Injector} from 'angular2/di';
|
2015-02-12 08:44:59 -05:00
|
|
|
|
|
|
|
import {Component, Decorator, Template} from 'angular2/core';
|
2015-02-24 14:59:10 -05:00
|
|
|
import {ControlGroupDirective, ControlDirective, Control, ControlGroup, OptionalControl,
|
2015-02-23 18:26:53 -05:00
|
|
|
ControlValueAccessor, RequiredValidatorDirective} from 'angular2/forms';
|
|
|
|
|
|
|
|
import * as validators from 'angular2/src/forms/validators';
|
2015-02-04 14:45:33 -05:00
|
|
|
|
2015-02-03 10:27:09 -05:00
|
|
|
export function main() {
|
|
|
|
function detectChanges(view) {
|
|
|
|
view.changeDetector.detectChanges();
|
|
|
|
}
|
|
|
|
|
|
|
|
function compile(componentType, template, context, callback) {
|
2015-02-24 09:32:44 -05:00
|
|
|
var tplResolver = new MockTemplateResolver();
|
2015-02-24 10:05:45 -05:00
|
|
|
var urlResolver = new UrlResolver();
|
2015-02-12 08:44:59 -05:00
|
|
|
|
2015-02-04 14:45:33 -05:00
|
|
|
var compiler = new Compiler(dynamicChangeDetection,
|
2015-02-24 10:05:45 -05:00
|
|
|
new TemplateLoader(null, null),
|
2015-02-04 14:45:33 -05:00
|
|
|
new DirectiveMetadataReader(),
|
|
|
|
new Parser(new Lexer()),
|
|
|
|
new CompilerCache(),
|
2015-02-24 10:05:45 -05:00
|
|
|
new NativeShadowDomStrategy(new StyleUrlResolver(urlResolver)),
|
|
|
|
tplResolver,
|
|
|
|
new ComponentUrlMapper(),
|
2015-03-02 09:02:48 -05:00
|
|
|
urlResolver,
|
2015-03-03 05:32:19 -05:00
|
|
|
new CssProcessor(null)
|
2015-02-12 08:44:59 -05:00
|
|
|
);
|
|
|
|
|
|
|
|
tplResolver.setTemplate(componentType, new Template({
|
|
|
|
inline: template,
|
2015-02-24 14:59:10 -05:00
|
|
|
directives: [ControlGroupDirective, ControlDirective, WrappedValue, RequiredValidatorDirective]
|
2015-02-12 08:44:59 -05:00
|
|
|
}));
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-02-12 08:44:59 -05:00
|
|
|
compiler.compile(componentType).then((pv) => {
|
2015-03-11 14:57:21 -04:00
|
|
|
var view = pv.instantiate(null, null);
|
2015-03-12 00:11:39 -04:00
|
|
|
view.hydrate(new Injector([]), null, null, context, null);
|
2015-02-03 10:27:09 -05:00
|
|
|
detectChanges(view);
|
|
|
|
callback(view);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
describe("integration tests", () => {
|
2015-03-13 06:10:11 -04:00
|
|
|
it("should initialize DOM elements with the given form object", inject([AsyncTestCompleter], (async) => {
|
2015-02-03 10:27:09 -05:00
|
|
|
var ctx = new MyComp(new ControlGroup({
|
|
|
|
"login": new Control("loginValue")
|
|
|
|
}));
|
|
|
|
|
|
|
|
var t = `<div [control-group]="form">
|
2015-02-23 18:26:53 -05:00
|
|
|
<input type="text" control="login">
|
2015-02-03 10:27:09 -05:00
|
|
|
</div>`;
|
|
|
|
|
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
var input = queryView(view, "input")
|
|
|
|
expect(input.value).toEqual("loginValue");
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-02-03 10:27:09 -05:00
|
|
|
});
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
if (!IS_NODEJS) {
|
|
|
|
it("should update the control group values on DOM change", inject([AsyncTestCompleter], (async) => {
|
|
|
|
var form = new ControlGroup({
|
|
|
|
"login": new Control("oldValue")
|
|
|
|
});
|
|
|
|
var ctx = new MyComp(form);
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
var t = `<div [control-group]="form">
|
|
|
|
<input type="text" control="login">
|
|
|
|
</div>`;
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
var input = queryView(view, "input")
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
input.value = "updatedValue";
|
|
|
|
dispatchEvent(input, "change");
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
expect(form.value).toEqual({"login": "updatedValue"});
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
}
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
it("should update DOM elements when rebinding the control group", inject([AsyncTestCompleter], (async) => {
|
2015-02-03 10:27:09 -05:00
|
|
|
var form = new ControlGroup({
|
|
|
|
"login": new Control("oldValue")
|
|
|
|
});
|
|
|
|
var ctx = new MyComp(form);
|
|
|
|
|
|
|
|
var t = `<div [control-group]="form">
|
2015-02-23 18:26:53 -05:00
|
|
|
<input type="text" control="login">
|
2015-02-03 10:27:09 -05:00
|
|
|
</div>`;
|
|
|
|
|
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
ctx.form = new ControlGroup({
|
|
|
|
"login": new Control("newValue")
|
|
|
|
});
|
|
|
|
detectChanges(view);
|
|
|
|
|
|
|
|
var input = queryView(view, "input")
|
|
|
|
expect(input.value).toEqual("newValue");
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-02-03 10:27:09 -05:00
|
|
|
});
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-02-03 10:27:09 -05:00
|
|
|
|
2015-03-13 06:10:11 -04:00
|
|
|
it("should update DOM element when rebinding the control name", inject([AsyncTestCompleter], (async) => {
|
2015-02-03 10:27:09 -05:00
|
|
|
var ctx = new MyComp(new ControlGroup({
|
|
|
|
"one": new Control("one"),
|
|
|
|
"two": new Control("two")
|
|
|
|
}), "one");
|
|
|
|
|
|
|
|
var t = `<div [control-group]="form">
|
2015-02-23 18:26:53 -05:00
|
|
|
<input type="text" [control]="name">
|
2015-02-03 10:27:09 -05:00
|
|
|
</div>`;
|
|
|
|
|
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
var input = queryView(view, "input")
|
|
|
|
expect(input.value).toEqual("one");
|
|
|
|
|
|
|
|
ctx.name = "two";
|
|
|
|
detectChanges(view);
|
|
|
|
|
|
|
|
expect(input.value).toEqual("two");
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-02-03 10:27:09 -05:00
|
|
|
});
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-02-04 14:45:33 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
if (!IS_NODEJS) {
|
|
|
|
describe("different control types", () => {
|
|
|
|
it("should support type=checkbox", inject([AsyncTestCompleter], (async) => {
|
|
|
|
var ctx = new MyComp(new ControlGroup({"checkbox": new Control(true)}));
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
var t = `<div [control-group]="form">
|
|
|
|
<input type="checkbox" control="checkbox">
|
|
|
|
</div>`;
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
var input = queryView(view, "input")
|
|
|
|
expect(input.checked).toBe(true);
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
input.checked = false;
|
|
|
|
dispatchEvent(input, "change");
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
expect(ctx.form.value).toEqual({"checkbox" : false});
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-19 12:51:30 -04:00
|
|
|
it("should support textarea", inject([AsyncTestCompleter], (async) => {
|
|
|
|
var ctx = new MyComp(new ControlGroup({"text": new Control('old')}));
|
|
|
|
|
|
|
|
var t = `<div [control-group]="form">
|
|
|
|
<textarea control="text"></textarea>
|
|
|
|
</div>`;
|
|
|
|
|
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
var textarea = queryView(view, "textarea")
|
|
|
|
expect(textarea.value).toEqual("old");
|
|
|
|
|
|
|
|
textarea.value = "new";
|
|
|
|
dispatchEvent(textarea, "change");
|
|
|
|
|
|
|
|
expect(ctx.form.value).toEqual({"text" : 'new'});
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
it("should support custom value accessors", inject([AsyncTestCompleter], (async) => {
|
|
|
|
var ctx = new MyComp(new ControlGroup({"name": new Control("aa")}));
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
var t = `<div [control-group]="form">
|
|
|
|
<input type="text" control="name" wrapped-value>
|
|
|
|
</div>`;
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
var input = queryView(view, "input")
|
|
|
|
expect(input.value).toEqual("!aa!");
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
input.value = "!bb!";
|
|
|
|
dispatchEvent(input, "change");
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
expect(ctx.form.value).toEqual({"name" : "bb"});
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
2015-02-07 17:14:07 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
describe("validations", () => {
|
|
|
|
it("should use validators defined in html", inject([AsyncTestCompleter], (async) => {
|
|
|
|
var form = new ControlGroup({"login": new Control("aa")});
|
|
|
|
var ctx = new MyComp(form);
|
2015-02-04 14:45:33 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
var t = `<div [control-group]="form">
|
|
|
|
<input type="text" control="login" required>
|
|
|
|
</div>`;
|
2015-02-04 14:45:33 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
expect(form.valid).toEqual(true);
|
2015-02-04 14:45:33 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
var input = queryView(view, "input");
|
2015-02-04 14:45:33 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
input.value = "";
|
|
|
|
dispatchEvent(input, "change");
|
2015-02-04 14:45:33 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
expect(form.valid).toEqual(false);
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
2015-02-04 14:45:33 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
it("should use validators defined in the model", inject([AsyncTestCompleter], (async) => {
|
|
|
|
var form = new ControlGroup({"login": new Control("aa", validators.required)});
|
|
|
|
var ctx = new MyComp(form);
|
2015-02-23 18:26:53 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
var t = `<div [control-group]="form">
|
|
|
|
<input type="text" control="login">
|
|
|
|
</div>`;
|
2015-02-11 14:10:31 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
expect(form.valid).toEqual(true);
|
2015-02-11 14:10:31 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
var input = queryView(view, "input");
|
2015-02-11 14:10:31 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
input.value = "";
|
|
|
|
dispatchEvent(input, "change");
|
2015-02-11 14:10:31 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
expect(form.valid).toEqual(false);
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
}
|
2015-03-03 05:32:19 -05:00
|
|
|
|
2015-02-25 18:10:27 -05:00
|
|
|
describe("nested forms", () => {
|
2015-03-13 06:10:11 -04:00
|
|
|
it("should init DOM with the given form object",inject([AsyncTestCompleter], (async) => {
|
2015-02-25 18:10:27 -05:00
|
|
|
var form = new ControlGroup({
|
|
|
|
"nested": new ControlGroup({
|
|
|
|
"login": new Control("value")
|
|
|
|
})
|
|
|
|
});
|
|
|
|
var ctx = new MyComp(form);
|
|
|
|
|
|
|
|
var t = `<div [control-group]="form">
|
|
|
|
<div control-group="nested">
|
|
|
|
<input type="text" control="login">
|
|
|
|
</div>
|
|
|
|
</div>`;
|
|
|
|
|
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
var input = queryView(view, "input")
|
|
|
|
expect(input.value).toEqual("value");
|
2015-03-13 06:10:11 -04:00
|
|
|
async.done();
|
2015-02-25 18:10:27 -05:00
|
|
|
});
|
2015-03-13 06:10:11 -04:00
|
|
|
}));
|
2015-02-25 18:10:27 -05:00
|
|
|
|
2015-03-09 12:41:49 -04:00
|
|
|
if (!IS_NODEJS) {
|
|
|
|
it("should update the control group values on DOM change", inject([AsyncTestCompleter], (async) => {
|
|
|
|
var form = new ControlGroup({
|
|
|
|
"nested": new ControlGroup({
|
|
|
|
"login": new Control("value")
|
|
|
|
})
|
|
|
|
});
|
|
|
|
var ctx = new MyComp(form);
|
|
|
|
|
|
|
|
var t = `<div [control-group]="form">
|
|
|
|
<div control-group="nested">
|
|
|
|
<input type="text" control="login">
|
|
|
|
</div>
|
|
|
|
</div>`;
|
|
|
|
|
|
|
|
compile(MyComp, t, ctx, (view) => {
|
|
|
|
var input = queryView(view, "input")
|
|
|
|
|
|
|
|
input.value = "updatedValue";
|
|
|
|
dispatchEvent(input, "change");
|
|
|
|
|
|
|
|
expect(form.value).toEqual({"nested" : {"login" : "updatedValue"}});
|
|
|
|
async.done();
|
|
|
|
});
|
|
|
|
}));
|
|
|
|
}
|
2015-02-25 18:10:27 -05:00
|
|
|
});
|
2015-02-03 10:27:09 -05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-02-11 14:10:31 -05:00
|
|
|
@Component({
|
|
|
|
selector: "my-comp"
|
|
|
|
})
|
2015-02-03 10:27:09 -05:00
|
|
|
class MyComp {
|
|
|
|
form:ControlGroup;
|
|
|
|
name:string;
|
|
|
|
|
2015-02-04 14:45:33 -05:00
|
|
|
constructor(form = null, name = null) {
|
2015-02-03 10:27:09 -05:00
|
|
|
this.form = form;
|
|
|
|
this.name = name;
|
|
|
|
}
|
2015-01-30 03:43:21 -05:00
|
|
|
}
|
2015-02-07 17:14:07 -05:00
|
|
|
|
|
|
|
class WrappedValueAccessor extends ControlValueAccessor {
|
|
|
|
readValue(el){
|
|
|
|
return el.value.substring(1, el.value.length - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
writeValue(el, value):void {
|
|
|
|
el.value = `!${value}!`;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Decorator({
|
|
|
|
selector:'[wrapped-value]'
|
|
|
|
})
|
|
|
|
class WrappedValue {
|
2015-02-23 18:26:53 -05:00
|
|
|
constructor(cd:ControlDirective) {
|
2015-02-07 17:14:07 -05:00
|
|
|
cd.valueAccessor = new WrappedValueAccessor();
|
|
|
|
}
|
2015-02-12 08:44:59 -05:00
|
|
|
}
|