mediawiki-extensions-Popups/tests/node-qunit/userSettings.test.js
Ed Sanders c74d2e5313 build: Update linters
Bug: T202739
Change-Id: Ie3f68977598f46f7e12b216f8381b2e9dc6d83ad
2018-09-11 10:26:35 -07:00

108 lines
2.5 KiB
JavaScript

import { createStubMap } from './stubs';
import createUserSettings from '../../src/userSettings';
QUnit.module( 'ext.popups/userSettings', {
beforeEach() {
this.storage = createStubMap();
this.userSettings = createUserSettings( this.storage );
}
} );
QUnit.test( '#getIsEnabled should return false if Page Previews have been disabled', function ( assert ) {
this.userSettings.setIsEnabled( false );
assert.notOk(
this.userSettings.getIsEnabled(),
'The user has disabled Page Previews.'
);
// ---
this.userSettings.setIsEnabled( true );
assert.ok(
this.userSettings.getIsEnabled(),
'#getIsEnabled should return true if Page Previews have been enabled'
);
} );
QUnit.test( '#hasIsEnabled', function ( assert ) {
assert.notOk(
this.userSettings.hasIsEnabled(),
'#hasIsEnabled should return false if the storage is empty.'
);
// ---
this.userSettings.setIsEnabled( false );
assert.ok(
this.userSettings.hasIsEnabled(),
'#hasIsEnabled should return true even if "isEnabled" has been set to falsy.'
);
// ---
const getStub = this.sandbox.stub( this.storage, 'get' ).returns( false );
assert.notOk(
this.userSettings.hasIsEnabled(),
'#hasIsEnabled should return false if the storage is disabled.'
);
getStub.restore();
} );
QUnit.test( '#getPreviewCount should return the count as a number', function ( assert ) {
assert.strictEqual(
this.userSettings.getPreviewCount(),
0,
'#getPreviewCount returns 0 when the storage is empty.'
);
// ---
this.storage.set( 'ext.popups.core.previewCount', false );
assert.strictEqual(
this.userSettings.getPreviewCount(),
-1,
'#getPreviewCount returns -1 when the storage isn\'t available.'
);
// ---
this.storage.set( 'ext.popups.core.previewCount', '111' );
assert.strictEqual(
this.userSettings.getPreviewCount(),
111,
'#getPreviewCount returns the total.'
);
} );
QUnit.test( '#setPreviewCount should store the count as a string', function ( assert ) {
this.userSettings.setPreviewCount( 222 );
assert.strictEqual(
this.storage.get( 'ext.popups.core.previewCount' ),
'222',
'Storage returns the total as a string.'
);
} );
QUnit.test( '#getPreviewCount should override value in storage when is not a number', function ( assert ) {
this.storage.set( 'ext.popups.core.previewCount', 'NaN' );
assert.strictEqual(
this.userSettings.getPreviewCount(),
0,
'#getPreviewCount returns a sane default.'
);
assert.strictEqual(
this.storage.get( 'ext.popups.core.previewCount' ),
'0',
'Storage returns a sane default as a string.'
);
} );