summaryrefslogtreecommitdiff
path: root/tests/jasmine/spec/mediawiki.jqueryMsg.spec.js
blob: 46dcaa8032f93c05a41f18956dbd125cb5c2bcd5 (plain)
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
/* spec for language & message behaviour in MediaWiki */

mw.messages.set( {
	"en_empty": "",
	"en_simple": "Simple message",
	"en_replace": "Simple $1 replacement",
	"en_replace2": "Simple $1 $2 replacements",
	"en_link": "Simple [http://example.com link to example].",
	"en_link_replace": "Complex [$1 $2] behaviour.",
	"en_simple_magic": "Simple {{ALOHOMORA}} message",
	"en_undelete_short": "Undelete {{PLURAL:$1|one edit|$1 edits}}",
	"en_undelete_empty_param": "Undelete{{PLURAL:$1|| multiple edits}}",
	"en_category-subcat-count": "{{PLURAL:$2|This category has only the following subcategory.|This category has the following {{PLURAL:$1|subcategory|$1 subcategories}}, out of $2 total.}}",
	"en_escape0": "Escape \\to fantasy island",
	"en_escape1": "I had \\$2.50 in my pocket",
	"en_escape2": "I had {{PLURAL:$1|the absolute \\|$1\\| which came out to \\$3.00 in my C:\\\\drive| some stuff}}",
	"en_fail": "This should fail to {{parse",
	"en_fail_magic": "There is no such magic word as {{SIETNAME}}",
	"en_evil": "This has <script type='text/javascript'>window.en_evil = true;</script> tags"
} );

/**
 * Tests
 */
( function( mw, $, undefined ) {

	describe( "mediaWiki.jqueryMsg", function() {
		
		describe( "basic message functionality", function() {

			it( "should return identity for empty string", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( parser.parse( 'en_empty' ).html() ).toEqual( '' );
			} );


			it( "should return identity for simple string", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( parser.parse( 'en_simple' ).html() ).toEqual( 'Simple message' );
			} );

		} );

		describe( "escaping", function() {

			it ( "should handle simple escaping", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( parser.parse( 'en_escape0' ).html() ).toEqual( 'Escape to fantasy island' );
			} );

			it ( "should escape dollar signs found in ordinary text when backslashed", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( parser.parse( 'en_escape1' ).html() ).toEqual( 'I had $2.50 in my pocket' );
			} );

			it ( "should handle a complicated escaping case, including escaped pipe chars in template args", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( parser.parse( 'en_escape2', [ 1 ] ).html() ).toEqual( 'I had the absolute |1| which came out to $3.00 in my C:\\drive' );
			} );

		} );

		describe( "replacing", function() {

			it ( "should handle simple replacing", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( parser.parse( 'en_replace', [ 'foo' ] ).html() ).toEqual( 'Simple foo replacement' );
			} );

			it ( "should return $n if replacement not there", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( parser.parse( 'en_replace', [] ).html() ).toEqual( 'Simple $1 replacement' );
				expect( parser.parse( 'en_replace2', [ 'bar' ] ).html() ).toEqual( 'Simple bar $2 replacements' );
			} );

		} );

		describe( "linking", function() {

			it ( "should handle a simple link", function() {
				var parser = new mw.jqueryMsg.parser();
				var parsed = parser.parse( 'en_link' );
				var contents = parsed.contents();
				expect( contents.length ).toEqual( 3 );
				expect( contents[0].nodeName ).toEqual( '#text' );
				expect( contents[0].nodeValue ).toEqual( 'Simple ' );
				expect( contents[1].nodeName ).toEqual( 'A' );
				expect( contents[1].getAttribute( 'href' ) ).toEqual( 'http://example.com' );
				expect( contents[1].childNodes[0].nodeValue ).toEqual( 'link to example' );
				expect( contents[2].nodeName ).toEqual( '#text' );
				expect( contents[2].nodeValue ).toEqual( '.' );
			} );

			it ( "should replace a URL into a link", function() {
				var parser = new mw.jqueryMsg.parser();
				var parsed = parser.parse( 'en_link_replace', [ 'http://example.com/foo', 'linking' ] );
				var contents = parsed.contents();
				expect( contents.length ).toEqual( 3 );
				expect( contents[0].nodeName ).toEqual( '#text' );
				expect( contents[0].nodeValue ).toEqual( 'Complex ' );
				expect( contents[1].nodeName ).toEqual( 'A' );
				expect( contents[1].getAttribute( 'href' ) ).toEqual( 'http://example.com/foo' );
				expect( contents[1].childNodes[0].nodeValue ).toEqual( 'linking' );
				expect( contents[2].nodeName ).toEqual( '#text' );
				expect( contents[2].nodeValue ).toEqual( ' behaviour.' );
			} );

			it ( "should bind a click handler into a link", function() {
				var parser = new mw.jqueryMsg.parser();
				var clicked = false;
				var click = function() { clicked = true; };
				var parsed = parser.parse( 'en_link_replace', [ click, 'linking' ] );
				var contents = parsed.contents();
				expect( contents.length ).toEqual( 3 );
				expect( contents[0].nodeName ).toEqual( '#text' );
				expect( contents[0].nodeValue ).toEqual( 'Complex ' );
				expect( contents[1].nodeName ).toEqual( 'A' );
				expect( contents[1].getAttribute( 'href' ) ).toEqual( '#' );
				expect( contents[1].childNodes[0].nodeValue ).toEqual( 'linking' );
				expect( contents[2].nodeName ).toEqual( '#text' );
				expect( contents[2].nodeValue ).toEqual( ' behaviour.' );
				// determining bindings is hard in IE
				var anchor = parsed.find( 'a' );
				if ( ( $.browser.mozilla || $.browser.webkit ) && anchor.click ) {
					expect( clicked ).toEqual( false );
					anchor.click(); 
					expect( clicked ).toEqual( true );
				}
			} );

			it ( "should wrap a jquery arg around link contents -- even another element", function() {
				var parser = new mw.jqueryMsg.parser();
				var clicked = false;
				var click = function() { clicked = true; };
				var button = $( '<button>' ).click( click );
				var parsed = parser.parse( 'en_link_replace', [ button, 'buttoning' ] );
				var contents = parsed.contents();
				expect( contents.length ).toEqual( 3 );
				expect( contents[0].nodeName ).toEqual( '#text' );
				expect( contents[0].nodeValue ).toEqual( 'Complex ' );
				expect( contents[1].nodeName ).toEqual( 'BUTTON' );
				expect( contents[1].childNodes[0].nodeValue ).toEqual( 'buttoning' );
				expect( contents[2].nodeName ).toEqual( '#text' );
				expect( contents[2].nodeValue ).toEqual( ' behaviour.' );
				// determining bindings is hard in IE
				if ( ( $.browser.mozilla || $.browser.webkit ) && button.click ) {
					expect( clicked ).toEqual( false );
					parsed.find( 'button' ).click();
					expect( clicked ).toEqual( true );
				}
			} );


		} );


		describe( "magic keywords", function() {
			it( "should substitute magic keywords", function() {
				var options = {
					magic: { 
						'alohomora' : 'open'
					}
				};
				var parser = new mw.jqueryMsg.parser( options );
				expect( parser.parse( 'en_simple_magic' ).html() ).toEqual( 'Simple open message' );
			} );
		} );
		
		describe( "error conditions", function() {
			it( "should return non-existent key in square brackets", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( parser.parse( 'en_does_not_exist' ).html() ).toEqual( '[en_does_not_exist]' );
			} );


			it( "should fail to parse", function() {
				var parser = new mw.jqueryMsg.parser();
				expect( function() { parser.parse( 'en_fail' ); } ).toThrow( 
					'Parse error at position 20 in input: This should fail to {{parse'
				);
			} );
		} );

		describe( "empty parameters", function() {
			it( "should deal with empty parameters", function() {
				var parser = new mw.jqueryMsg.parser();
				var ast = parser.getAst( 'en_undelete_empty_param' );
				expect( parser.parse( 'en_undelete_empty_param', [ 1 ] ).html() ).toEqual( 'Undelete' );
				expect( parser.parse( 'en_undelete_empty_param', [ 3 ] ).html() ).toEqual( 'Undelete multiple edits' );

			} );
		} );

		describe( "easy message interface functions", function() {
			it( "should allow a global that returns strings", function() {
				var gM = mw.jqueryMsg.getMessageFunction();
				// passing this through jQuery and back to string, because browsers may have subtle differences, like the case of tag names.
				// a surrounding <SPAN> is needed for html() to work right
				var expectedHtml = $( '<span>Complex <a href="http://example.com/foo">linking</a> behaviour.</span>' ).html();
				var result = gM( 'en_link_replace', 'http://example.com/foo', 'linking' );
				expect( typeof result ).toEqual( 'string' );
				expect( result ).toEqual( expectedHtml );
			} );

			it( "should allow a jQuery plugin that appends to nodes", function() {
				$.fn.msg = mw.jqueryMsg.getPlugin();
				var $div = $( '<div>' ).append( $( '<p>' ).addClass( 'foo' ) );
				var clicked = false;
				var $button = $( '<button>' ).click( function() { clicked = true; } );
				$div.find( '.foo' ).msg( 'en_link_replace', $button, 'buttoning' );
				// passing this through jQuery and back to string, because browsers may have subtle differences, like the case of tag names.
				// a surrounding <SPAN> is needed for html() to work right
				var expectedHtml = $( '<span>Complex <button>buttoning</button> behaviour.</span>' ).html();
				var createdHtml = $div.find( '.foo' ).html();
				// it is hard to test for clicks with IE; also it inserts or removes spaces around nodes when creating HTML tags, depending on their type.
				// so need to check the strings stripped of spaces.
				if ( ( $.browser.mozilla || $.browser.webkit ) && $button.click ) {
					expect( createdHtml ).toEqual( expectedHtml );
					$div.find( 'button ').click();
					expect( clicked ).toEqual( true );
				} else if ( $.browser.ie ) {
					expect( createdHtml.replace( /\s/, '' ) ).toEqual( expectedHtml.replace( /\s/, '' ) );
				}
				delete $.fn.msg;
			} );

			it( "jQuery plugin should escape incoming string arguments", function() {
				$.fn.msg = mw.jqueryMsg.getPlugin();
				var $div = $( '<div>' ).addClass( 'foo' );
				$div.msg( 'en_replace', '<p>x</p>' ); // looks like HTML, but as a string, should be escaped.
				// passing this through jQuery and back to string, because browsers may have subtle differences, like the case of tag names.
				var expectedHtml = $( '<div class="foo">Simple &lt;p&gt;x&lt;/p&gt; replacement</div>' ).html();
				var createdHtml = $div.html();
				expect( expectedHtml ).toEqual( createdHtml );
				delete $.fn.msg;
			} );


			it( "jQuery plugin should never execute scripts", function() {
				window.en_evil = false;
				$.fn.msg = mw.jqueryMsg.getPlugin();
				var $div = $( '<div>' );
				$div.msg( 'en_evil' );
				expect( window.en_evil ).toEqual( false );
				delete $.fn.msg;
			} );


			// n.b. this passes because jQuery already seems to strip scripts away; however, it still executes them if they are appended to any element.
			it( "jQuery plugin should never emit scripts", function() {
				$.fn.msg = mw.jqueryMsg.getPlugin();
				var $div = $( '<div>' );
				$div.msg( 'en_evil' );
				// passing this through jQuery and back to string, because browsers may have subtle differences, like the case of tag names.
				var expectedHtml = $( '<div>This has  tags</div>' ).html();
				var createdHtml = $div.html();
				expect( expectedHtml ).toEqual( createdHtml );
				console.log( 'expected: ' + expectedHtml );
				console.log( 'created: ' + createdHtml );
				delete $.fn.msg;
			} );



		} );

		// The parser functions can throw errors, but let's not actually blow up for the user -- instead dump the error into the interface so we have
		// a chance at fixing this
		describe( "easy message interface functions with graceful failures", function() {
			it( "should allow a global that returns strings, with graceful failure", function() {
				var gM = mw.jqueryMsg.getMessageFunction();
				// passing this through jQuery and back to string, because browsers may have subtle differences, like the case of tag names.
				// a surrounding <SPAN> is needed for html() to work right
				var expectedHtml = $( '<span>en_fail: Parse error at position 20 in input: This should fail to {{parse</span>' ).html();
				var result = gM( 'en_fail' );
				expect( typeof result ).toEqual( 'string' );
				expect( result ).toEqual( expectedHtml );
			} );

			it( "should allow a global that returns strings, with graceful failure on missing magic words", function() {
				var gM = mw.jqueryMsg.getMessageFunction();
				// passing this through jQuery and back to string, because browsers may have subtle differences, like the case of tag names.
				// a surrounding <SPAN> is needed for html() to work right
				var expectedHtml = $( '<span>en_fail_magic: unknown operation "sietname"</span>' ).html();
				var result = gM( 'en_fail_magic' );
				expect( typeof result ).toEqual( 'string' );
				expect( result ).toEqual( expectedHtml );
			} );


			it( "should allow a jQuery plugin, with graceful failure", function() {
				$.fn.msg = mw.jqueryMsg.getPlugin();
				var $div = $( '<div>' ).append( $( '<p>' ).addClass( 'foo' ) );
				$div.find( '.foo' ).msg( 'en_fail' );
				// passing this through jQuery and back to string, because browsers may have subtle differences, like the case of tag names.
				// a surrounding <SPAN> is needed for html() to work right
				var expectedHtml = $( '<span>en_fail: Parse error at position 20 in input: This should fail to {{parse</span>' ).html();
				var createdHtml = $div.find( '.foo' ).html();
				expect( createdHtml ).toEqual( expectedHtml );
				delete $.fn.msg;
			} );

		} );




		describe( "test plurals and other language-specific functions", function() {
			/* copying some language definitions in here -- it's hard to make this test fast and reliable 
			   otherwise, and we don't want to have to know the mediawiki URL from this kind of test either.
			   We also can't preload the langs for the test since they clobber the same namespace.
			   In principle Roan said it was okay to change how languages worked so that didn't happen... maybe 
			   someday. We'd have to the same kind of importing of the default rules for most rules, or maybe 
			   come up with some kind of subclassing scheme for languages */
			var languageClasses = {
				ar: {
					/**
					 * Arabic (العربية) language functions
					 */

					convertPlural: function( count, forms ) {
						forms = mw.language.preConvertPlural( forms, 6 );
						if ( count === 0 ) {
							return forms[0];
						}
						if ( count == 1 ) {
							return forms[1];
						}
						if ( count == 2 ) {
							return forms[2];
						}
						if ( count % 100 >= 3 && count % 100 <= 10 ) {
							return forms[3];
						}
						if ( count % 100 >= 11 && count % 100 <= 99 ) {
							return forms[4];
						}
						return forms[5];
					},

					digitTransformTable: {
					    '0': '٠', // &#x0660;
					    '1': '١', // &#x0661;
					    '2': '٢', // &#x0662;
					    '3': '٣', // &#x0663;
					    '4': '٤', // &#x0664;
					    '5': '٥', // &#x0665;
					    '6': '٦', // &#x0666;
					    '7': '٧', // &#x0667;
					    '8': '٨', // &#x0668;
					    '9': '٩', // &#x0669;
					    '.': '٫', // &#x066b; wrong table ?
					    ',': '٬' // &#x066c;
					}

				},
				en: { },
				fr: {
					convertPlural: function( count, forms ) {
						forms = mw.language.preConvertPlural( forms, 2 );
						return ( count <= 1 ) ? forms[0] : forms[1];
					}
				},
				jp: { },
				zh: { }
			};

			/* simulate how the language classes override, or don't, the standard functions in mw.language */
			$.each( languageClasses, function( langCode, rules ) { 
				$.each( [ 'convertPlural', 'convertNumber' ], function( i, propertyName ) { 
					if ( typeof rules[ propertyName ] === 'undefined' ) {
						rules[ propertyName ] = mw.language[ propertyName ];
					}
				} );
			} );

			$.each( jasmineMsgSpec, function( i, test ) { 
				it( "should parse " + test.name, function() { 
					// using language override so we don't have to muck with global namespace
					var parser = new mw.jqueryMsg.parser( { language: languageClasses[ test.lang ] } );
					var parsedHtml = parser.parse( test.key, test.args ).html();
					expect( parsedHtml ).toEqual( test.result );
				} );
			} );

		} );

	} );
} )( window.mediaWiki, jQuery );