mediawiki-extensions-Popups/tests/node-qunit/reducers/pageviews.test.js
jdlrobson a702c0f499 Capture page view-like interactions
* New action added PREVIEW_SEEN
* The action will be used to signal that a page view needs
to be recorded.
* PREVIEW_SEEN is a delayed action which is triggered
as a side-effect of the previewShow action. It is only dispatched
if the user is still previewing the same card and the page
related to the card has preview type `page`
* The pageview changelistener is added when
$wgPopupsVirtualPageViews is set to true.
* The page view changelistener listens for page views and logs
them using EventLogging when needed using
https://meta.wikimedia.org/wiki/Schema:VirtualPageView

Note:
* Currently if a user has enabled the DNT header, the
event will not be logged. There is ongoing discussion on the
ticket and fixing this will be addressed separately.
* Only title and referrer are logged in the initial version.
The task demands that "namespace" is logged but this information
is not provided by the summary endpoints we use so will need
to be added later (if indeed needed) either via a change to that
endpoint of by using JavaScript to parse the URL.

Bug: T184793
Change-Id: Id1fe34e4bdada3a41f0d888a753af366d4756590
2018-02-16 23:03:33 +00:00

49 lines
867 B
JavaScript

import pageviews from '../../../src/reducers/pageviews';
var PAGE_VIEW = {
title: 'Bears',
namespace: 0
};
QUnit.module( 'ext.popups/reducers#pageviews', {
beforeEach: function () {
this.initialState = pageviews( undefined, {
type: '@@INIT'
} );
}
} );
QUnit.test( 'PREVIEW_SEEN', function ( assert ) {
var action = {
type: 'PREVIEW_SEEN',
title: 'Bears',
namespace: 0
};
assert.expect( 1 );
assert.deepEqual(
pageviews( this.initialState, action ),
{
pageview: PAGE_VIEW
},
'It should set a flag requesting a page view is recorded.'
);
} );
QUnit.test( 'PAGEVIEW_LOGGED', function ( assert ) {
var action = {
type: 'PAGEVIEW_LOGGED'
};
assert.expect( 1 );
assert.deepEqual(
pageviews( { pageview: PAGE_VIEW }, action ),
{
pageview: undefined
},
'When complete it should remove the pageview record.'
);
} );