mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-27 09:43:30 +00:00
dda9227947
Change-Id: I4474bd0205e7a1ed8e60147e52675e3e0b93ccd9
45 lines
1.1 KiB
JavaScript
45 lines
1.1 KiB
JavaScript
const
|
|
CommentItem = require( 'ext.discussionTools.init' ).CommentItem,
|
|
HeadingItem = require( 'ext.discussionTools.init' ).HeadingItem;
|
|
|
|
QUnit.module( 'mw.dt.ThreadItem', QUnit.newMwEnvironment() );
|
|
|
|
QUnit.test( '#getAuthorsBelow/#getThreadItemsBelow', ( assert ) => {
|
|
const cases = require( '../cases/authors.json' );
|
|
|
|
function newFromJSON( json ) {
|
|
let item;
|
|
if ( json.type === 'heading' ) {
|
|
item = new HeadingItem();
|
|
} else {
|
|
item = new CommentItem();
|
|
item.author = json.author;
|
|
item.displayName = json.displayName;
|
|
}
|
|
item.id = json.id;
|
|
item.replies = json.replies.map( newFromJSON );
|
|
return item;
|
|
}
|
|
|
|
cases.forEach( ( caseItem ) => {
|
|
const threadItem = newFromJSON( caseItem.thread ),
|
|
authors = threadItem.getAuthorsBelow();
|
|
|
|
assert.deepEqual(
|
|
authors,
|
|
caseItem.expectedAuthorsBelow,
|
|
'getAuthorsBelow'
|
|
);
|
|
|
|
assert.deepEqual(
|
|
threadItem.getThreadItemsBelow().map( ( item ) => item.id ),
|
|
caseItem.expectedThreadItemIdsBelow
|
|
);
|
|
} );
|
|
} );
|
|
|
|
// TODO:
|
|
// * getHeading (CommentItem+HeadingItem)
|
|
// * getLinkableTitle (HeadingItem)
|
|
// * newFromJSON (ThreadItem)
|