mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Popups
synced 2024-11-15 11:46:55 +00:00
95b880aa29
Returning promises from the `linkDwell` and `abandon` thunks and removing some of the `wait` stubs in the unit test for these actions. Also converting a fetch callback from a `.fail` to a Promise A+ compatible `.catch`. Bug: T170807 Change-Id: I4bbf2863db090e222ba926d3bc36a99da4bdb601
537 lines
11 KiB
JavaScript
537 lines
11 KiB
JavaScript
import { createStubUser, createStubTitle } from './stubs';
|
|
import * as actions from '../../src/actions';
|
|
import * as WaitModule from '../../src/wait';
|
|
|
|
var mw = mediaWiki;
|
|
|
|
function generateToken() {
|
|
return '9876543210';
|
|
}
|
|
|
|
QUnit.module( 'ext.popups/actions' );
|
|
|
|
QUnit.test( '#boot', function ( assert ) {
|
|
var config = new Map(), /* global Map */
|
|
stubUser = createStubUser( /* isAnon = */ true ),
|
|
stubUserSettings,
|
|
action;
|
|
|
|
config.set( 'wgTitle', 'Foo' );
|
|
config.set( 'wgNamespaceNumber', 1 );
|
|
config.set( 'wgArticleId', 2 );
|
|
config.set( 'wgUserEditCount', 3 );
|
|
config.set( 'wgPopupsConflictsWithNavPopupGadget', true );
|
|
|
|
stubUserSettings = {
|
|
getPreviewCount: function () {
|
|
return 22;
|
|
}
|
|
};
|
|
|
|
assert.expect( 1 );
|
|
|
|
action = actions.boot(
|
|
false,
|
|
stubUser,
|
|
stubUserSettings,
|
|
generateToken,
|
|
config
|
|
);
|
|
|
|
assert.deepEqual(
|
|
action,
|
|
{
|
|
type: 'BOOT',
|
|
isEnabled: false,
|
|
isNavPopupsEnabled: true,
|
|
sessionToken: '0123456789',
|
|
pageToken: '9876543210',
|
|
page: {
|
|
title: 'Foo',
|
|
namespaceID: 1,
|
|
id: 2
|
|
},
|
|
user: {
|
|
isAnon: true,
|
|
editCount: 3,
|
|
previewCount: 22
|
|
}
|
|
}
|
|
);
|
|
} );
|
|
|
|
/**
|
|
* Stubs `wait.js` and adds the deferred and its promise as properties
|
|
* of the module.
|
|
*
|
|
* @param {Object} module
|
|
*/
|
|
function setupWait( module ) {
|
|
module.waitDeferreds = [];
|
|
module.waitPromises = [];
|
|
|
|
module.wait = module.sandbox.spy( function () {
|
|
var deferred = $.Deferred(),
|
|
promise = deferred.promise();
|
|
|
|
module.waitDeferreds.push( deferred );
|
|
module.waitPromises.push( promise );
|
|
return promise;
|
|
} );
|
|
|
|
module.sandbox.stub( WaitModule, 'default' ).callsFake( module.wait );
|
|
}
|
|
|
|
/**
|
|
* Sets up a link/mw.Title stub pair that can be passed to the linkDwell action
|
|
* creator.
|
|
*
|
|
* @param {Object} module
|
|
*/
|
|
function setupEl( module ) {
|
|
module.title = createStubTitle( 1, 'Foo' );
|
|
module.el = $( '<a>' ).eq( 0 );
|
|
}
|
|
|
|
QUnit.module( 'ext.popups/actions#linkDwell @integration', {
|
|
beforeEach: function () {
|
|
var that = this;
|
|
|
|
this.state = {
|
|
preview: {}
|
|
};
|
|
this.getState = function () {
|
|
return that.state;
|
|
};
|
|
|
|
// The worst-case implementation of mw.now.
|
|
mw.now = function () { return Date.now(); };
|
|
|
|
setupEl( this );
|
|
}
|
|
} );
|
|
|
|
QUnit.test( '#linkDwell', function ( assert ) {
|
|
var p,
|
|
event = {},
|
|
dispatch = this.sandbox.spy();
|
|
|
|
this.sandbox.stub( mw, 'now' ).returns( new Date() );
|
|
this.sandbox.stub( actions, 'fetch' );
|
|
|
|
// Stub the state tree being updated by the LINK_DWELL action.
|
|
this.state.preview = {
|
|
activeToken: generateToken()
|
|
};
|
|
|
|
p = actions.linkDwell(
|
|
this.title, this.el, event, /* gateway = */ null, generateToken
|
|
)(
|
|
dispatch,
|
|
this.getState
|
|
);
|
|
|
|
assert.deepEqual( dispatch.getCall( 0 ).args[ 0 ], {
|
|
type: 'LINK_DWELL',
|
|
el: this.el,
|
|
event: event,
|
|
token: '9876543210',
|
|
timestamp: mw.now(),
|
|
title: 'Foo',
|
|
namespaceID: 1
|
|
} );
|
|
|
|
// Stub the state tree being updated.
|
|
this.state.preview = {
|
|
enabled: true,
|
|
activeLink: this.el,
|
|
activeToken: generateToken()
|
|
};
|
|
|
|
// ---
|
|
|
|
p.then( function () {
|
|
assert.strictEqual(
|
|
dispatch.callCount,
|
|
2,
|
|
'The fetch action is dispatched after FETCH_COMPLETE milliseconds.'
|
|
);
|
|
} );
|
|
return p;
|
|
} );
|
|
|
|
QUnit.test( '#linkDwell doesn\'t continue when previews are disabled', function ( assert ) {
|
|
var p,
|
|
event = {},
|
|
dispatch = this.sandbox.spy();
|
|
|
|
// Stub the state tree being updated by the LINK_DWELL action.
|
|
this.state.preview = {
|
|
enabled: false,
|
|
activeLink: this.el,
|
|
activeToken: generateToken()
|
|
};
|
|
|
|
p = actions.linkDwell(
|
|
this.title, this.el, event, /* gateway = */ null, generateToken
|
|
)(
|
|
dispatch,
|
|
this.getState
|
|
);
|
|
|
|
assert.strictEqual( dispatch.callCount, 1 );
|
|
|
|
p.then( function () {
|
|
assert.strictEqual( dispatch.callCount, 1 );
|
|
} );
|
|
|
|
return p;
|
|
} );
|
|
|
|
QUnit.test( '#linkDwell doesn\'t continue if the token has changed', function ( assert ) {
|
|
var p,
|
|
event = {},
|
|
dispatch = this.sandbox.spy();
|
|
|
|
// Stub the state tree being updated by a LINK_DWELL action.
|
|
this.state.preview = {
|
|
enabled: true,
|
|
activeLink: this.el,
|
|
activeToken: generateToken()
|
|
};
|
|
|
|
p = actions.linkDwell(
|
|
this.title, this.el, event, /* gateway = */ null, generateToken
|
|
)(
|
|
dispatch,
|
|
this.getState
|
|
);
|
|
|
|
// Stub the state tree being updated by another LINK_DWELL action.
|
|
this.state.preview = {
|
|
enabled: true,
|
|
|
|
// Consider the user tabbing back and forth between two links in the time
|
|
// it takes to start fetching data via the gateway: the active link hasn't
|
|
// changed, but the active token has.
|
|
activeLink: this.el,
|
|
|
|
activeToken: 'banana'
|
|
};
|
|
|
|
p.then( function () {
|
|
assert.strictEqual( dispatch.callCount, 1 );
|
|
} );
|
|
|
|
return p;
|
|
} );
|
|
|
|
QUnit.test( '#linkDwell dispatches the fetch action', function ( assert ) {
|
|
var p,
|
|
event = {},
|
|
dispatch = this.sandbox.spy();
|
|
|
|
this.state.preview = {
|
|
enabled: true,
|
|
activeToken: generateToken()
|
|
};
|
|
|
|
p = actions.linkDwell(
|
|
this.title, this.el, event, /* gateway = */ null, generateToken
|
|
)(
|
|
dispatch,
|
|
this.getState
|
|
).then( function () {
|
|
assert.strictEqual( dispatch.callCount, 2 );
|
|
} );
|
|
|
|
return p;
|
|
} );
|
|
|
|
QUnit.module( 'ext.popups/actions#fetch', {
|
|
beforeEach: function () {
|
|
var that = this;
|
|
|
|
// Setup the mw.now stub before actions is re-required in setupWait
|
|
this.now = 0;
|
|
|
|
this.sandbox.stub( mw, 'now' ).callsFake( function () {
|
|
return that.now;
|
|
} );
|
|
|
|
setupWait( this );
|
|
setupEl( this );
|
|
|
|
this.gatewayDeferred = $.Deferred();
|
|
this.gatewayPromise = this.gatewayDeferred.promise();
|
|
this.gateway = {
|
|
getPageSummary: this.sandbox.stub().returns( this.gatewayPromise )
|
|
};
|
|
|
|
this.dispatch = this.sandbox.spy();
|
|
|
|
this.token = '1234567890';
|
|
|
|
// Sugar.
|
|
this.fetch = function () {
|
|
return actions.fetch(
|
|
that.gateway, that.title, that.el, that.token
|
|
)( that.dispatch );
|
|
};
|
|
}
|
|
} );
|
|
|
|
QUnit.test( 'it should fetch data from the gateway immediately', function ( assert ) {
|
|
this.fetch();
|
|
|
|
assert.ok( this.gateway.getPageSummary.calledWith( 'Foo' ) );
|
|
|
|
assert.ok( this.dispatch.calledOnce );
|
|
assert.deepEqual(
|
|
this.dispatch.getCall( 0 ).args[ 0 ],
|
|
{
|
|
type: 'FETCH_START',
|
|
el: this.el,
|
|
title: 'Foo',
|
|
namespaceID: 1,
|
|
timestamp: this.now
|
|
},
|
|
'It dispatches the FETCH_START action immediately.'
|
|
);
|
|
} );
|
|
|
|
QUnit.test( 'it should dispatch the FETCH_END action when the API request ends', function ( assert ) {
|
|
var that = this;
|
|
|
|
this.fetch();
|
|
|
|
this.now += 115;
|
|
this.gatewayDeferred.resolve( {} );
|
|
|
|
return this.gatewayPromise.then( function () {
|
|
assert.deepEqual(
|
|
that.dispatch.getCall( 1 ).args[ 0 ],
|
|
{
|
|
type: 'FETCH_END',
|
|
el: that.el,
|
|
timestamp: 115
|
|
}
|
|
);
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( 'it should delay dispatching the FETCH_COMPLETE action', function ( assert ) {
|
|
var whenDeferred = $.Deferred(),
|
|
whenSpy,
|
|
args,
|
|
result = {},
|
|
that = this;
|
|
|
|
whenSpy = this.sandbox.stub( $, 'when' )
|
|
.returns( whenDeferred.promise() );
|
|
|
|
this.fetch();
|
|
|
|
assert.strictEqual(
|
|
this.wait.getCall( 0 ).args[ 0 ],
|
|
350,
|
|
'It waits for FETCH_COMPLETE_TARGET_DELAY - FETCH_START_DELAY milliseconds.'
|
|
);
|
|
|
|
// ---
|
|
args = whenSpy.getCall( 0 ).args;
|
|
|
|
// This assertion is disabled due to $.Promise#then and #fail returning a new
|
|
// instance of $.Promise.
|
|
// assert.strictEqual( args[ 0 ], this.gatewayPromise );
|
|
|
|
assert.strictEqual( args[ 1 ], this.waitPromises[ 0 ] );
|
|
|
|
// ---
|
|
whenDeferred.resolve( result );
|
|
|
|
return whenDeferred.then( function () {
|
|
|
|
// Ensure the following assertions are made after all callbacks have been
|
|
// executed. Use setTimeout( _, 0 ) since it's not critical that these
|
|
// assertions are run before I/O is processed, i.e. we don't require
|
|
// process.nextTick.
|
|
setTimeout( function () {
|
|
assert.deepEqual(
|
|
that.dispatch.getCall( 1 ).args[ 0 ],
|
|
{
|
|
type: 'FETCH_COMPLETE',
|
|
el: that.el,
|
|
result: result,
|
|
token: that.token
|
|
}
|
|
);
|
|
}, 0 );
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( 'it should dispatch the FETCH_FAILED action when the request fails', function ( assert ) {
|
|
var that = this;
|
|
|
|
assert.expect( 2 );
|
|
|
|
this.gatewayDeferred.reject( new Error( 'API req failed' ) );
|
|
|
|
const fetch = this.fetch().catch( function () {
|
|
assert.equal(
|
|
that.dispatch.callCount, 3,
|
|
'dispatch called thrice, START, FAILED, and COMPLETE'
|
|
);
|
|
assert.deepEqual(
|
|
that.dispatch.getCall( 1 ).args[ 0 ],
|
|
{
|
|
type: 'FETCH_FAILED',
|
|
el: that.el
|
|
}
|
|
);
|
|
} );
|
|
|
|
this.now += 115;
|
|
|
|
return fetch;
|
|
} );
|
|
|
|
QUnit.test( 'it should dispatch the FETCH_FAILED action when the request fails even after the wait timeout', function ( assert ) {
|
|
var that = this;
|
|
|
|
assert.expect( 2 );
|
|
|
|
const fetch = this.fetch().catch( function () {
|
|
assert.equal(
|
|
that.dispatch.callCount, 3,
|
|
'dispatch called thrice, START, FAILED, and COMPLETE'
|
|
);
|
|
assert.deepEqual(
|
|
that.dispatch.getCall( 1 ).args[ 0 ],
|
|
{
|
|
type: 'FETCH_FAILED',
|
|
el: that.el
|
|
}
|
|
);
|
|
} );
|
|
|
|
// After the wait interval happens, resolve the gateway request
|
|
this.waitPromises[ 0 ].then( function () {
|
|
that.gatewayDeferred.reject( new Error( 'API req failed' ) );
|
|
} );
|
|
|
|
this.waitDeferreds[ 0 ].resolve();
|
|
|
|
return fetch;
|
|
} );
|
|
|
|
QUnit.module( 'ext.popups/actions#abandon', {
|
|
beforeEach: function () {
|
|
setupEl( this );
|
|
}
|
|
} );
|
|
|
|
QUnit.test( 'it should dispatch start and end actions', function ( assert ) {
|
|
var dispatch = this.sandbox.spy(),
|
|
token = '0123456789',
|
|
getState = function () {
|
|
return {
|
|
preview: {
|
|
activeToken: token
|
|
}
|
|
};
|
|
}, p;
|
|
|
|
this.sandbox.stub( mw, 'now' ).returns( new Date() );
|
|
|
|
setupWait( this );
|
|
|
|
actions.abandon( this.el )( dispatch, getState );
|
|
|
|
assert.ok( dispatch.calledWith( {
|
|
type: 'ABANDON_START',
|
|
timestamp: mw.now(),
|
|
token: token
|
|
} ) );
|
|
|
|
// ---
|
|
|
|
assert.ok(
|
|
this.wait.calledWith( 300 ),
|
|
'Have you spoken with #Design about changing this value?'
|
|
);
|
|
|
|
p = this.waitPromises[ 0 ].then( function () {
|
|
assert.ok(
|
|
dispatch.calledWith( {
|
|
type: 'ABANDON_END',
|
|
token: token
|
|
} ),
|
|
'ABANDON_* share the same token.'
|
|
);
|
|
} );
|
|
|
|
// After ABANDON_END_DELAY milliseconds...
|
|
this.waitDeferreds[ 0 ].resolve();
|
|
return p;
|
|
} );
|
|
|
|
QUnit.test( 'it shouldn\'t dispatch under certain conditions', function ( assert ) {
|
|
var dispatch = this.sandbox.spy(),
|
|
getState = function () {
|
|
return {
|
|
preview: {
|
|
activeToken: undefined
|
|
}
|
|
};
|
|
};
|
|
|
|
return actions.abandon( this.el )( dispatch, getState )
|
|
.then( function () {
|
|
assert.ok( dispatch.notCalled );
|
|
} );
|
|
} );
|
|
|
|
QUnit.module( 'ext.popups/actions#saveSettings' );
|
|
|
|
QUnit.test( 'it should dispatch an action with previous and current enabled state', function ( assert ) {
|
|
var dispatch = this.sandbox.spy(),
|
|
getState = this.sandbox.stub().returns( {
|
|
preview: {
|
|
enabled: false
|
|
}
|
|
} );
|
|
|
|
actions.saveSettings( /* enabled = */ true )( dispatch, getState );
|
|
|
|
assert.ok(
|
|
getState.calledOnce,
|
|
'it should query the global state for the current state'
|
|
);
|
|
assert.ok(
|
|
dispatch.calledWith( {
|
|
type: 'SETTINGS_CHANGE',
|
|
wasEnabled: false,
|
|
enabled: true
|
|
} ),
|
|
'it should dispatch the action with the previous and next enabled state'
|
|
);
|
|
} );
|
|
|
|
QUnit.module( 'ext.popups/actions#previewShow' );
|
|
|
|
QUnit.test( 'it should dispatch the PREVIEW_SHOW action', function ( assert ) {
|
|
var token = '1234567890';
|
|
|
|
this.sandbox.stub( mw, 'now' ).returns( new Date() );
|
|
|
|
assert.deepEqual(
|
|
actions.previewShow( token ),
|
|
{
|
|
type: 'PREVIEW_SHOW',
|
|
token: token,
|
|
timestamp: mw.now()
|
|
}
|
|
);
|
|
} );
|