2011-08-13 23:00:03 -04:00
|
|
|
/**
|
|
|
|
* Tests factory for visibility object factory
|
|
|
|
*
|
2014-04-09 18:59:22 -04:00
|
|
|
* Copyright (C) 2011, 2012, 2013 Free Software Foundation, Inc.
|
2011-08-13 23:00:03 -04:00
|
|
|
*
|
2013-12-22 09:37:21 -05:00
|
|
|
* This file is part of GNU ease.js.
|
2011-08-13 23:00:03 -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-08-13 23:00:03 -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-08-13 23:00:03 -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-08-13 23:00:03 -04:00
|
|
|
*/
|
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
require( 'common' ).testCase(
|
|
|
|
{
|
|
|
|
caseSetUp: function()
|
|
|
|
{
|
|
|
|
this.sut = this.require( 'VisibilityObjectFactoryFactory' );
|
2011-08-13 23:00:03 -04:00
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
this.VisibilityObjectFactory =
|
|
|
|
this.require( 'VisibilityObjectFactory' );
|
2011-08-13 23:00:03 -04:00
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
this.FallbackVisibilityObjectFactory =
|
|
|
|
this.require( 'FallbackVisibilityObjectFactory' );
|
2011-08-13 23:00:03 -04:00
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
this.util = this.require( 'util' );
|
|
|
|
},
|
2011-08-13 23:00:03 -04:00
|
|
|
|
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
/**
|
|
|
|
* By default, if supported by our environment, we should use the standard
|
|
|
|
* factory to provide proper visibility support.
|
|
|
|
*/
|
|
|
|
'Returns standard factory if not falling back': function()
|
2011-08-13 23:00:03 -04:00
|
|
|
{
|
2012-05-03 17:21:37 -04:00
|
|
|
// don't bother with the test if we don't support the standard visibility
|
|
|
|
// object
|
|
|
|
if ( this.util.definePropertyFallback() )
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
}
|
2011-08-13 23:00:03 -04:00
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
this.assertOk(
|
|
|
|
( this.sut.fromEnvironment()
|
|
|
|
instanceof this.VisibilityObjectFactory ),
|
|
|
|
"Creates standard VisibilityObjectFactory if supported"
|
|
|
|
);
|
|
|
|
},
|
2011-08-13 23:00:03 -04:00
|
|
|
|
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
/**
|
|
|
|
* If not supported by our environment, we should be permitted to fall back to a
|
|
|
|
* working implementation that sacrifices visibility support.
|
|
|
|
*/
|
|
|
|
'Returns fallback factory if falling back': function()
|
|
|
|
{
|
|
|
|
var old = this.util.definePropertyFallback();
|
2011-08-13 23:00:03 -04:00
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
// force fallback
|
|
|
|
this.util.definePropertyFallback( true );
|
2011-08-13 23:00:03 -04:00
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
this.assertOk(
|
|
|
|
( this.sut.fromEnvironment()
|
|
|
|
instanceof this.FallbackVisibilityObjectFactory
|
|
|
|
),
|
|
|
|
"Creates fallback VisibilityObjectFactory if falling back"
|
|
|
|
);
|
2011-08-13 23:00:03 -04:00
|
|
|
|
2012-05-03 17:21:37 -04:00
|
|
|
// restore fallback
|
|
|
|
this.util.definePropertyFallback( old );
|
|
|
|
},
|
|
|
|
} );
|