mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-12-02 19:56:17 +00:00
1ded292f83
Bug: T208951 Change-Id: Ice695dfb489974faa23ba19d74cf17b06e3f6075
23 lines
737 B
JavaScript
23 lines
737 B
JavaScript
( function () {
|
|
QUnit.module( 'mmv.logging.AttributionLogger', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( 'log()', 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' );
|
|
} );
|
|
}() );
|