2010-11-10 22:19:50 -05:00
|
|
|
/**
|
|
|
|
* Tests class parent invocation
|
|
|
|
*
|
|
|
|
* Copyright (C) 2010 Mike Gerwitz
|
|
|
|
*
|
|
|
|
* This file is part of ease.js.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* @author Mike Gerwitz
|
|
|
|
* @package test
|
|
|
|
*/
|
|
|
|
|
2010-12-21 23:25:12 -05:00
|
|
|
var common = require( './common' ),
|
|
|
|
assert = require( 'assert' ),
|
|
|
|
Class = common.require( 'class' );
|
2010-11-10 22:19:50 -05:00
|
|
|
|
|
|
|
var Foo = Class.extend(
|
|
|
|
{
|
|
|
|
hitMethod: false,
|
|
|
|
hitMethod2: false,
|
2010-11-10 22:49:27 -05:00
|
|
|
method2Arg: null,
|
2010-11-10 22:19:50 -05:00
|
|
|
|
|
|
|
myMethod: function()
|
|
|
|
{
|
|
|
|
this.hitMethod = true;
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2010-11-10 22:49:27 -05:00
|
|
|
myMethod2: function( arg )
|
2010-11-10 22:19:50 -05:00
|
|
|
{
|
|
|
|
this.hitMethod2 = true;
|
2010-11-10 22:49:27 -05:00
|
|
|
this.method2Arg = arg;
|
|
|
|
|
2010-11-10 22:19:50 -05:00
|
|
|
return this;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
var SubFoo = Foo.extend(
|
|
|
|
{
|
|
|
|
myMethod: function()
|
|
|
|
{
|
|
|
|
return this;
|
|
|
|
},
|
|
|
|
|
2010-11-10 22:49:27 -05:00
|
|
|
myMethod2: function( arg )
|
2010-11-10 22:19:50 -05:00
|
|
|
{
|
2010-11-10 22:49:27 -05:00
|
|
|
return this.__super( arg );
|
2010-11-10 22:19:50 -05:00
|
|
|
},
|
2010-11-10 22:54:24 -05:00
|
|
|
|
|
|
|
callParentAlt: function()
|
|
|
|
{
|
|
|
|
return this.parent.myMethod2.apply( this, arguments );
|
|
|
|
},
|
2010-11-10 22:19:50 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
var foo = new Foo(),
|
|
|
|
sub_foo = new SubFoo();
|
|
|
|
|
|
|
|
// make sure we're working properly before we run the important assertions
|
|
|
|
foo.myMethod().myMethod2();
|
|
|
|
assert.equal(
|
|
|
|
foo.hitMethod,
|
|
|
|
true,
|
|
|
|
"Sanity check"
|
|
|
|
);
|
|
|
|
assert.equal(
|
|
|
|
foo.hitMethod2,
|
|
|
|
true,
|
|
|
|
"Sanity check"
|
|
|
|
);
|
|
|
|
|
2010-11-10 22:49:27 -05:00
|
|
|
var arg = 'foobar';
|
|
|
|
sub_foo.myMethod().myMethod2( arg );
|
|
|
|
|
2010-11-10 22:19:50 -05:00
|
|
|
// myMethod overrides without calling parent
|
|
|
|
assert.equal(
|
|
|
|
sub_foo.hitMethod,
|
|
|
|
false,
|
|
|
|
"Subtype should be able to override parent properties"
|
|
|
|
);
|
|
|
|
|
2010-11-10 22:49:27 -05:00
|
|
|
// myMethod2 overrides parent then calls super method
|
2010-11-10 22:19:50 -05:00
|
|
|
assert.equal(
|
|
|
|
sub_foo.hitMethod2,
|
|
|
|
true,
|
|
|
|
"Subtype should be able to call parent method"
|
|
|
|
);
|
|
|
|
|
2010-11-10 22:49:27 -05:00
|
|
|
assert.equal(
|
|
|
|
sub_foo.method2Arg,
|
|
|
|
arg,
|
|
|
|
"Arguments should be passed to super method via _super argument list"
|
|
|
|
);
|
|
|
|
|
2010-11-10 22:54:24 -05:00
|
|
|
assert.deepEqual(
|
|
|
|
SubFoo.prototype.parent,
|
|
|
|
Foo.prototype,
|
|
|
|
"Parent property should represent parent prototype"
|
|
|
|
);
|
|
|
|
|
|
|
|
sub_foo.callParentAlt( arg = 'moo' );
|
|
|
|
assert.equal(
|
|
|
|
sub_foo.method2Arg,
|
|
|
|
arg,
|
|
|
|
"The parent property may also be used to invoke parent methods"
|
|
|
|
);
|
|
|
|
|
2010-11-10 23:42:26 -05:00
|
|
|
assert.throws( function()
|
|
|
|
{
|
|
|
|
Foo.extend(
|
|
|
|
{
|
|
|
|
// overriding method with scalar; shouldn't be allowed
|
|
|
|
myMethod: 'scalar',
|
|
|
|
});
|
|
|
|
}, TypeError, "Methods must be overridden with a Function" );
|
|
|
|
|