Tests about the Greek script failed because new languages were added to the language database. Also, it had to be deepEqual and not strictEqual. I fixed the tests. Change-Id: I68cf0593354d71bd35c53bac5afe7cabd25182a1
94 lines
3.7 KiB
JavaScript
94 lines
3.7 KiB
JavaScript
/**
|
|
* QUnit tests for ULS
|
|
*
|
|
* @file
|
|
* @author Santhosh Thottingal
|
|
* @author Amir E. Aharoni
|
|
* @copyright Copyright © 2012 Santhosh Thottingal, Amir E. Aharoni
|
|
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
|
|
*/
|
|
( function () {
|
|
"use strict";
|
|
|
|
module( "ext.uls", QUnit.newMwEnvironment() );
|
|
|
|
/*
|
|
* Runs over all script codes mentioned in langdb and checks whether
|
|
* they belong to the 'Other' group.
|
|
*/
|
|
var orphanScript = function () {
|
|
for ( var language in $.uls.data.languages ) {
|
|
var script = $.uls.data.script( language );
|
|
if ( $.uls.data.groupOfScript( script ) === 'Other' ) {
|
|
return script;
|
|
}
|
|
}
|
|
|
|
return '';
|
|
};
|
|
|
|
test( "-- Initial check", function() {
|
|
expect( 1 );
|
|
ok( $.fn.uls, "$.fn.uls is defined" );
|
|
} );
|
|
|
|
test( "-- $.uls.data testing", function() {
|
|
expect( 17 );
|
|
|
|
// This test assumes that we don't want any scripts to be in the 'Other'
|
|
// group. Actually, this may become wrong some day.
|
|
strictEqual( orphanScript(), '', 'No orphan scripts found.' );
|
|
strictEqual(
|
|
$.uls.data.groupOfScript( 'Beng' ),
|
|
'SouthAsian',
|
|
'Bengali script belongs to the SouthAsian group.'
|
|
);
|
|
strictEqual(
|
|
$.uls.data.scriptGroupOfLanguage( 'iu' ),
|
|
'NativeAmerican',
|
|
'The script of the Inupiaq language belongs to the NativeAmerican group.'
|
|
);
|
|
|
|
strictEqual( $.uls.data.script( 'ii' ), 'Yiii', 'Correct script of the Yi language was selected' );
|
|
deepEqual( $.uls.data.regions( 'lzz' ), [ 'EU', 'ME' ], 'Correct regions of the Laz language were selected' );
|
|
|
|
var allLanguagesByRegionAndScript = $.uls.data.allLanguagesByRegionAndScript();
|
|
deepEqual( allLanguagesByRegionAndScript['3']['AS']['SouthEastAsian']['Bugi'], ['bug'], 'All languages in the Buginese script in Asia were selected' );
|
|
|
|
deepEqual( $.uls.data.languagesInRegion( 'AU' ), ["en-gb", "en", "hif-latn", "hif", "mi", "na"], "languages of region AU are selected correctly" );
|
|
deepEqual( $.uls.data.languagesInRegions( ['NA', 'WW'] ),
|
|
[
|
|
"akz", "ase", "avk", "cho", "chr", "chy", "cr", "en-ca", "en", "eo", "es-formal", "es", "esu",
|
|
"haw", "ht", "ia", "ie", "ik", "ike-cans", "ike-latn", "ike", "io",
|
|
"iu", "jam", "jbo", "kl", "lfn", "mic", "mus", "nah", "nov", "nv",
|
|
"pdc", "pdt", "sei", "simple", "srn", "tokipona",
|
|
"vo", "yi", "yua"
|
|
],
|
|
"languages of regions NA and WW are selected correctly"
|
|
);
|
|
|
|
deepEqual( $.uls.data.languagesInScript( 'Knda' ), ["kn", "tcy"], "languages in script Knda are selected correctly" );
|
|
deepEqual( $.uls.data.languagesInScripts( ['Geor', 'Armn'] ),
|
|
["hy", "ka", "xmf"],
|
|
"languages in scripts Geor and Armn are selected correctly"
|
|
);
|
|
|
|
deepEqual( $.uls.data.regionsInGroup( 1 ), ["NA", "LA", "SA"], "regions in group 1 are selected correctly" );
|
|
deepEqual( $.uls.data.regionsInGroup( 4 ), ["WW"], "regions in group 4 are selected correctly" );
|
|
|
|
var languagesByScriptInNA = $.uls.data.languagesByScriptInRegion( 'NA' );
|
|
deepEqual( languagesByScriptInNA['Cans'], ["cr", "ike-cans", "iu"], "correct languages in Cans in NA selected" );
|
|
|
|
strictEqual( $.uls.data.autonym( 'pa' ), 'ਪੰਜਾਬੀ', 'Correct autonym of the Punjabi language was selected' );
|
|
|
|
var languagesByScriptGroupInEMEA = $.uls.data.languagesByScriptGroupInRegions( $.uls.data.regionsInGroup( 2 ) );
|
|
deepEqual( languagesByScriptGroupInEMEA['WestCaucasian'], ['hy', 'ka', 'xmf'], 'Correct languages in WestCaucasian script group selected' );
|
|
|
|
var allLanguagesByScriptGroup = $.uls.data.allLanguagesByScriptGroup();
|
|
deepEqual( allLanguagesByScriptGroup['Greek'], ['el', 'grc', 'pnt', 'ruq-grek', 'tsd'], 'All languages in the Greek script found' );
|
|
|
|
deepEqual( $.uls.data.allRegions(), ['NA', 'LA', 'SA', 'ME', 'AF', 'EU', 'AS', 'AU', 'PA', 'WW'], 'All regions found' );
|
|
} );
|
|
|
|
}() );
|