mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Echo
synced 2024-11-15 11:59:11 +00:00
46484e8b53
* Declare variables inline, as per the current code conventions. * Convert ad-hoc cases objects into native QUnit.test.each(). This makes for shorter and cleaner code, as well as for more detailed test reporting, and removes the need to manually construct assertion messages based on test case prefix string etc. * Start adopting ES5 Array.forEach in a few places where otherwise ESLint would complain about variable name clashes. * Future proof the test module names, by stripping the global variable namespace that some classes still use, matching packageFiles convention as used for NotificationBadge.js and its tests already, by specifying only the bundle name and the exported class name. Note that the QUnit UI does fuzzy matching so filtering works the same either way, e.g. "echodmfilter" will match "ext.echo.dm - FilterModel". Change-Id: I49858dd2c95d0869f2cd15693f05c38312a9f710
171 lines
3 KiB
JavaScript
171 lines
3 KiB
JavaScript
QUnit.module( 'ext.echo.dm - SourcePagesModel', function () {
|
|
// Mock partial API response we feed into the model
|
|
var sources = {
|
|
local: {
|
|
pages: [
|
|
{
|
|
ns: 2,
|
|
title: 'User:Admin',
|
|
unprefixed: 'Admin',
|
|
pages: [
|
|
'User:Admin',
|
|
'User talk:Admin',
|
|
null
|
|
],
|
|
count: 24
|
|
},
|
|
{
|
|
ns: 2,
|
|
title: 'User:RandomUser',
|
|
unprefixed: 'RandomUser',
|
|
pages: [
|
|
'User:RandomUser',
|
|
'User talk:RandomUser'
|
|
],
|
|
count: 6
|
|
},
|
|
{
|
|
ns: 0,
|
|
title: 'Moai',
|
|
unprefixed: 'Moai',
|
|
pages: [
|
|
'Moai',
|
|
'Talk:Moai'
|
|
],
|
|
count: 3
|
|
}
|
|
],
|
|
totalCount: 33,
|
|
source: {
|
|
title: 'LocalWiki',
|
|
url: 'http://dev.wiki.local.wmftest.net:8080/w/api.php',
|
|
base: 'http://dev.wiki.local.wmftest.net:8080/wiki/$1'
|
|
}
|
|
},
|
|
hewiki: {
|
|
pages: [
|
|
{
|
|
ns: 2,
|
|
title: 'Foo',
|
|
unprefixed: 'Foo',
|
|
pages: [
|
|
'Foo',
|
|
'Talk:Foo',
|
|
null
|
|
],
|
|
count: 10
|
|
},
|
|
{
|
|
ns: 0,
|
|
title: 'User:Bar',
|
|
unprefixed: 'Bar',
|
|
pages: [
|
|
'User:Bar',
|
|
'User talk:Bar'
|
|
],
|
|
count: 5
|
|
}
|
|
],
|
|
totalCount: 15,
|
|
source: {
|
|
title: 'Hebrew Wikipedia',
|
|
url: 'http://he.wiki.local.wmftest.net:8080/w/api.php',
|
|
base: 'http://he.wiki.local.wmftest.net:8080/wiki/$1'
|
|
}
|
|
}
|
|
};
|
|
|
|
QUnit.test( 'Creating source-page map', function ( assert ) {
|
|
var model = new mw.echo.dm.SourcePagesModel();
|
|
|
|
model.setAllSources( sources );
|
|
|
|
assert.strictEqual(
|
|
model.getCurrentSource(),
|
|
'local',
|
|
'Default source is local'
|
|
);
|
|
assert.strictEqual(
|
|
model.getCurrentPage(),
|
|
null,
|
|
'Default page is null'
|
|
);
|
|
assert.deepEqual(
|
|
model.getSourcesArray(),
|
|
[ 'local', 'hewiki' ],
|
|
'Source array includes all sources'
|
|
);
|
|
assert.strictEqual(
|
|
model.getSourceTitle( 'hewiki' ),
|
|
'Hebrew Wikipedia',
|
|
'Source title'
|
|
);
|
|
assert.strictEqual(
|
|
model.getSourceTotalCount( 'hewiki' ),
|
|
15,
|
|
'Source total count'
|
|
);
|
|
assert.deepEqual(
|
|
model.getSourcePages( 'local' ),
|
|
{
|
|
Moai: {
|
|
count: 3,
|
|
ns: 0,
|
|
pages: [
|
|
'Moai',
|
|
'Talk:Moai'
|
|
],
|
|
title: 'Moai',
|
|
unprefixed: 'Moai'
|
|
},
|
|
'User:Admin': {
|
|
count: 24,
|
|
ns: 2,
|
|
pages: [
|
|
'User:Admin',
|
|
'User talk:Admin',
|
|
null
|
|
],
|
|
title: 'User:Admin',
|
|
unprefixed: 'Admin'
|
|
},
|
|
'User:RandomUser': {
|
|
count: 6,
|
|
ns: 2,
|
|
pages: [
|
|
'User:RandomUser',
|
|
'User talk:RandomUser'
|
|
],
|
|
title: 'User:RandomUser',
|
|
unprefixed: 'RandomUser'
|
|
}
|
|
},
|
|
'Outputting source pages'
|
|
);
|
|
assert.deepEqual(
|
|
model.getGroupedPagesForTitle( 'local', 'User:Admin' ),
|
|
[
|
|
'User:Admin',
|
|
'User talk:Admin',
|
|
null
|
|
],
|
|
'Grouped pages per title'
|
|
);
|
|
|
|
// Change source
|
|
model.setCurrentSourcePage( 'hewiki', 'User:Bar' );
|
|
|
|
assert.strictEqual(
|
|
model.getCurrentSource(),
|
|
'hewiki',
|
|
'Source changed successfully'
|
|
);
|
|
assert.strictEqual(
|
|
model.getCurrentPage(),
|
|
'User:Bar',
|
|
'Page changed successfully'
|
|
);
|
|
|
|
} );
|
|
} );
|