2010-11-10 17:41:12 -05:00
|
|
|
/**
|
2010-11-10 20:45:33 -05:00
|
|
|
* Tests class module object creation
|
2010-11-10 17:41:12 -05:00
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Mike Gerwitz
|
|
|
|
*
|
2010-11-10 22:07:03 -05:00
|
|
|
* This file is part of ease.js.
|
2010-11-10 17:41:12 -05:00
|
|
|
*
|
2010-11-10 22:07:03 -05:00
|
|
|
* ease.js is free software: you can redistribute it and/or modify it under the
|
|
|
|
* terms of the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation, either version 3 of the License, or (at your option)
|
|
|
|
* any later version.
|
2010-11-10 17:41:12 -05:00
|
|
|
*
|
2010-11-10 22:07:03 -05:00
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
|
|
|
|
* for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
2010-11-10 17:41:12 -05:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @author Mike Gerwitz
|
2010-11-10 20:45:33 -05:00
|
|
|
* @package test
|
2010-11-10 17:41:12 -05:00
|
|
|
*/
|
|
|
|
|
2010-12-21 23:25:12 -05:00
|
|
|
var common = require( './common' ),
|
|
|
|
assert = require( 'assert' ),
|
|
|
|
Class = common.require( 'class' );
|
2010-11-10 17:41:12 -05:00
|
|
|
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
( Class.extend instanceof Function ),
|
|
|
|
"Class module should provide an 'extend' method"
|
|
|
|
);
|
|
|
|
|
2010-11-10 18:40:36 -05:00
|
|
|
|
2010-11-15 23:22:24 -05:00
|
|
|
var Foo = Class.extend(
|
|
|
|
{
|
|
|
|
value: 'foo',
|
|
|
|
});
|
2010-11-10 19:19:02 -05:00
|
|
|
|
2010-11-10 18:40:36 -05:00
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
( Foo instanceof Object ),
|
|
|
|
"Extend method creates a new object"
|
|
|
|
);
|
|
|
|
|
2010-12-28 20:58:42 -05:00
|
|
|
assert.ok(
|
|
|
|
( Class.isClass( Class.extend() ) ),
|
|
|
|
"Classes are considered by the system to be classes"
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2010-12-29 21:18:03 -05:00
|
|
|
var inst = new Foo();
|
|
|
|
|
|
|
|
|
2010-12-28 20:58:42 -05:00
|
|
|
//
|
|
|
|
// isClass
|
|
|
|
assert.ok(
|
|
|
|
( !( Class.isClass( {} ) ) ),
|
|
|
|
"Only actual classes are considered to be classes"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.ok(
|
2010-12-29 21:18:03 -05:00
|
|
|
!( Class.isClass( inst ) ),
|
2010-12-28 20:58:42 -05:00
|
|
|
"Class instances are not considered to be classes (they are objects)"
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// isClassInstance
|
|
|
|
assert.ok(
|
2010-12-29 21:18:03 -05:00
|
|
|
( Class.isClassInstance( inst ) ),
|
2010-12-28 20:58:42 -05:00
|
|
|
"Class instances are considered to be classes instances"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
( !( Class.isClassInstance( Foo ) ) ),
|
|
|
|
"Classes are not considered to be class instances"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
( !( Class.isClassInstance( {} ) ) ),
|
|
|
|
"Other objects are not considered to be class instances"
|
|
|
|
);
|
|
|
|
|
|
|
|
|
2010-12-28 09:14:54 -05:00
|
|
|
// only perform check if supported by the engine
|
|
|
|
if ( Object.isFrozen )
|
|
|
|
{
|
|
|
|
assert.equal(
|
|
|
|
Object.isFrozen( Foo ),
|
|
|
|
true,
|
|
|
|
"Generated class should be frozen"
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2010-12-29 21:13:21 -05:00
|
|
|
|
|
|
|
//
|
|
|
|
// isInstanceOf
|
|
|
|
assert.ok(
|
2010-12-29 21:18:03 -05:00
|
|
|
Class.isInstanceOf( Foo, inst ),
|
2010-12-29 21:13:21 -05:00
|
|
|
"Class instance is recognized by Class.isInstanceOf()"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.ok(
|
|
|
|
!( Class.isInstanceOf( Foo, Foo ) ),
|
|
|
|
"Class is not an instance of itself when uninstantiated"
|
|
|
|
);
|
|
|
|
|
|
|
|
assert.ok(
|
2010-12-29 21:18:03 -05:00
|
|
|
!( Class.isInstanceOf( inst, Foo ) ),
|
2010-12-29 21:13:21 -05:00
|
|
|
"Class is not an instance of its instance"
|
|
|
|
);
|
|
|
|
|
2010-12-29 21:37:11 -05:00
|
|
|
assert.equal(
|
|
|
|
Class.isInstanceOf,
|
|
|
|
Class.isA,
|
|
|
|
"isA() is an alias for isInstanceOf()"
|
|
|
|
);
|
|
|
|
|
2010-12-29 21:32:16 -05:00
|
|
|
assert.ok(
|
|
|
|
( ( inst.isInstanceOf instanceof Function )
|
|
|
|
&& ( inst.isInstanceOf( Foo ) === true )
|
|
|
|
&& ( inst.isInstanceOf( inst ) === false )
|
|
|
|
),
|
|
|
|
"Class instance contains partially applied isInstanceOf method"
|
|
|
|
);
|
2010-12-29 21:18:03 -05:00
|
|
|
|
2010-12-29 21:37:11 -05:00
|
|
|
assert.equal(
|
|
|
|
inst.isInstanceOf,
|
|
|
|
inst.isA,
|
|
|
|
"Class instance contains isA() alias for isInstanceOf() partially applied function"
|
|
|
|
);
|
|
|
|
|