mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-15 03:35:10 +00:00
ae99be730e
Change-Id: I57a8f188eb1152438a8e94235a6f6801e2617c28
23 lines
766 B
JavaScript
23 lines
766 B
JavaScript
( function ( mw, $ ) {
|
|
QUnit.module( 'mmv.logging.AttributionLogger', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( 'log()', 2, function ( assert ) {
|
|
var fakeEventLog = { logEvent: this.sandbox.stub() },
|
|
logger = new mw.mmv.logging.AttributionLogger(),
|
|
image = { author: 'foo', source: 'bar', license: {} },
|
|
emptyImage = {};
|
|
|
|
this.sandbox.stub( logger, 'loadDependencies' ).returns( $.Deferred().resolve() );
|
|
this.sandbox.stub( mw, 'log' );
|
|
|
|
logger.samplingFactor = 1;
|
|
logger.setEventLog( fakeEventLog );
|
|
|
|
logger.logAttribution( image );
|
|
assert.ok( true, 'logDimensions() did not throw errors' );
|
|
|
|
logger.logAttribution( emptyImage );
|
|
assert.ok( true, 'logDimensions() did not throw errors for empty image' );
|
|
} );
|
|
}( mediaWiki, jQuery ) );
|