1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
|
/*!
* Tests for ext.translate.special.pagemigration.js.
*
* @license GPL-2.0-or-later
*/
( function () {
'use strict';
QUnit.module( 'ext.translate.special.pagemigration', QUnit.newMwEnvironment( {
setup: function () {
this.server = this.sandbox.useFakeServer();
}
} ) );
QUnit.test( '-- Source units', function ( assert ) {
var done, data = '{ "query": { "messagecollection": [ { "key": "key_",' +
' "definition": "definition_", "title": "title_" }, { "key": "key_1",' +
' "definition": "definition_1", "title": "title_1" } ] } }';
done = assert.async();
mw.translate.getSourceUnits( 'Help:Special pages' ).done( function ( sourceUnits ) {
assert.strictEqual( sourceUnits.length, 2, 'Source units retrieved' );
done();
} );
this.server.respond( function ( request ) {
request.respond( 200, { 'Content-Type': 'application/json' }, data );
} );
} );
QUnit.test( '-- Page does not exist', function ( assert ) {
var done, data = '{ "query": { "pages": { "-1": { "missing": "" } } } }';
done = assert.async();
mw.translate.getFuzzyTimestamp( 'ugagagagagaga/uga' ).fail( function ( timestamp ) {
assert.strictEqual( timestamp, undefined, 'Page does not exist' );
done();
} );
this.server.respond( function ( request ) {
request.respond( 200, { 'Content-Type': 'application/json' }, data );
} );
} );
QUnit.test( '-- Fuzzy timestamp', function ( assert ) {
var done, data = '{ "query": { "pages": { "19563": {"revisions": ' +
'[ {"timestamp": "2014-02-18T20:59:58Z" }, { "timestamp": "t2" } ] } } } }';
done = assert.async();
mw.translate.getFuzzyTimestamp( 'Help:Special pages/fr' ).done( function ( timestamp ) {
assert.strictEqual( timestamp, '2014-02-18T20:59:57.000Z', 'Fuzzy timestamp retrieved' );
done();
} );
this.server.respond( function ( request ) {
request.respond( 200, { 'Content-Type': 'application/json' }, data );
} );
} );
QUnit.test( '-- Split translation page', function ( assert ) {
var done, data = '{ "query": { "pages": { "19563": { "revisions": ' +
'[ { "*": "unit1\\n\\nunit2\\n\\nunit3" } ] } } } }';
done = assert.async();
mw.translate.splitTranslationPage( '2014-02-18T20:59:57.000Z', 'Help:Special pages/fr' )
.done( function ( translationUnits ) {
assert.strictEqual( translationUnits.length, 3, 'Translation page split into units' );
done();
} );
this.server.respond( function ( request ) {
request.respond( 200, { 'Content-Type': 'application/json' }, data );
} );
} );
QUnit.test( '-- Align h2 headers', function ( assert ) {
var sourceUnits, translationUnits1, result1,
translationUnits2, result2;
sourceUnits = [ { identifier: '1', definition: 'abc' }, { identifier: '2', definition: '==123==' },
{ identifier: '3', definition: 'pqr' }, { identifier: '4', definition: 'xyz' },
{ identifier: '5', definition: 'mno' }, { identifier: '6', definition: '==456==' } ];
translationUnits1 = [ '==123==', 'pqr', '==456==' ];
translationUnits2 = [ 'abc', 'lmn', '==123==', 'pqr', '==456==' ];
result1 = [ '', '==123==', 'pqr', '', '', '==456==' ];
result2 = [ 'abc\nlmn\n', '==123==', 'pqr', '', '', '==456==' ];
translationUnits1 = mw.translate.alignHeaders( sourceUnits, translationUnits1 );
assert.deepEqual( result1, translationUnits1, 'h2 headers aligned without merging' );
translationUnits2 = mw.translate.alignHeaders( sourceUnits, translationUnits2 );
assert.deepEqual( result2, translationUnits2, 'h2 headers aligned with merging' );
} );
}() );
|