2014-02-17 15:09:23 +00:00
|
|
|
( function ( mw, $ ) {
|
2014-04-07 19:19:07 +00:00
|
|
|
QUnit.module( 'mmv.ui', QUnit.newMwEnvironment( {
|
|
|
|
setup: function () {
|
|
|
|
this.clock = this.sandbox.useFakeTimers();
|
|
|
|
}
|
|
|
|
} ) );
|
2014-02-17 15:09:23 +00:00
|
|
|
|
2014-03-26 23:59:04 +00:00
|
|
|
QUnit.test( 'handleEvent()', 1, function ( assert ) {
|
|
|
|
var element = new mw.mmv.ui.Element( $( '<div>' ) );
|
2014-02-17 15:09:23 +00:00
|
|
|
|
2014-03-26 23:59:04 +00:00
|
|
|
element.handleEvent( 'mmv-foo', function () {
|
|
|
|
assert.ok( true, 'Event is handled' );
|
|
|
|
} );
|
2014-02-17 15:09:23 +00:00
|
|
|
|
2014-03-26 23:59:04 +00:00
|
|
|
$( document ).trigger( new $.Event( 'mmv-foo' ) );
|
|
|
|
|
|
|
|
element.clearEvents();
|
|
|
|
|
|
|
|
$( document ).trigger( new $.Event( 'mmv-foo' ) );
|
2014-02-17 15:09:23 +00:00
|
|
|
} );
|
2014-04-02 00:07:51 +00:00
|
|
|
|
2014-04-04 22:02:16 +00:00
|
|
|
QUnit.test( 'setInlineStyle()', 3, function ( assert ) {
|
2014-04-02 00:07:51 +00:00
|
|
|
var element = new mw.mmv.ui.Element( $( '<div>' ) ),
|
|
|
|
$testDiv = $( '<div id="mmv-testdiv">!!!</div>' ).appendTo( '#qunit-fixture' );
|
|
|
|
|
|
|
|
assert.ok( $testDiv.is( ':visible' ), 'Test div is visible' );
|
|
|
|
|
2014-04-04 22:02:16 +00:00
|
|
|
element.setInlineStyle( 'test', '#mmv-testdiv { display: none; }' );
|
2014-04-02 00:07:51 +00:00
|
|
|
|
|
|
|
assert.ok( !$testDiv.is( ':visible' ), 'Test div is hidden by inline style' );
|
|
|
|
|
2014-04-04 22:02:16 +00:00
|
|
|
element.setInlineStyle( 'test', null );
|
2014-04-02 00:07:51 +00:00
|
|
|
|
|
|
|
assert.ok( $testDiv.is( ':visible' ), 'Test div is visible again' );
|
|
|
|
} );
|
2014-04-07 19:19:07 +00:00
|
|
|
|
|
|
|
QUnit.test( 'setTimer()/clearTimer()/resetTimer()', 12, function( assert ) {
|
|
|
|
var element = new mw.mmv.ui.Element( $( '<div>' ) ),
|
|
|
|
element2 = new mw.mmv.ui.Element( $( '<div>' ) ),
|
|
|
|
spy = this.sandbox.spy(),
|
|
|
|
spy2 = this.sandbox.spy();
|
|
|
|
|
|
|
|
element.setTimer( 'foo', spy, 10 );
|
|
|
|
this.clock.tick( 100 );
|
|
|
|
assert.ok( spy.called, 'Timeout callback was called' );
|
|
|
|
assert.ok( spy.calledOnce, 'Timeout callback was called once' );
|
|
|
|
assert.ok( spy.calledOn( element ), 'Timeout callback was called on the element' );
|
|
|
|
|
|
|
|
spy = this.sandbox.spy();
|
|
|
|
element.setTimer( 'foo', spy, 10 );
|
|
|
|
element.setTimer( 'foo', spy2, 20 );
|
|
|
|
this.clock.tick( 100 );
|
|
|
|
assert.ok( !spy.called, 'Old timeout callback was not called after update' );
|
|
|
|
assert.ok( spy2.called, 'New timeout callback was called after update' );
|
|
|
|
|
|
|
|
spy = this.sandbox.spy();
|
|
|
|
spy2 = this.sandbox.spy();
|
|
|
|
element.setTimer( 'foo', spy, 10 );
|
|
|
|
element.setTimer( 'bar', spy2, 20 );
|
|
|
|
this.clock.tick( 100 );
|
|
|
|
assert.ok( spy.called && spy2.called, 'Timeouts with different names do not conflict' );
|
|
|
|
|
|
|
|
spy = this.sandbox.spy();
|
|
|
|
spy2 = this.sandbox.spy();
|
|
|
|
element.setTimer( 'foo', spy, 10 );
|
|
|
|
element2.setTimer( 'foo', spy2, 20 );
|
|
|
|
this.clock.tick( 100 );
|
|
|
|
assert.ok( spy.called && spy2.called, 'Timeouts in different elements do not conflict' );
|
|
|
|
|
|
|
|
spy = this.sandbox.spy();
|
|
|
|
element.setTimer( 'foo', spy, 10 );
|
|
|
|
element.clearTimer( 'foo' );
|
|
|
|
this.clock.tick( 100 );
|
|
|
|
assert.ok( !spy.called, 'Timeout is invalidated by clearing' );
|
|
|
|
|
|
|
|
spy = this.sandbox.spy();
|
|
|
|
element.setTimer( 'foo', spy, 100 );
|
|
|
|
this.clock.tick( 80 );
|
|
|
|
element.resetTimer( 'foo' );
|
|
|
|
this.clock.tick( 80 );
|
|
|
|
assert.ok( !spy.called, 'Timeout is reset' );
|
|
|
|
this.clock.tick( 80 );
|
|
|
|
assert.ok( spy.called, 'Timeout works after reset' );
|
|
|
|
|
|
|
|
spy = this.sandbox.spy();
|
|
|
|
element.setTimer( 'foo', spy, 100 );
|
|
|
|
this.clock.tick( 80 );
|
|
|
|
element.resetTimer( 'foo', 200 );
|
|
|
|
this.clock.tick( 180 );
|
|
|
|
assert.ok( !spy.called, 'Timeout is reset to the designated delay' );
|
|
|
|
this.clock.tick( 80 );
|
|
|
|
assert.ok( spy.called, 'Timeout works after changing the delay' );
|
|
|
|
} );
|
2014-02-17 15:09:23 +00:00
|
|
|
}( mediaWiki, jQuery ) );
|