mirror of
https://github.com/zhigang1992/angular.js.git
synced 2026-01-12 22:45:52 +08:00
122 lines
3.8 KiB
JavaScript
122 lines
3.8 KiB
JavaScript
describe('compiler', function(){
|
|
var compiler, textMarkup, directives, widgets, compile, log;
|
|
|
|
beforeEach(function(){
|
|
log = "";
|
|
directives = {
|
|
hello: function(expression, element){
|
|
log += "hello ";
|
|
return function() {
|
|
log += expression;
|
|
};
|
|
},
|
|
|
|
watch: function(expression, element){
|
|
return function() {
|
|
this.$watch(expression, function(val){
|
|
log += ":" + val;
|
|
});
|
|
};
|
|
}
|
|
|
|
};
|
|
textMarkup = [];
|
|
attrMarkup = [];
|
|
widgets = {};
|
|
compiler = new Compiler(textMarkup, attrMarkup, directives, widgets);
|
|
compile = function(html){
|
|
var e = jqLite("<div>" + html + "</div>");
|
|
var scope = compiler.compile(e)(e);
|
|
scope.$init();
|
|
return scope;
|
|
};
|
|
});
|
|
|
|
it('should recognize a directive', function(){
|
|
var e = jqLite('<div directive="expr" ignore="me"></div>');
|
|
directives.directive = function(expression, element){
|
|
log += "found";
|
|
expect(expression).toEqual("expr");
|
|
expect(element).toEqual(e);
|
|
return function initFn() {
|
|
log += ":init";
|
|
};
|
|
};
|
|
var template = compiler.compile(e);
|
|
var init = template(e).$init;
|
|
expect(log).toEqual("found");
|
|
init();
|
|
expect(log).toEqual("found:init");
|
|
});
|
|
|
|
it('should recurse to children', function(){
|
|
var scope = compile('<div><span hello="misko"/></div>');
|
|
expect(log).toEqual("hello misko");
|
|
});
|
|
|
|
it('should watch scope', function(){
|
|
var scope = compile('<span watch="name"/>');
|
|
expect(log).toEqual("");
|
|
scope.$eval();
|
|
scope.$set('name', 'misko');
|
|
scope.$eval();
|
|
scope.$eval();
|
|
scope.$set('name', 'adam');
|
|
scope.$eval();
|
|
scope.$eval();
|
|
expect(log).toEqual(":misko:adam");
|
|
});
|
|
|
|
it('should prevent descend', function(){
|
|
directives.stop = function(){ this.descend(false); };
|
|
var scope = compile('<span hello="misko" stop="true"><span hello="adam"/></span>');
|
|
expect(log).toEqual("hello misko");
|
|
});
|
|
|
|
it('should allow creation of templates', function(){
|
|
directives.duplicate = function(expr, element){
|
|
var parent = element.parent();
|
|
element.replaceWith(document.createComment("marker"));
|
|
element.removeAttr("duplicate");
|
|
var template = this.compile(element);
|
|
return function(marker) {
|
|
this.$onEval(function() {
|
|
marker.after(template(element.clone()).$element);
|
|
});
|
|
};
|
|
};
|
|
var scope = compile('before<span duplicate="expr">x</span>after');
|
|
expect(sortedHtml(scope.$element)).toEqual('<div>before<#comment></#comment><span>x</span>after</div>');
|
|
scope.$eval();
|
|
expect(sortedHtml(scope.$element)).toEqual('<div>before<#comment></#comment><span>x</span><span>x</span>after</div>');
|
|
scope.$eval();
|
|
expect(sortedHtml(scope.$element)).toEqual('<div>before<#comment></#comment><span>x</span><span>x</span><span>x</span>after</div>');
|
|
});
|
|
|
|
it('should process markup before directives', function(){
|
|
textMarkup.push(function(text, textNode, parentNode) {
|
|
if (text == 'middle') {
|
|
expect(textNode.text()).toEqual(text);
|
|
parentNode.attr('hello', text);
|
|
textNode[0].textContent = 'replaced';
|
|
}
|
|
});
|
|
var scope = compile('before<span>middle</span>after');
|
|
expect(scope.$element[0].innerHTML).toEqual('before<span hello="middle">replaced</span>after');
|
|
expect(log).toEqual("hello middle");
|
|
});
|
|
|
|
it('should replace widgets', function(){
|
|
widgets['NG:BUTTON'] = function(element) {
|
|
element.replaceWith('<div>button</div>', element);
|
|
return function(element) {
|
|
log += 'init';
|
|
};
|
|
};
|
|
var scope = compile('<ng:button>push me</ng:button>');
|
|
expect(scope.$element[0].innerHTML).toEqual('<div>button</div>');
|
|
expect(log).toEqual('init');
|
|
});
|
|
|
|
});
|