summaryrefslogtreecommitdiff
path: root/tests/qunit/suites/resources/mediawiki/mediawiki.template.test.js
blob: 86fd828a9a7d205bb0e8e28f38541687ace209f9 (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
( function ( mw ) {

	QUnit.module( 'mediawiki.template', {
		setup: function () {
			var abcCompiler = {
				compile: function () {
					return 'abc default compiler';
				}
			};

			// Register some template compiler languages
			mw.template.registerCompiler( 'abc', abcCompiler );
			mw.template.registerCompiler( 'xyz', {
				compile: function () {
					return 'xyz compiler';
				}
			} );

			// Stub register some templates
			this.sandbox.stub( mw.templates, 'get' ).returns( {
				'test_templates_foo.xyz': 'goodbye',
				'test_templates_foo.abc': 'thankyou'
			} );
		}
	} );

	QUnit.test( 'add', 1, function ( assert ) {
		assert.throws(
			function () {
				mw.template.add( 'module', 'test_templates_foo', 'hello' );
			},
			'When no prefix throw exception'
		);
	} );

	QUnit.test( 'compile', 1, function ( assert ) {
		assert.throws(
			function () {
				mw.template.compile( '{{foo}}', 'rainbow' );
			},
			'Unknown compiler names throw exceptions'
		);
	} );

	QUnit.test( 'get', 4, function ( assert ) {
		assert.strictEqual( mw.template.get( 'test.mediawiki.template', 'test_templates_foo.xyz' ), 'xyz compiler' );
		assert.strictEqual( mw.template.get( 'test.mediawiki.template', 'test_templates_foo.abc' ), 'abc default compiler' );
		assert.throws(
			function () {
				mw.template.get( 'this.should.not.exist', 'hello' );
			},
			'When bad module name given throw error.'
		);

		assert.throws(
			function () {
				mw.template.get( 'mediawiki.template', 'hello' );
			},
			'The template hello should not exist in the mediawiki.templates module and should throw an exception.'
		);
	} );

}( mediaWiki ) );