mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/DiscussionTools
synced 2024-11-05 14:33:07 +00:00
c64bb6b5b7
Change-Id: Id7dabc535b6bb688602c0d55fc3696f662cb10c7
152 lines
4.2 KiB
JavaScript
152 lines
4.2 KiB
JavaScript
/* global moment */
|
|
var
|
|
testUtils = require( './testUtils.js' ),
|
|
parser = require( 'ext.discussionTools.init' ).parser;
|
|
|
|
QUnit.module( 'mw.dt.parser', testUtils.newEnvironment() );
|
|
|
|
QUnit.test( '#getTimestampRegexp', function ( assert ) {
|
|
var cases = require( '../cases/timestamp-regex.json' );
|
|
|
|
testUtils.overrideParserData( require( '../data-en.json' ) );
|
|
|
|
cases.forEach( function ( caseItem ) {
|
|
assert.strictEqual(
|
|
parser.getTimestampRegexp( caseItem.format, '\\d', { UTC: 'UTC' } ),
|
|
caseItem.expected,
|
|
caseItem.message
|
|
);
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( '#getTimestampParser', function ( assert ) {
|
|
var cases = require( '../cases/timestamp-parser.json' );
|
|
|
|
testUtils.overrideParserData( require( '../data-en.json' ) );
|
|
|
|
cases.forEach( function ( caseItem ) {
|
|
var tsParser = parser.getTimestampParser( caseItem.format, null, 'UTC', { UTC: 'UTC' } ),
|
|
expectedDate = moment( caseItem.expected );
|
|
|
|
assert.ok(
|
|
tsParser( caseItem.data ).isSame( expectedDate ),
|
|
caseItem.message
|
|
);
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( '#getTimestampParser (at DST change)', function ( assert ) {
|
|
var cases = require( '../cases/timestamp-parser-dst.json' );
|
|
|
|
testUtils.overrideParserData( require( '../data-en.json' ) );
|
|
|
|
cases.forEach( function ( caseItem ) {
|
|
var regexp = parser.getTimestampRegexp( caseItem.format, '\\d', caseItem.timezoneAbbrs ),
|
|
tsParser = parser.getTimestampParser( caseItem.format, null, caseItem.timezone, caseItem.timezoneAbbrs ),
|
|
date = tsParser( caseItem.sample.match( regexp ) );
|
|
|
|
assert.ok(
|
|
date.isSame( caseItem.expected ),
|
|
caseItem.message
|
|
);
|
|
assert.ok(
|
|
date.isSame( caseItem.expectedUtc ),
|
|
caseItem.message
|
|
);
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( '#getComments/#groupThreads', function ( assert ) {
|
|
var fixture,
|
|
cases = require( '../cases/comments.json' );
|
|
|
|
fixture = document.getElementById( 'qunit-fixture' );
|
|
|
|
cases.forEach( function ( caseItem ) {
|
|
var comments, threads,
|
|
$dom = mw.template.get( 'test.DiscussionTools', caseItem.dom ).render(),
|
|
expected = require( caseItem.expected ),
|
|
config = require( caseItem.config ),
|
|
data = require( caseItem.data );
|
|
|
|
// Remove all but the body tags from full Parsoid docs
|
|
if ( $dom.filter( 'section' ).length ) {
|
|
$dom = $( '<div>' )
|
|
.append( $dom.filter( 'section' ) )
|
|
.append( $dom.filter( 'base' ) );
|
|
}
|
|
|
|
$( fixture ).empty().append( $dom );
|
|
testUtils.overrideMwConfig( config );
|
|
testUtils.overrideParserData( data );
|
|
|
|
comments = parser.getComments( fixture );
|
|
threads = parser.groupThreads( comments );
|
|
|
|
threads.forEach( function ( thread, i ) {
|
|
testUtils.serializeComments( thread, fixture );
|
|
|
|
assert.deepEqual(
|
|
JSON.parse( JSON.stringify( thread ) ),
|
|
expected[ i ],
|
|
caseItem.name + ' section ' + i
|
|
);
|
|
} );
|
|
|
|
// Uncomment this to get updated content for the JSON files, for copy/paste:
|
|
// console.log( JSON.stringify( threads, null, 2 ) );
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( '#getTranscludedFrom', function ( assert ) {
|
|
var fixture,
|
|
cases = require( '../cases/transcluded.json' );
|
|
|
|
fixture = document.getElementById( 'qunit-fixture' );
|
|
|
|
cases.forEach( function ( caseItem ) {
|
|
var comments, transcludedFrom,
|
|
$dom = mw.template.get( 'test.DiscussionTools', caseItem.dom ).render(),
|
|
expected = require( caseItem.expected ),
|
|
config = require( caseItem.config ),
|
|
data = require( caseItem.data );
|
|
|
|
$( fixture ).empty().append( $dom );
|
|
mw.libs.ve.unwrapParsoidSections( fixture );
|
|
|
|
testUtils.overrideMwConfig( config );
|
|
testUtils.overrideParserData( data );
|
|
|
|
comments = parser.getComments( fixture );
|
|
parser.groupThreads( comments );
|
|
|
|
transcludedFrom = {};
|
|
comments.forEach( function ( comment ) {
|
|
if ( comment.id ) {
|
|
transcludedFrom[ comment.id ] = parser.getTranscludedFrom( comment );
|
|
}
|
|
} );
|
|
|
|
assert.deepEqual(
|
|
transcludedFrom,
|
|
expected,
|
|
caseItem.name
|
|
);
|
|
|
|
// Uncomment this to get updated content for the JSON files, for copy/paste:
|
|
// console.log( JSON.stringify( transcludedFrom, null, 2 ) );
|
|
} );
|
|
} );
|
|
|
|
QUnit.test( '#getAuthors', function ( assert ) {
|
|
var cases = require( '../cases/authors.json' );
|
|
|
|
cases.forEach( function ( caseItem ) {
|
|
var authors = parser.getAuthors( caseItem.thread );
|
|
assert.deepEqual(
|
|
authors,
|
|
caseItem.expected
|
|
);
|
|
} );
|
|
} );
|