summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/qunit/smw/data/ext.smw.dataItem.unknown.test.js
blob: 99a0fb0042bbb945477bf919ebb4b1295e96f0cd (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
/**
 * QUnit tests
 *
 * @since 1.9
 *
 * @file
 * @ingroup SMW
 *
 * @licence GNU GPL v2 or later
 * @author mwjames
 */
( function ( $, mw, smw ) {
	'use strict';

	QUnit.module( 'ext.smw.dataItem.unknown', QUnit.newMwEnvironment() );

	var pass = 'Passes because ';

	// Data provider
	var testCases = [
		{ test: [ '' ], expected: [ null, null ] } ,
		{ test: [ 'Foo', '_fooBar' ], expected: [ 'Foo', '_fooBar' ] }
	];

	/**
	 * Test accessibility
	 *
	 * @since: 1.9
	 */
	QUnit.test( 'instance', function ( assert ) {
		assert.expect( 1 );

		var result = new smw.dataItem.unknown( 'foo', '_bar' );
		assert.ok( result instanceof Object, pass + 'the smw.dataItem.unknown instance was accessible' );

	} );

	/**
	 * Test type
	 *
	 * @since: 1.9
	 */
	QUnit.test( 'getDIType', function ( assert ) {
		assert.expect( 1 );

		var result = new smw.dataItem.unknown( 'foo', '_bar' );
		assert.equal( result.getDIType(), '_bar', pass + 'returned "_bar"' );

	} );

	/**
	 * Test getValue
	 *
	 * @since: 1.9
	 */
	QUnit.test( 'getValue', function ( assert ) {
		assert.expect( 2 );

		var result;

		$.map( testCases, function ( testCase ) {
			result = new smw.dataItem.unknown( testCase.test[0], testCase.test[1] );
			assert.equal( result.getValue(), testCase.expected[0] , pass + 'returned ' + testCase.expected[0]  );
		} );

	} );

}( jQuery, mediaWiki, semanticMediaWiki ) );