gecko/intl/locale/tests/unit/test_bug374040.js

41 lines
1.4 KiB
JavaScript
Raw Normal View History

function test_full() {
var date = new Date();
var scriptableDateServ =
Components.classes["@mozilla.org/intl/scriptabledateformat;1"].createInstance(Components.interfaces.nsIScriptableDateFormat);
var dateStrXpcom = scriptableDateServ.FormatDateTime("",
scriptableDateServ.dateFormatLong, scriptableDateServ.timeFormatSeconds,
date.getFullYear(), date.getMonth()+1, date.getDate(), date.getHours(),
date.getMinutes(), date.getSeconds());
var dateStrJs = date.toLocaleString();
return (dateStrXpcom == dateStrJs);
}
function test_kTimeFormatSeconds() {
var date = new Date();
var scriptableDateServ =
Components.classes["@mozilla.org/intl/scriptabledateformat;1"].createInstance(Components.interfaces.nsIScriptableDateFormat);
var dateStrXpcom = scriptableDateServ.FormatDateTime("",
scriptableDateServ.dateFormatLong, scriptableDateServ.timeFormatNone,
date.getFullYear(), date.getMonth()+1, date.getDate(), date.getHours(),
date.getMinutes(), date.getSeconds());
var dateStrJs = date.toLocaleDateString()
return (dateStrXpcom == dateStrJs);
}
function run_test()
{
var os = Components.classes["@mozilla.org/xre/app-info;1"].getService(Components.interfaces.nsIXULRuntime).OS;
if (os == "Linux" || os == "SunOS" || os == "IRIX" || os == "AIX") {
do_check_true(test_full());
do_check_true(test_kTimeFormatSeconds());
}
}