Refactored test logic that will be shared between multiple members into inc-member_builder-common.js to reduce code duplication
parent
94d6fb1655
commit
906e468cdf
|
@ -0,0 +1,162 @@
|
||||||
|
/**
|
||||||
|
* Common functions for member_builder tests
|
||||||
|
*
|
||||||
|
* 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
|
||||||
|
*/
|
||||||
|
|
||||||
|
var common = require( './common' ),
|
||||||
|
assert = require( 'assert' )
|
||||||
|
;
|
||||||
|
|
||||||
|
exports.members = {};
|
||||||
|
exports.meta = {};
|
||||||
|
exports.name = 'foo';
|
||||||
|
exports.value = { bar: 'baz' };
|
||||||
|
|
||||||
|
exports.buildMember = null;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Partially applied function to quickly build properties using common test data
|
||||||
|
*/
|
||||||
|
exports.buildMemberQuick = function( keywords )
|
||||||
|
{
|
||||||
|
keywords = keywords || {};
|
||||||
|
|
||||||
|
// clear out the members for a fresh start
|
||||||
|
exports.members = { 'public': {}, 'protected': {}, 'private': {} };
|
||||||
|
|
||||||
|
return exports.buildMember(
|
||||||
|
exports.members,
|
||||||
|
exports.meta,
|
||||||
|
exports.name,
|
||||||
|
exports.value,
|
||||||
|
keywords
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Asserts that the given property exists only in the prototype for the
|
||||||
|
* requested visibility
|
||||||
|
*/
|
||||||
|
exports.assertOnlyVisibility = function( vis, name, value, message )
|
||||||
|
{
|
||||||
|
var check = [ 'public', 'protected', 'private' ],
|
||||||
|
i = check.length,
|
||||||
|
visi = '',
|
||||||
|
cmp;
|
||||||
|
|
||||||
|
// forEach not used for pre-ES5 browser support
|
||||||
|
while ( i-- )
|
||||||
|
{
|
||||||
|
visi = check[ i ];
|
||||||
|
cmp = ( visi === vis ) ? value : undefined;
|
||||||
|
|
||||||
|
assert.deepEqual(
|
||||||
|
exports.members[ visi ][ name ],
|
||||||
|
cmp,
|
||||||
|
message
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
exports.assertCommon = function()
|
||||||
|
{
|
||||||
|
( function testRecognizesPublicProperty()
|
||||||
|
{
|
||||||
|
exports.buildMemberQuick( { 'public': true } );
|
||||||
|
|
||||||
|
exports.assertOnlyVisibility( 'public',
|
||||||
|
exports.name,
|
||||||
|
exports.value,
|
||||||
|
"Public properties are copied only to the public member prototype"
|
||||||
|
);
|
||||||
|
} )();
|
||||||
|
|
||||||
|
|
||||||
|
( function testRecognizesProtectedProperty()
|
||||||
|
{
|
||||||
|
exports.buildMemberQuick( { 'protected': true } );
|
||||||
|
|
||||||
|
exports.assertOnlyVisibility( 'protected',
|
||||||
|
exports.name,
|
||||||
|
exports.value,
|
||||||
|
"Protected properties are copied only to the protected member " +
|
||||||
|
" prototype"
|
||||||
|
);
|
||||||
|
} )();
|
||||||
|
|
||||||
|
|
||||||
|
( function testRecognizesPrivateProperty()
|
||||||
|
{
|
||||||
|
exports.buildMemberQuick( { 'private': true } );
|
||||||
|
|
||||||
|
exports.assertOnlyVisibility( 'private',
|
||||||
|
exports.name,
|
||||||
|
exports.value,
|
||||||
|
"Private properties are copied only to the private member prototype"
|
||||||
|
);
|
||||||
|
} )();
|
||||||
|
|
||||||
|
|
||||||
|
( function testCopiedIntoPublicPrototypeByDefault()
|
||||||
|
{
|
||||||
|
exports.buildMemberQuick();
|
||||||
|
|
||||||
|
exports.assertOnlyVisibility( 'public',
|
||||||
|
exports.name,
|
||||||
|
exports.value,
|
||||||
|
"Properties are copied only to the public member prototype by " +
|
||||||
|
"default"
|
||||||
|
);
|
||||||
|
} )();
|
||||||
|
|
||||||
|
|
||||||
|
( function testThrowsTypeErrorIfMultipleVisibilityKeywordsAreGiven()
|
||||||
|
{
|
||||||
|
assert.throws( function()
|
||||||
|
{
|
||||||
|
exports.buildMemberQuick( {
|
||||||
|
'public': true,
|
||||||
|
'protected': true,
|
||||||
|
} );
|
||||||
|
}, TypeError, "Cannot specify multiple visibility keywords (0)" );
|
||||||
|
|
||||||
|
assert.throws( function()
|
||||||
|
{
|
||||||
|
exports.buildMemberQuick( {
|
||||||
|
'public': true,
|
||||||
|
'private': true,
|
||||||
|
} );
|
||||||
|
}, TypeError, "Cannot specify multiple visibility keywords (1)" );
|
||||||
|
|
||||||
|
assert.throws( function()
|
||||||
|
{
|
||||||
|
exports.buildMemberQuick( {
|
||||||
|
'protected': true,
|
||||||
|
'private': true,
|
||||||
|
} );
|
||||||
|
}, TypeError, "Cannot specify multiple visibility keywords (2)" );
|
||||||
|
} )();
|
||||||
|
};
|
||||||
|
|
|
@ -23,131 +23,12 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var common = require( './common' ),
|
var common = require( './common' ),
|
||||||
assert = require( 'assert' ),
|
mb_common = require( './inc-member_builder-common' )
|
||||||
buildProp = common.require( 'member_builder' ).buildProp
|
|
||||||
|
|
||||||
// member visibility types are quoted because they are reserved keywords
|
|
||||||
members = {},
|
|
||||||
meta = {},
|
|
||||||
|
|
||||||
// stub values
|
|
||||||
name = 'foo',
|
|
||||||
value = { bar: 'baz' }
|
|
||||||
;
|
;
|
||||||
|
|
||||||
|
mb_common.value = { bar: 'baz' };
|
||||||
|
mb_common.buildMember = common.require( 'member_builder' ).buildProp;
|
||||||
|
|
||||||
/**
|
// do assertions common to all member builders
|
||||||
* Partially applied function to quickly build properties using common test data
|
mb_common.assertCommon();
|
||||||
*/
|
|
||||||
function buildPropQuick( keywords )
|
|
||||||
{
|
|
||||||
keywords = keywords || {};
|
|
||||||
|
|
||||||
// clear out the members for a fresh start
|
|
||||||
members = { 'public': {}, 'protected': {}, 'private': {} };
|
|
||||||
|
|
||||||
return buildProp( members, meta, name, value, keywords );
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Asserts that the given property exists only in the prototype for the
|
|
||||||
* requested visibility
|
|
||||||
*/
|
|
||||||
function assertOnlyVisibility( vis, name, value, message )
|
|
||||||
{
|
|
||||||
var check = [ 'public', 'protected', 'private' ],
|
|
||||||
i = check.length,
|
|
||||||
visi = '',
|
|
||||||
cmp;
|
|
||||||
|
|
||||||
// forEach not used for pre-ES5 browser support
|
|
||||||
while ( i-- )
|
|
||||||
{
|
|
||||||
visi = check[ i ];
|
|
||||||
cmp = ( visi === vis ) ? value : undefined;
|
|
||||||
|
|
||||||
assert.deepEqual(
|
|
||||||
members[ visi ][ name ],
|
|
||||||
cmp,
|
|
||||||
message
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
( function testRecognizesPublicProperty()
|
|
||||||
{
|
|
||||||
buildPropQuick( { 'public': true } );
|
|
||||||
|
|
||||||
assertOnlyVisibility( 'public',
|
|
||||||
name,
|
|
||||||
value,
|
|
||||||
"Public properties are copied only to the public member prototype"
|
|
||||||
);
|
|
||||||
} )();
|
|
||||||
|
|
||||||
|
|
||||||
( function testRecognizesProtectedProperty()
|
|
||||||
{
|
|
||||||
buildPropQuick( { 'protected': true } );
|
|
||||||
|
|
||||||
assertOnlyVisibility( 'protected',
|
|
||||||
name,
|
|
||||||
value,
|
|
||||||
"Protected properties are copied only to the protected member prototype"
|
|
||||||
);
|
|
||||||
} )();
|
|
||||||
|
|
||||||
|
|
||||||
( function testRecognizesPrivateProperty()
|
|
||||||
{
|
|
||||||
buildPropQuick( { 'private': true } );
|
|
||||||
|
|
||||||
assertOnlyVisibility( 'private',
|
|
||||||
name,
|
|
||||||
value,
|
|
||||||
"Private properties are copied only to the private member prototype"
|
|
||||||
);
|
|
||||||
} )();
|
|
||||||
|
|
||||||
|
|
||||||
( function testCopiedIntoPublicPrototypeByDefault()
|
|
||||||
{
|
|
||||||
buildPropQuick();
|
|
||||||
|
|
||||||
assertOnlyVisibility( 'public',
|
|
||||||
name,
|
|
||||||
value,
|
|
||||||
"Properties are copied only to the public member prototype by default"
|
|
||||||
);
|
|
||||||
} )();
|
|
||||||
|
|
||||||
|
|
||||||
( function testThrowsTypeErrorIfMultipleVisibilityKeywordsAreGiven()
|
|
||||||
{
|
|
||||||
assert.throws( function()
|
|
||||||
{
|
|
||||||
buildPropQuick( {
|
|
||||||
'public': true,
|
|
||||||
'protected': true,
|
|
||||||
} );
|
|
||||||
}, TypeError, "Cannot specify multiple visibility keywords (0)" );
|
|
||||||
|
|
||||||
assert.throws( function()
|
|
||||||
{
|
|
||||||
buildPropQuick( {
|
|
||||||
'public': true,
|
|
||||||
'private': true,
|
|
||||||
} );
|
|
||||||
}, TypeError, "Cannot specify multiple visibility keywords (1)" );
|
|
||||||
|
|
||||||
assert.throws( function()
|
|
||||||
{
|
|
||||||
buildPropQuick( {
|
|
||||||
'protected': true,
|
|
||||||
'private': true,
|
|
||||||
} );
|
|
||||||
}, TypeError, "Cannot specify multiple visibility keywords (2)" );
|
|
||||||
} )();
|
|
||||||
|
|
||||||
|
|
|
@ -98,6 +98,7 @@ if [ "$INC_TEST" ]; then
|
||||||
# note that not all tests are included
|
# note that not all tests are included
|
||||||
TEST_CASES=$( find $PATH_TEST \
|
TEST_CASES=$( find $PATH_TEST \
|
||||||
\( -name 'test-*.js' \
|
\( -name 'test-*.js' \
|
||||||
|
-name 'inc-*.js' \
|
||||||
! -name 'test-combine.js' \
|
! -name 'test-combine.js' \
|
||||||
! -name 'test-index.js' \
|
! -name 'test-index.js' \
|
||||||
\) \
|
\) \
|
||||||
|
|
Loading…
Reference in New Issue