silverstripe-framework/thirdparty/jquery-concrete/spec/spec.concrete.namespaces.js
Ingo Schommer 83267cdd45 MINOR Updated jquery-concrete to 0.9 release
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@92560 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-11-21 02:33:26 +00:00

247 lines
7.1 KiB
JavaScript

describe 'Concrete'
describe 'Namespaces'
before
$('body').append('<div id="dom_test"></div>')
end
after
$('#dom_test').remove()
end
before_each
$.concrete.synchronous_mode();
$.concrete.clear_all_rules()
$('#dom_test').html('<div id="a" class="a b c"></div><div id="b" class="c d e"></div>')
end
it 'namespaced functions work (single definition mode)'
$('#a').concrete('bar', function($){return{
bar: function(){return 'a';}
}})
$('#a').concrete('bar').bar().should.equal 'a'
end
it 'namespaced functions work (block definition mode)'
$.concrete('zap', function($){
$('#a').concrete({
bar: function(){return 'a';}
})
});
$('#a').concrete('zap').bar().should.equal 'a'
end
it 'double-namespaced functions work (block definition mode)'
$.concrete('zap', function($){
$.concrete('pow', function($){
$('#a').concrete({
bar: function(){return 'a';}
})
})
})
$('#a').concrete('zap.pow').bar().should.equal 'a'
end
it 'revert to base namespacing work (block definition mode)'
$.concrete('zap', function($){
$.concrete('.pow', function($){
$('#a').concrete({
bar: function(){return 'a';}
})
})
})
$('#a').concrete('pow').bar().should.equal 'a'
end
it 'internal to namespace, will look up functions in namespace before in base'
var res = []
$('#a').concrete({
foo: function(){res.push(1);},
bar: function(){res.push(2); this.foo();}
})
$('#a').concrete('bar', function($){return{
foo: function(){res.push(3);},
bar: function(){res.push(4); $(this).foo();}
}})
$('#dom_test div').bar();
res.should.eql [2, 1]
$('#dom_test div').concrete('bar').bar();
res.should.eql [2, 1, 4, 3]
end
it 'internal to namespace, will look up functions in namespace before in base, even in closure'
var res = []
$('#a').concrete({
foo: function(){res.push(1);},
bar: function(){res.push(2); this.foo();}
})
$('#a').concrete('bar', function($){return{
foo: function(){res.push(3);},
bar: function(){res.push(4); $('#a').each(function(){ $(this).foo(); })}
}})
$('#dom_test div').bar();
res.should.eql [2, 1]
$('#dom_test div').concrete('bar').bar();
res.should.eql [2, 1, 4, 3]
end
it 'internal to namespace, will look up functions in namespace before in base, even in onmatch'
var res = []
$('#a').concrete({
foo: function(){res.push(1);},
bar: function(){res.push(2); this.foo();}
})
$('#a').concrete('bar', function($){return{
foo: function(){res.push(3);}
}})
$('#a.d').concrete('bar', function($){return{
onmatch: function(){res.push(4); this.foo();}
}})
$('#dom_test div').bar();
res.should.eql [2, 1]
$('#a').addClass('d');
res.should.eql [2, 1, 4, 3]
end
it 'internal to namespace, will look up functions in base when not present in namespace'
var res = []
$('#a').concrete({
foo: function(){res.push(1);}
})
$('#a').concrete('bar', function($){return{
bar: function(){res.push(2); this.foo();}
}})
$('#dom_test div').concrete('bar').bar();
res.should.eql [2, 1]
end
it 'internal to namespace, will not look up functions in base if present in namespace, even when not applicable to selector'
var res = []
$('#a').concrete('bar', function($){return{
foo: function(){this.bar();}
}})
$('#a').concrete({
bar: function(){res.push(1);}
})
$('span').concrete('bar', function($){return{
bar: function(){res.push(2);}
}})
$('#a').concrete('bar').foo()
res.should.eql []
end
it 'internal to namespace, can be directed to base namespace'
var res = []
$('#a').concrete({
foo: function(){res.push(1);},
bar: function(){res.push(2); this.foo();}
})
$('#a').concrete('bar', function($){return{
foo: function(){res.push(3);},
bar: function(){res.push(4); this.foo(); this.concrete('.').foo();}
}})
$('#dom_test div').bar();
res.should.eql [2, 1]
$('#dom_test div').concrete('bar').bar();
res.should.eql [2, 1, 4, 3, 1]
end
it 'internal to namespace, will look up functions in namespace called the same as a regular jQuery base function'
var res = []
$('#a').concrete('bar', function($){return{
load: function(){res.push(1);},
bar: function(){res.push(2); this.load();}
}})
$('#dom_test div').concrete('bar').bar();
res.should.eql [2, 1]
end
it 'internal to namespace, can be directed to regular jQuery base function'
var res = []
$.fn.testy = function(){ res.push(1); }
$('#a').concrete('bar', function($){return{
testy: function(){res.push(3);},
bar: function(){res.push(2); this.concrete('.').testy();}
}})
$('#dom_test div').concrete('bar').bar();
res.should.eql [2, 1]
end
it 'internal to namespace, can be directed to sub namespace'
var res = []
$.concrete('zap', function($){
$('#a').concrete({
foo: function(){ res.push(1); this.concrete('pow').bar(); }
})
$.concrete('pow', function($){
$('#a').concrete({
bar: function(){ res.push(2); }
})
})
})
$('#dom_test div').concrete('zap').foo();
res.should.eql [1, 2]
end
it 'internal to namespace, can be directed to unrelated namespace'
var res = []
$.concrete('zap', function($){
$('#a').concrete({
foo: function(){ res.push(1); this.concrete('.pow').bar(); }
})
$.concrete('pow', function($){
$('#a').concrete({
bar: function(){ res.push(2); }
})
})
})
$.concrete('pow', function($){
$('#a').concrete({
bar: function(){ res.push(3); }
})
})
$('#dom_test div').concrete('zap').foo();
res.should.eql [1, 3]
end
it 'a function passed out of a namespace will remember its namespace'
var res = []
var func = function(func) {
func.call($('#a, #b'));
}
$('#a, #b').concrete('bar', function($){return{
zap: function(){res.push($(this).attr('id'));},
bar: function(){res.push(2); func(this.zap);}
}})
$('#dom_test #a').concrete('bar').bar();
res.should.eql [2, 'b', 'a']
end
it 'using block functions'
var res = []
$('#a').concrete({
foo: function(){res.push(1);}
})
$('#a').concrete('bar', function($){return{
foo: function(){res.push(3);}
}})
$('#dom_test div').foo();
res.should.eql [1]
$('#dom_test div').concrete('bar', function($){
$(this).foo();
})
res.should.eql [1, 3]
end
end
end