1
0
Fork 0
easejs/test/WarnTest.js

80 lines
2.3 KiB
JavaScript
Raw Permalink Normal View History

2014-01-19 11:43:04 -05:00
/**
* Tests warning system implementation
*
2014-01-20 22:55:29 -05:00
* Copyright (C) 2014 Mike Gerwitz
2014-01-19 11:43:04 -05:00
*
* This file is part of GNU ease.js.
*
* 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.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
if ( typeof console === 'undefined' ) console = undefined;
require( 'common' ).testCase(
{
setUp: function()
{
// XXX: this uses global state; remove that requirement.
this.Sut = this.require( 'warn' );
},
/**
* The default warning handler should be the 'log' handler; this is a
* friendly compromise that will allow the developer to be warned of
* potential issues without affecting program execution.
*/
'Default warning handler is `log\'': function()
{
var called = false;
// stub it
this.Sut.setConsole( {
warn: function()
{
called = true;
},
} );
this.Sut.handle( this.Sut.Warning( Error( 'foo' ) ) );
this.assertOk( called );
// restore console (TODO: this will not be necessary once reliance
// on global state is removed)
this.Sut.setConsole( console );
},
/**
* The warning handler can be altered at runtime; ensure we can set it
* and call it appropriately. We do not need to use one of the
* pre-defined handlers.
*/
'Can set and call arbitrary warning handler': function()
{
var given,
warning = this.Sut.Warning( Error( 'foo' ) );
// set a stub warning handler
this.Sut.setHandler( function( warn )
{
given = warn;
} );
// trigger the handler
this.Sut.handle( warning );
this.assertDeepEqual( given, warning );
},
} );