mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-15 11:46:55 +00:00
ae44042cbf
Change-Id: Ic0a47bd468532824e8648c3f6371cc403896603c
45 lines
920 B
JavaScript
45 lines
920 B
JavaScript
import createExperiments from '../../src/experiments';
|
|
|
|
QUnit.module( 'ext.popups/experiments#weightedBoolean' );
|
|
|
|
QUnit.test( 'it should call mw.experiments#getBucket', function ( assert ) {
|
|
const getBucketStub = this.sandbox.stub(),
|
|
stubMWExperiments = {
|
|
getBucket: getBucketStub
|
|
},
|
|
experiments = createExperiments( stubMWExperiments );
|
|
|
|
experiments.weightedBoolean( 'foo', 0.2, 'barbaz' );
|
|
|
|
assert.strictEqual(
|
|
getBucketStub.callCount,
|
|
1,
|
|
'The bucketer was invoked once.'
|
|
);
|
|
assert.deepEqual(
|
|
getBucketStub.getCall( 0 ).args,
|
|
[
|
|
{
|
|
enabled: true,
|
|
|
|
name: 'foo',
|
|
buckets: {
|
|
'true': 0.2,
|
|
'false': 0.8 // 1 - 0.2
|
|
}
|
|
},
|
|
'barbaz'
|
|
],
|
|
'The bucketer was called with the correct arguments.'
|
|
);
|
|
|
|
// ---
|
|
|
|
getBucketStub.returns( 'true' );
|
|
|
|
assert.ok(
|
|
experiments.weightedBoolean( 'foo', 0.2, 'barbaz' ),
|
|
'It should return true if the bucket is "true".'
|
|
);
|
|
} );
|