2017-07-28 17:32:46 +00:00
|
|
|
import * as Redux from 'redux';
|
|
|
|
import * as ReduxThunk from 'redux-thunk';
|
|
|
|
import * as WaitModule from '../../src/wait';
|
|
|
|
import * as stubs from './stubs';
|
|
|
|
import * as actions from '../../src/actions';
|
|
|
|
import reducers from '../../src/reducers';
|
|
|
|
import registerChangeListener from '../../src/changeListener';
|
|
|
|
|
|
|
|
var mw = mediaWiki,
|
|
|
|
$ = jQuery,
|
2018-01-11 15:44:26 +00:00
|
|
|
/**
|
|
|
|
* Whether Gateway#getPageSummary is resolved or rejected.
|
|
|
|
* @enum {number}
|
|
|
|
*/
|
|
|
|
FETCH_RESOLUTION = { RESOLVE: 0, REJECT: 1 };
|
2017-02-27 16:10:50 +00:00
|
|
|
|
|
|
|
function identity( x ) { return x; }
|
|
|
|
function constant( x ) { return function () { return x; }; }
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Integration tests for actions and state of the preview part of the system.
|
|
|
|
* Follows a diagram of the interactions considered valid, which will be
|
|
|
|
* used as a basis for the following tests:
|
|
|
|
*
|
|
|
|
|
|
|
|
+--------+
|
|
|
|
|INACTIVE+-----------------------+
|
|
|
|
+---+----+ |
|
|
|
|
^ |
|
|
|
|
| link or preview |
|
|
|
|
| abandon end |
|
|
|
|
| link_dwell|
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
| |
|
|
|
|
+---|----------------------------|---+
|
|
|
|
| | ACTIVE | |
|
|
|
|
+---|----------------------------|---+
|
|
|
|
| + v |
|
|
|
|
| OFF_LINK ON_LINK | Inside ACTIVE, or out
|
|
|
|
| + ^ link or preview | ^ | of it, only actions with
|
|
|
|
| | | abandon start | | | that same active link are
|
|
|
|
| | +----------------------+ | | valid. Others are ignored.
|
|
|
|
| | | |
|
|
|
|
| +----------------------------+ |
|
|
|
|
| preview or same link dwell |
|
|
|
|
| |
|
|
|
|
| NO_DATA +-------> DATA |
|
|
|
|
| fetch end |
|
|
|
|
+------------------------------------+
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
QUnit.module( 'ext.popups preview @integration', {
|
2017-04-25 15:10:11 +00:00
|
|
|
beforeEach: function () {
|
2017-03-26 21:05:32 +00:00
|
|
|
// The worst-case implementation of mw.now.
|
|
|
|
mw.now = function () { return Date.now(); };
|
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
this.resetWait = () => {
|
|
|
|
this.waitDeferred = $.Deferred();
|
|
|
|
this.waitPromise = this.waitDeferred.promise();
|
|
|
|
this.wait.returns( this.waitPromise );
|
2017-02-27 16:10:50 +00:00
|
|
|
};
|
|
|
|
|
2017-07-28 17:32:46 +00:00
|
|
|
this.wait = this.sandbox.stub( WaitModule, 'default' );
|
2017-02-27 16:10:50 +00:00
|
|
|
this.resetWait();
|
|
|
|
|
|
|
|
this.store = Redux.createStore(
|
|
|
|
Redux.combineReducers( reducers ),
|
|
|
|
Redux.compose( Redux.applyMiddleware( ReduxThunk.default ) )
|
|
|
|
);
|
|
|
|
|
|
|
|
this.actions = Redux.bindActionCreators(
|
|
|
|
actions,
|
|
|
|
this.store.dispatch
|
|
|
|
);
|
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
this.registerChangeListener = ( fn ) => {
|
|
|
|
return registerChangeListener( this.store, fn );
|
2017-02-27 16:10:50 +00:00
|
|
|
};
|
|
|
|
|
2017-06-08 15:23:44 +00:00
|
|
|
this.title = stubs.createStubTitle( 1, 'Foo' );
|
2017-05-09 18:41:23 +00:00
|
|
|
|
2017-06-08 15:23:44 +00:00
|
|
|
this.el = $( '<a href="/wiki/Foo">' );
|
2017-05-09 18:41:23 +00:00
|
|
|
|
2017-02-27 16:10:50 +00:00
|
|
|
this.actions.boot(
|
|
|
|
/* isEnabled: */
|
|
|
|
constant( true ),
|
|
|
|
/* user */
|
|
|
|
{ sessionId: constant( 'sessiontoken' ),
|
|
|
|
isAnon: constant( true ) },
|
|
|
|
/* userSettings: */
|
|
|
|
{ getPreviewCount: constant( 1 ) },
|
|
|
|
/* generateToken: */
|
|
|
|
constant( 'pagetoken' ),
|
|
|
|
/* config: */
|
|
|
|
{ get: identity }
|
|
|
|
);
|
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
this.dwell = (
|
2018-01-18 18:48:16 +00:00
|
|
|
title, el, ev, fetchResponse, resolution = FETCH_RESOLUTION.RESOLVE
|
2018-02-16 12:52:56 +00:00
|
|
|
) => {
|
|
|
|
this.resetWait();
|
|
|
|
return this.actions.linkDwell( title, el, ev, {
|
2017-02-27 16:10:50 +00:00
|
|
|
getPageSummary: function () {
|
2018-01-18 18:48:16 +00:00
|
|
|
var method = resolution === FETCH_RESOLUTION.RESOLVE ?
|
|
|
|
'resolve' : 'reject';
|
2018-01-11 15:44:26 +00:00
|
|
|
return $.Deferred()[ method ]( fetchResponse ).promise();
|
2017-02-27 16:10:50 +00:00
|
|
|
}
|
|
|
|
}, function () { return 'pagetoken'; } );
|
|
|
|
};
|
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
this.dwellAndShowPreview = (
|
2018-01-18 18:48:16 +00:00
|
|
|
title, el, ev, fetchResponse, reject = FETCH_RESOLUTION.RESOLVE
|
2018-02-16 12:52:56 +00:00
|
|
|
) => {
|
|
|
|
var dwelled = this.dwell( title, el, ev, fetchResponse, reject );
|
|
|
|
// Resolve the wait timeout for the linkDwell and the fetch action
|
|
|
|
this.waitDeferred.resolve();
|
|
|
|
return dwelled;
|
2017-02-27 16:10:50 +00:00
|
|
|
};
|
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
this.abandon = () => {
|
|
|
|
this.resetWait();
|
|
|
|
return this.actions.abandon();
|
2017-02-27 16:10:50 +00:00
|
|
|
};
|
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
this.abandonAndWait = () => {
|
|
|
|
var abandoned = this.abandon();
|
|
|
|
this.waitDeferred.resolve();
|
|
|
|
return abandoned;
|
2017-02-27 16:10:50 +00:00
|
|
|
};
|
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
this.dwellAndPreviewDwell = ( title, el, ev, res ) => {
|
|
|
|
return this.dwellAndShowPreview( title, el, ev, res ).then( () => {
|
2017-02-27 16:10:50 +00:00
|
|
|
|
|
|
|
// Get out of the link, and before the delay ends...
|
2018-02-16 12:52:56 +00:00
|
|
|
var abandonPromise = this.abandon(),
|
|
|
|
abandonWaitDeferred = this.waitDeferred;
|
2017-02-27 16:10:50 +00:00
|
|
|
|
|
|
|
// Dwell over the preview
|
2018-02-16 12:52:56 +00:00
|
|
|
this.actions.previewDwell( el );
|
2017-02-27 16:10:50 +00:00
|
|
|
|
|
|
|
// Then the abandon delay finishes
|
2018-02-16 12:52:56 +00:00
|
|
|
abandonWaitDeferred.resolve();
|
2017-02-27 16:10:50 +00:00
|
|
|
|
|
|
|
return abandonPromise;
|
|
|
|
} );
|
|
|
|
};
|
|
|
|
}
|
|
|
|
} );
|
|
|
|
|
|
|
|
QUnit.test( 'it boots in INACTIVE state', function ( assert ) {
|
|
|
|
var state = this.store.getState();
|
|
|
|
|
|
|
|
assert.equal( state.preview.activeLink, undefined );
|
|
|
|
assert.equal( state.preview.linkInteractionToken, undefined );
|
|
|
|
} );
|
|
|
|
|
|
|
|
QUnit.test( 'in INACTIVE state, a link dwell switches it to ACTIVE', function ( assert ) {
|
|
|
|
var state,
|
|
|
|
gateway = {
|
|
|
|
getPageSummary: function () {
|
|
|
|
$.Deferred().promise();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
this.actions.linkDwell(
|
2017-06-08 15:23:44 +00:00
|
|
|
this.title, this.el, 'event',
|
2017-02-27 16:10:50 +00:00
|
|
|
gateway,
|
|
|
|
constant( 'pagetoken' )
|
|
|
|
);
|
|
|
|
state = this.store.getState();
|
2017-05-09 18:41:23 +00:00
|
|
|
assert.equal( state.preview.activeLink, this.el, 'It has an active link' );
|
2017-02-27 16:10:50 +00:00
|
|
|
assert.equal( state.preview.shouldShow, false, 'Initializes with NO_DATA' );
|
|
|
|
} );
|
|
|
|
|
|
|
|
QUnit.test( 'in ACTIVE state, fetch end switches it to DATA', function ( assert ) {
|
|
|
|
var store = this.store,
|
2017-05-09 18:41:23 +00:00
|
|
|
el = this.el;
|
|
|
|
|
2018-01-18 18:48:16 +00:00
|
|
|
return this.dwellAndShowPreview( this.title, el, 'event', 42 )
|
|
|
|
.then( function () {
|
|
|
|
var state = store.getState();
|
|
|
|
assert.equal( state.preview.activeLink, el );
|
|
|
|
assert.equal(
|
|
|
|
state.preview.shouldShow, true,
|
|
|
|
'Should show when data has been fetched' );
|
|
|
|
} );
|
2017-02-27 16:10:50 +00:00
|
|
|
} );
|
|
|
|
|
2018-01-11 15:44:26 +00:00
|
|
|
QUnit.test( 'in ACTIVE state, fetch fail switches it to DATA', function ( assert ) {
|
|
|
|
var store = this.store,
|
|
|
|
el = this.el;
|
|
|
|
|
2018-01-18 18:48:16 +00:00
|
|
|
return this.dwellAndShowPreview(
|
|
|
|
this.title, el, 'event', 42, FETCH_RESOLUTION.REJECT
|
|
|
|
).then( function () {
|
2018-01-11 15:44:26 +00:00
|
|
|
var state = store.getState();
|
|
|
|
assert.equal( state.preview.activeLink, el );
|
2018-01-18 18:48:16 +00:00
|
|
|
assert.equal( state.preview.shouldShow, true,
|
|
|
|
'Should show when data couldn\'t be fetched' );
|
2018-01-11 15:44:26 +00:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
2017-02-27 16:10:50 +00:00
|
|
|
QUnit.test( 'in ACTIVE state, abandon start, and then end, switch it to INACTIVE', function ( assert ) {
|
2018-02-16 12:52:56 +00:00
|
|
|
var el = this.el;
|
2017-05-09 18:41:23 +00:00
|
|
|
|
2018-01-18 18:48:16 +00:00
|
|
|
return this.dwellAndShowPreview( this.title, el, 'event', 42 )
|
2018-02-16 12:52:56 +00:00
|
|
|
.then( () => {
|
|
|
|
return this.abandonAndWait( el );
|
|
|
|
} ).then( () => {
|
|
|
|
var state = this.store.getState();
|
2018-01-18 18:48:16 +00:00
|
|
|
assert.equal( state.preview.activeLink, undefined,
|
|
|
|
'After abandoning, preview is back to INACTIVE' );
|
|
|
|
} );
|
2017-02-27 16:10:50 +00:00
|
|
|
} );
|
|
|
|
|
|
|
|
QUnit.test( 'in ACTIVE state, abandon link, and then dwell preview, should keep it active after all delays', function ( assert ) {
|
2018-02-16 12:52:56 +00:00
|
|
|
var el = this.el;
|
2017-05-09 18:41:23 +00:00
|
|
|
|
2017-08-16 18:27:35 +00:00
|
|
|
return this.dwellAndPreviewDwell( this.title, el, 'event', 42 )
|
2018-02-16 12:52:56 +00:00
|
|
|
.then( () => {
|
|
|
|
var state = this.store.getState();
|
2017-05-09 18:41:23 +00:00
|
|
|
assert.equal( state.preview.activeLink, el );
|
2017-02-27 16:10:50 +00:00
|
|
|
} );
|
|
|
|
} );
|
|
|
|
|
|
|
|
QUnit.test( 'in ACTIVE state, abandon link, hover preview, back to link, should keep it active after all delays', function ( assert ) {
|
2018-02-16 12:52:56 +00:00
|
|
|
var el = this.el;
|
2017-02-27 16:10:50 +00:00
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
// Dwell link, abandon it & hover preview
|
2017-08-16 18:27:35 +00:00
|
|
|
return this.dwellAndPreviewDwell( this.title, el, 'event', 42 )
|
2018-02-16 12:52:56 +00:00
|
|
|
.then( () => {
|
|
|
|
var abandonedPreview, abandonWaitDeferred, dwelled, dwellWaitDeferred;
|
2017-02-27 16:10:50 +00:00
|
|
|
|
|
|
|
// Start abandoning the preview
|
2018-02-16 12:52:56 +00:00
|
|
|
abandonedPreview = this.abandon();
|
|
|
|
abandonWaitDeferred = this.waitDeferred;
|
2017-02-27 16:10:50 +00:00
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
// Dwell back into the link, new event ('event2') is triggered
|
|
|
|
dwelled = this.dwell( this.title, el, 'event2', 42 );
|
|
|
|
dwellWaitDeferred = this.waitDeferred;
|
2017-02-27 16:10:50 +00:00
|
|
|
|
|
|
|
// Preview abandon happens next, before the fetch
|
2018-02-16 12:52:56 +00:00
|
|
|
abandonWaitDeferred.resolve();
|
2017-02-27 16:10:50 +00:00
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
// Then dwell wait & fetch happens
|
|
|
|
dwellWaitDeferred.resolve();
|
2017-02-27 16:10:50 +00:00
|
|
|
|
2018-02-16 12:52:56 +00:00
|
|
|
return $.when( abandonedPreview, dwelled );
|
2017-02-27 16:10:50 +00:00
|
|
|
} )
|
2018-02-16 12:52:56 +00:00
|
|
|
.then( () => {
|
|
|
|
var state = this.store.getState();
|
2017-05-09 18:41:23 +00:00
|
|
|
assert.equal( state.preview.activeLink, el );
|
2017-02-27 16:10:50 +00:00
|
|
|
} );
|
|
|
|
} );
|