2011-10-14 22:05:22 -04:00
|
|
|
/**
|
|
|
|
* Tests fallback method builder (for pre-ES5 environment)
|
|
|
|
*
|
|
|
|
* Note that this test case can also be run in an ES5 environment.
|
|
|
|
*
|
2014-04-09 18:59:22 -04:00
|
|
|
* Copyright (C) 2011, 2013 Free Software Foundation, Inc.
|
2011-10-14 22:05:22 -04:00
|
|
|
*
|
2013-12-22 09:37:21 -05:00
|
|
|
* This file is part of GNU ease.js.
|
2011-10-14 22:05:22 -04:00
|
|
|
*
|
2014-01-15 23:56:00 -05:00
|
|
|
* ease.js is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2011-10-14 22:05:22 -04:00
|
|
|
*
|
2014-01-15 23:56:00 -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 General Public License for more details.
|
2011-10-14 22:05:22 -04:00
|
|
|
*
|
2014-01-15 23:56:00 -05:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2011-10-14 22:05:22 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
require( './common' ).testCase(
|
|
|
|
{
|
|
|
|
setUp: function()
|
|
|
|
{
|
|
|
|
// stub factories used for testing
|
|
|
|
var stubFactory = this.require( 'MethodWrapperFactory' )(
|
|
|
|
function( func ) { return func; }
|
|
|
|
);
|
|
|
|
|
|
|
|
this.sut = this.require( 'FallbackMemberBuilder' )(
|
|
|
|
stubFactory, stubFactory
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
'Inherits from MemberBuilder': function()
|
|
|
|
{
|
|
|
|
this.assertOk( this.sut instanceof this.require( 'MemberBuilder' ),
|
|
|
|
'FallbackMemberBuilder should inherit from MemberBuilder'
|
|
|
|
);
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Getters and setters are unsupported in pre-ES5 environments
|
|
|
|
*/
|
2011-10-29 08:23:59 -04:00
|
|
|
'buildGetterSetter() method throws an exception': function()
|
2011-10-14 22:05:22 -04:00
|
|
|
{
|
|
|
|
// getter test
|
|
|
|
try
|
|
|
|
{
|
2011-10-29 08:23:59 -04:00
|
|
|
this.sut.buildGetterSetter();
|
|
|
|
this.fail( 'Exception should have been called (getter/setter)' );
|
2011-10-14 22:05:22 -04:00
|
|
|
}
|
|
|
|
catch ( e )
|
|
|
|
{
|
|
|
|
this.assertOk(
|
|
|
|
e.message.match( /unsupported/ ),
|
2011-10-29 08:23:59 -04:00
|
|
|
'Incorrect exception thrown (getter/setter)'
|
2011-10-14 22:05:22 -04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|