2007-01-18 22:24:27 +00:00
|
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
|
|
<head>
|
|
|
|
<title>Prototype Unit test file</title>
|
|
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
|
|
<script src="../../dist/prototype.js" type="text/javascript"></script>
|
|
|
|
<script src="../lib/unittest.js" type="text/javascript"></script>
|
|
|
|
<link rel="stylesheet" href="../test.css" type="text/css" />
|
|
|
|
<style type="text/css" media="screen">
|
|
|
|
/* <![CDATA[ */
|
|
|
|
#testcss1 { font-size:11px; color: #f00; }
|
|
|
|
#testcss2 { font-size:12px; color: #0f0; display: none; }
|
|
|
|
/* ]]> */
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1>Prototype Unit test file</h1>
|
|
|
|
<p>
|
|
|
|
Test of utility functions in base.js
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<!-- Log output -->
|
|
|
|
<div id="testlog"> </div>
|
2007-03-09 03:23:24 +00:00
|
|
|
<div id="test"></div>
|
2007-01-18 22:24:27 +00:00
|
|
|
<!-- Tests follow -->
|
|
|
|
<script type="text/javascript" language="javascript" charset="utf-8">
|
|
|
|
// <![CDATA[
|
2007-03-09 03:23:24 +00:00
|
|
|
var Person = function(name){
|
|
|
|
this.name = name;
|
|
|
|
};
|
|
|
|
|
|
|
|
Person.prototype.toJSON = function() {
|
|
|
|
return '-' + this.name;
|
|
|
|
};
|
2007-01-18 22:24:27 +00:00
|
|
|
|
|
|
|
var peEventCount = 0;
|
|
|
|
// peEventFired will stop the PeriodicalExecuter after 3 callbacks
|
|
|
|
function peEventFired(pe) {
|
|
|
|
if (++peEventCount>2) {
|
|
|
|
pe.stop();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var arg1 = 1;
|
|
|
|
var arg2 = 2;
|
|
|
|
var arg3 = 3;
|
|
|
|
function TestObj(){}
|
|
|
|
TestObj.prototype.assertingEventHandler =
|
|
|
|
function( event, assertEvent, assert1, assert2, assert3, a1, a2, a3 ){
|
|
|
|
assertEvent(event);
|
|
|
|
assert1(a1);
|
|
|
|
assert2(a2);
|
|
|
|
assert3(a3);
|
|
|
|
}
|
|
|
|
|
|
|
|
var globalBindTest = null;
|
|
|
|
|
|
|
|
new Test.Unit.Runner({
|
|
|
|
|
|
|
|
testFunctionBind: function() { with(this) {
|
|
|
|
function methodWithoutArguments(){
|
|
|
|
globalBindTest = this.hi;
|
|
|
|
}
|
|
|
|
function methodWithArguments(){
|
|
|
|
globalBindTest = this.hi + ',' + $A(arguments).join(',');
|
|
|
|
}
|
|
|
|
function methodWithBindArguments(){
|
|
|
|
globalBindTest = this.hi + ',' + $A(arguments).join(',');
|
|
|
|
}
|
|
|
|
function methodWithBindArgumentsAndArguments(){
|
|
|
|
globalBindTest = this.hi + ',' + $A(arguments).join(',');
|
|
|
|
}
|
|
|
|
|
|
|
|
methodWithoutArguments.bind({hi:'without'})();
|
|
|
|
assertEqual('without', globalBindTest);
|
|
|
|
|
|
|
|
methodWithArguments.bind({hi:'with'})('arg1','arg2');
|
|
|
|
assertEqual('with,arg1,arg2', globalBindTest);
|
|
|
|
|
|
|
|
methodWithBindArguments.bind({hi:'withBindArgs'},'arg1','arg2')();
|
|
|
|
assertEqual('withBindArgs,arg1,arg2', globalBindTest);
|
|
|
|
|
|
|
|
methodWithBindArgumentsAndArguments.bind({hi:'withBindArgsAndArgs'},'arg1','arg2')('arg3','arg4');
|
|
|
|
assertEqual('withBindArgsAndArgs,arg1,arg2,arg3,arg4', globalBindTest);
|
|
|
|
}},
|
2007-04-24 02:50:52 +00:00
|
|
|
|
2007-04-29 05:37:07 +00:00
|
|
|
testFunctionCurry: function() { with(this) {
|
|
|
|
var split = function(delimiter, string) { return string.split(delimiter); };
|
|
|
|
var splitOnColons = split.curry(":");
|
|
|
|
assertEnumEqual(split(":", "0:1:2:3:4:5"), splitOnColons("0:1:2:3:4:5"));
|
|
|
|
}},
|
|
|
|
|
|
|
|
testFunctionDelay: function() { with(this) {
|
|
|
|
window.delayed = undefined;
|
|
|
|
var delayedFunction = function() { window.delayed = true; };
|
|
|
|
var delayedFunctionWithArgs = function() { window.delayedWithArgs = $A(arguments).join(' '); };
|
|
|
|
delayedFunction.delay(0.8);
|
|
|
|
delayedFunctionWithArgs.delay(0.8, 'hello', 'world');
|
|
|
|
assertUndefined(window.delayed);
|
|
|
|
wait(1000, function() {
|
|
|
|
assert(window.delayed);
|
|
|
|
assertEqual('hello world', window.delayedWithArgs);
|
|
|
|
});
|
|
|
|
}},
|
|
|
|
|
|
|
|
testFunctionWrap: function() { with(this) {
|
|
|
|
function sayHello(){
|
|
|
|
return 'hello world';
|
|
|
|
};
|
|
|
|
|
|
|
|
assertEqual('HELLO WORLD', sayHello.wrap(function(proceed) {
|
|
|
|
return proceed().toUpperCase();
|
|
|
|
})());
|
|
|
|
|
|
|
|
var temp = String.prototype.capitalize;
|
|
|
|
String.prototype.capitalize = String.prototype.capitalize.wrap(function(proceed, eachWord) {
|
|
|
|
if(eachWord && this.include(' ')) return this.split(' ').map(function(str){
|
|
|
|
return str.capitalize();
|
|
|
|
}).join(' ');
|
|
|
|
return proceed();
|
|
|
|
});
|
|
|
|
assertEqual('Hello world', 'hello world'.capitalize());
|
|
|
|
assertEqual('Hello World', 'hello world'.capitalize(true));
|
|
|
|
assertEqual('Hello', 'hello'.capitalize());
|
|
|
|
String.prototype.capitalize = temp;
|
|
|
|
}},
|
|
|
|
|
|
|
|
testFunctionDefer: function() { with(this) {
|
|
|
|
window.deferred = undefined;
|
|
|
|
var deferredFunction = function() { window.deferred = true; };
|
|
|
|
deferredFunction.defer();
|
|
|
|
assertUndefined(window.deferred);
|
|
|
|
wait(50, function() {
|
|
|
|
assert(window.deferred);
|
|
|
|
});
|
|
|
|
}},
|
2007-05-12 04:32:30 +00:00
|
|
|
|
|
|
|
testFunctionMethodize: function() { with(this) {
|
|
|
|
var Foo = { bar: function(baz) { return baz } };
|
|
|
|
var baz = { quux: Foo.bar.methodize() };
|
|
|
|
|
|
|
|
assertEqual(Foo.bar.methodize(), baz.quux);
|
|
|
|
assertEqual(baz, Foo.bar(baz));
|
|
|
|
assertEqual(baz, baz.quux());
|
|
|
|
}},
|
2007-04-29 05:37:07 +00:00
|
|
|
|
2007-01-18 22:24:27 +00:00
|
|
|
testObjectInspect: function() { with(this) {
|
|
|
|
assertEqual('undefined', Object.inspect());
|
|
|
|
assertEqual('undefined', Object.inspect(undefined));
|
|
|
|
assertEqual('null', Object.inspect(null));
|
|
|
|
assertEqual("'foo\\\\b\\\'ar'", Object.inspect('foo\\b\'ar'));
|
|
|
|
assertEqual('[]', Object.inspect([]));
|
|
|
|
}},
|
|
|
|
|
2007-03-09 03:23:24 +00:00
|
|
|
testObjectToJSON: function() { with(this) {
|
|
|
|
assertUndefined(Object.toJSON(undefined));
|
|
|
|
assertUndefined(Object.toJSON(Prototype.K));
|
|
|
|
assertEqual('\"\"', Object.toJSON(''));
|
|
|
|
assertEqual('[]', Object.toJSON([]));
|
|
|
|
assertEqual('[\"a\"]', Object.toJSON(['a']));
|
2007-04-24 02:50:52 +00:00
|
|
|
assertEqual('[\"a\", 1]', Object.toJSON(['a', 1]));
|
|
|
|
assertEqual('[\"a\", {\"b\": null}]', Object.toJSON(['a', {'b': null}]));
|
|
|
|
assertEqual('{\"a\": \"hello!\"}', Object.toJSON({a: 'hello!'}));
|
2007-03-09 03:23:24 +00:00
|
|
|
assertEqual('{}', Object.toJSON({}));
|
|
|
|
assertEqual('{}', Object.toJSON({a: undefined, b: undefined, c: Prototype.K}));
|
2007-04-24 02:50:52 +00:00
|
|
|
assertEqual('{\"b\": [false, true], \"c\": {\"a\": \"hello!\"}}',
|
2007-03-09 03:23:24 +00:00
|
|
|
Object.toJSON({'b': [undefined, false, true, undefined], c: {a: 'hello!'}}));
|
2007-04-24 02:50:52 +00:00
|
|
|
assertEqual('{\"b\": [false, true], \"c\": {\"a\": \"hello!\"}}',
|
2007-03-09 03:23:24 +00:00
|
|
|
Object.toJSON($H({'b': [undefined, false, true, undefined], c: {a: 'hello!'}})));
|
|
|
|
assertEqual('true', Object.toJSON(true));
|
|
|
|
assertEqual('false', Object.toJSON(false));
|
|
|
|
assertEqual('null', Object.toJSON(null));
|
|
|
|
var sam = new Person('sam');
|
|
|
|
assertEqual('-sam', Object.toJSON(sam));
|
|
|
|
assertEqual('-sam', sam.toJSON());
|
|
|
|
var element = $('test');
|
|
|
|
assertUndefined(Object.toJSON(element));
|
|
|
|
element.toJSON = function(){return 'I\'m a div with id test'};
|
|
|
|
assertEqual('I\'m a div with id test', Object.toJSON(element));
|
|
|
|
}},
|
|
|
|
|
2007-01-18 22:24:27 +00:00
|
|
|
// sanity check
|
|
|
|
testDoesntExtendObjectPrototype: function() {with(this) {
|
|
|
|
// for-in is supported with objects
|
|
|
|
var iterations = 0, obj = { a: 1, b: 2, c: 3 };
|
|
|
|
for(property in obj) iterations++;
|
|
|
|
assertEqual(3, iterations);
|
|
|
|
|
|
|
|
// for-in is not supported with arrays
|
|
|
|
iterations = 0;
|
|
|
|
var arr = [1,2,3];
|
|
|
|
for(property in arr) iterations++;
|
|
|
|
assert(iterations > 3);
|
|
|
|
}},
|
|
|
|
|
|
|
|
testPeriodicalExecuterStop: function() {with(this) {
|
|
|
|
new PeriodicalExecuter(peEventFired, 0.1);
|
|
|
|
|
|
|
|
wait(1000, function() {
|
|
|
|
assertEqual(3, peEventCount);
|
|
|
|
});
|
|
|
|
}},
|
|
|
|
|
|
|
|
testBindAsEventListener: function() {
|
|
|
|
for( var i = 0; i < 10; ++i ){
|
|
|
|
var div = document.createElement('div');
|
|
|
|
div.setAttribute('id','test-'+i);
|
|
|
|
document.body.appendChild(div);
|
|
|
|
var tobj = new TestObj();
|
2007-04-24 02:50:52 +00:00
|
|
|
var eventTest = { test: true };
|
2007-01-18 22:24:27 +00:00
|
|
|
var call = tobj.assertingEventHandler.bindAsEventListener(tobj,
|
2007-04-24 02:50:52 +00:00
|
|
|
this.assertEqual.bind(this, eventTest),
|
|
|
|
this.assertEqual.bind(this, arg1),
|
|
|
|
this.assertEqual.bind(this, arg2),
|
|
|
|
this.assertEqual.bind(this, arg3), arg1, arg2, arg3 );
|
2007-01-18 22:24:27 +00:00
|
|
|
call(eventTest);
|
|
|
|
}
|
2007-02-19 22:23:10 +00:00
|
|
|
},
|
|
|
|
|
2007-06-06 12:08:15 +00:00
|
|
|
testNumberRound: function() {with(this) {
|
|
|
|
assertEqual(1, (0.9).round());
|
|
|
|
assertEqual(-2, (-1.9).round());
|
|
|
|
|
|
|
|
assertEqual(Math.round(Math.PI), Math.PI.round());
|
|
|
|
}},
|
|
|
|
|
2007-03-09 03:23:24 +00:00
|
|
|
testNumberToColorPart: function() {with(this) {
|
|
|
|
assertEqual('00', (0).toColorPart());
|
|
|
|
assertEqual('0a', (10).toColorPart());
|
|
|
|
assertEqual('ff', (255).toColorPart());
|
|
|
|
}},
|
|
|
|
|
|
|
|
testNumberToPaddedString: function() {with(this) {
|
|
|
|
assertEqual('00', (0).toPaddedString(2, 16));
|
|
|
|
assertEqual('0a', (10).toPaddedString(2, 16));
|
|
|
|
assertEqual('ff', (255).toPaddedString(2, 16));
|
|
|
|
assertEqual('000', (0).toPaddedString(3));
|
|
|
|
assertEqual('010', (10).toPaddedString(3));
|
|
|
|
assertEqual('100', (100).toPaddedString(3));
|
|
|
|
assertEqual('1000', (1000).toPaddedString(3));
|
|
|
|
}},
|
|
|
|
|
|
|
|
testNumberToJSON: function() {with(this) {
|
|
|
|
assertEqual('null', Number.NaN.toJSON());
|
|
|
|
assertEqual('0', (0).toJSON());
|
|
|
|
assertEqual('-293', (-293).toJSON());
|
|
|
|
}},
|
|
|
|
|
|
|
|
testDateToJSON: function() {with(this) {
|
|
|
|
assertEqual('\"1969-12-31T19:00:00\"', new Date(1969, 11, 31, 19).toJSON());
|
|
|
|
}},
|
|
|
|
|
2007-02-19 22:23:10 +00:00
|
|
|
testBrowserDetection: function() {with(this) {
|
|
|
|
var results = $H(Prototype.Browser).map(function(engine){
|
|
|
|
return engine;
|
|
|
|
}).partition(function(engine){
|
|
|
|
return engine[1] === true
|
|
|
|
});
|
|
|
|
var trues = results[0], falses = results[1];
|
|
|
|
|
|
|
|
info('User agent string is: ' + navigator.userAgent);
|
|
|
|
|
|
|
|
assert(trues.size() == 0 || trues.size() == 1,
|
|
|
|
'There should be only one or no browser detected.');
|
|
|
|
|
|
|
|
// we should have definite trues or falses here
|
|
|
|
trues.each(function(result){
|
|
|
|
assert(result[1] === true);
|
|
|
|
});
|
|
|
|
falses.each(function(result){
|
|
|
|
assert(result[1] === false);
|
|
|
|
});
|
|
|
|
|
|
|
|
if(navigator.userAgent.indexOf('AppleWebKit/') > -1) {
|
|
|
|
info('Running on WebKit');
|
|
|
|
assert(Prototype.Browser.WebKit);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!!window.opera) {
|
|
|
|
info('Running on Opera');
|
|
|
|
assert(Prototype.Browser.Opera);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(!!(window.attachEvent && !window.opera)) {
|
|
|
|
info('Running on IE');
|
|
|
|
assert(Prototype.Browser.IE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(navigator.userAgent.indexOf('Gecko') > -1 && navigator.userAgent.indexOf('KHTML') == -1) {
|
|
|
|
info('Running on Gecko');
|
|
|
|
assert(Prototype.Browser.Gecko);
|
|
|
|
}
|
|
|
|
}}
|
2007-01-18 22:24:27 +00:00
|
|
|
|
|
|
|
}, 'testlog');
|
|
|
|
|
|
|
|
// ]]>
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|