tvheadend/vendor/ext-3.4.1/test/unit/Ext/XTemplate.js
Adam Sutton bafcfff42d webui: restructure webui/extjs source files
I want to keep the 3rd-party packages away from the main source
where possible.
2013-06-03 17:11:01 +01:00

91 lines
3 KiB
JavaScript

/*
This file is part of Ext JS 3.4
Copyright (c) 2011-2013 Sencha Inc
Contact: http://www.sencha.com/contact
GNU General Public License Usage
This file may be used under the terms of the GNU General Public License version 3.0 as
published by the Free Software Foundation and appearing in the file LICENSE included in the
packaging of this file.
Please review the following information to ensure the GNU General Public License version 3.0
requirements will be met: http://www.gnu.org/copyleft/gpl.html.
If you are unsure which license is appropriate for your use, please contact the sales department
at http://www.sencha.com/contact.
Build date: 2013-04-03 15:07:25
*/
Ext.test.session.addTest( 'Ext', new Y.Test.Case({
name: 'XTemplate',
planned: 3,
// 3
test_apply: function() {
var data = {
hello: 'Hello',
world: 'World',
items1: [
'test1',
'test2',
'test3'
],
items2: [
{ name: 'test1' },
{ name: 'test2' },
{ name: 'test3' }
],
kids: [{
name: 'Sara Grace',
gender: 'f',
age:3
},{
name: 'Zachary',
gender: 'm',
age:2
},{
name: 'John James',
gender: 'm',
age:.5
}]
};
var tpl1 = new Ext.XTemplate( '{hello} {world}. <tpl for="items1">{.}{[ xindex === xcount ? "" : ":" ]}</tpl>', { compiled: true });
Y.Assert.areEqual( 'Hello World. test1:test2:test3', tpl1.apply( data ), 'Test apply with an object with an array' );
var tpl2 = new Ext.XTemplate( '<tpl for="items2">{name}{[ xindex === xcount ? "" : ":" ]}</tpl>', { compiled: true });
Y.Assert.areEqual( 'test1:test2:test3', tpl2.apply( data ), 'Test apply with an object with an array of hashes' );
var tpl3 = new Ext.XTemplate(
'<ul><tpl for="kids">',
'<tpl if="this.isGirl(gender)">',
'<li>Girl: {name} - {age}</li>',
'</tpl>',
'<tpl if="!this.isGirl(gender)">',
'<tpl if="age &lt; 1">',
'<li>Baby Boy: {name} - {age*12} months</li>',
'</tpl>',
'<tpl if="age &gt;= 1">',
'<li>Boy: {name} - {age}</li>',
'</tpl>',
'</tpl>',
'</tpl></ul>',
{
compiled: true,
disableFormats: true,
isGirl: function(gender){
return gender == 'f';
}
}
);
Y.Assert.areEqual( '<ul><li>Girl: Sara Grace - 3</li><li>Boy: Zachary - 2</li><li>Baby Boy: John James - 6 months</li></ul>',
tpl3.apply( data ), 'Test apply with template member functions, basic comparison operators, and math' );
}
// apply is an alias for applyTemplate
}));