summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/SemanticMediaWiki/tests/qunit/smw/util/ext.smw.util.tooltip.test.js
blob: cf7fd9226f7cdee18be36629fb9eab185a43ef06 (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
/*!
 * This file is part of the Semantic MediaWiki QUnit test suite
 * @see https://semantic-mediawiki.org/wiki/QUnit
 *
 * @section LICENSE
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
 * http://www.gnu.org/copyleft/gpl.html
 *
 * @since 1.9
 *
 * @file
 * @ingroup SMW
 * @ingroup Test
 *
 * @licence GNU GPL v2+
 * @author mwjames
 */
( function ( $, mw, smw ) {
	'use strict';

	QUnit.module( 'ext.smw.util.tooltip', QUnit.newMwEnvironment() );

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

		var tooltip = new smw.util.tooltip();

		assert.ok( tooltip instanceof Object, 'smw.util.tooltip instance was accessible' );

	} );

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

		var tooltip = new smw.util.tooltip();
		var fixture = $( '#qunit-fixture' );

		assert.equal( $.type( tooltip.show ), 'function', '.show() was accessible' );

		tooltip.show( {
			context: fixture,
			content: 'Test',
			title: 'Test',
			button: false
		} );

		assert.ok( fixture.data( 'hasqtip' ), '.data( "hasqtip" ) was accessible' );

	} );

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

		var tooltip = new smw.util.tooltip();
		var fixture = $( '#qunit-fixture' );

		assert.equal( $.type( tooltip.add ), 'function', '.add() was accessible' );

		tooltip.add( {
			contextClass: 'test',
			contentClass: 'test-content',
			targetClass : 'test-target',
			context: fixture,
			content: 'Test 2',
			title: 'Test 2',
			type: 'info',
			button: true
		} );

		assert.ok( fixture.find( '.test' ), 'created context class' );
		assert.ok( fixture.data( 'hasqtip' ), '.data( "hasqtip" ) was accessible' );

	} );

}( jQuery, mediaWiki, semanticMediaWiki ) );