mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-15 11:46:55 +00:00
33c05394f4
In order to run qunit tests on sources that use common.js modules, set up infra to run qunit tests in the node cli when running: npm run test:node Changes: * Add npm script test:node that runs the tests * Run node tests on CI (npm test) * Add a qunit node test runner: mw-node-qunit * Migrate a test from the root hierarchy and another one from the nested one to prove it works (globs fail otherwise) * reducers/settings.test.js to node qunit to prove it works * counts.test.js to node qunit to prove it works Change-Id: I55d76b7db168f3745e0ac69852c152322ab385c3
65 lines
1.5 KiB
JavaScript
65 lines
1.5 KiB
JavaScript
var counts = require( '../../src/counts' );
|
|
|
|
QUnit.module( 'ext.popups/counts' );
|
|
|
|
QUnit.test( '#getEditCountBucket', function ( assert ) {
|
|
var i, bucket, count,
|
|
cases = [
|
|
[ 0, '0 edits' ],
|
|
[ 1, '1-4 edits' ],
|
|
[ 2, '1-4 edits' ],
|
|
[ 4, '1-4 edits' ],
|
|
[ 5, '5-99 edits' ],
|
|
[ 25, '5-99 edits' ],
|
|
[ 50, '5-99 edits' ],
|
|
[ 99, '5-99 edits' ],
|
|
[ 100, '100-999 edits' ],
|
|
[ 101, '100-999 edits' ],
|
|
[ 500, '100-999 edits' ],
|
|
[ 999, '100-999 edits' ],
|
|
[ 1000, '1000+ edits' ],
|
|
[ 1500, '1000+ edits' ]
|
|
];
|
|
|
|
assert.expect( cases.length );
|
|
|
|
for ( i = 0; i < cases.length; i++ ) {
|
|
count = cases[ i ][ 0 ];
|
|
bucket = counts.getEditCountBucket( count );
|
|
assert.equal(
|
|
bucket,
|
|
cases[ i ][ 1 ],
|
|
'Edit count bucket is "' + bucket + '" when edit count is ' + count + '.'
|
|
);
|
|
}
|
|
} );
|
|
|
|
QUnit.test( '#getPreviewCountBucket', function ( assert ) {
|
|
var i, count, bucket,
|
|
cases = [
|
|
[ -1, 'unknown' ],
|
|
[ 0, '0 previews' ],
|
|
[ 1, '1-4 previews' ],
|
|
[ 2, '1-4 previews' ],
|
|
[ 4, '1-4 previews' ],
|
|
[ 5, '5-20 previews' ],
|
|
[ 10, '5-20 previews' ],
|
|
[ 20, '5-20 previews' ],
|
|
[ 21, '21+ previews' ],
|
|
[ 100, '21+ previews' ],
|
|
[ 1000, '21+ previews' ]
|
|
];
|
|
|
|
assert.expect( cases.length );
|
|
|
|
for ( i = 0; i < cases.length; i++ ) {
|
|
count = cases[ i ][ 0 ];
|
|
bucket = counts.getPreviewCountBucket( count );
|
|
assert.equal(
|
|
bucket,
|
|
cases[ i ][ 1 ],
|
|
'Preview count bucket is "' + bucket + '" when preview count is ' + count + '.'
|
|
);
|
|
}
|
|
} );
|