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

QUnit.module( 'mediawiki.user', QUnit.newMwEnvironment() );

QUnit.test( 'options', 1, function ( assert ) {
	assert.ok( mw.user.options instanceof mw.Map, 'options instance of mw.Map' );
});

QUnit.test( 'user status', 9, function ( assert ) {
	/**
	 * Tests can be run under three different conditions:
	 *   1) From tests/qunit/index.html, user will be anonymous.
	 *   2) Logged in on [[Special:JavaScriptTest/qunit]]
	 *   3) Anonymously at the same special page.
	 */

	// Forge an anonymous user:
	mw.config.set( 'wgUserName', null );

	assert.strictEqual( mw.user.getName(), null, 'user.getName() returns null when anonymous' );
	assert.strictEqual( mw.user.name(), null, 'user.name() compatibility' );
	assert.assertTrue( mw.user.isAnon(), 'user.isAnon() returns true when anonymous' );
	assert.assertTrue( mw.user.anonymous(), 'user.anonymous() compatibility' );

	// Not part of startUp module
	mw.config.set( 'wgUserName', 'John' );

	assert.equal( mw.user.getName(), 'John', 'user.getName() returns username when logged-in' );
	assert.equal( mw.user.name(), 'John', 'user.name() compatibility' );
	assert.assertFalse( mw.user.isAnon(), 'user.isAnon() returns false when logged-in' );
	assert.assertFalse( mw.user.anonymous(), 'user.anonymous() compatibility' );

	assert.equal( mw.user.id(), 'John', 'user.id Returns username when logged-in' );
});

QUnit.asyncTest( 'getGroups', 3, function ( assert ) {
	mw.user.getGroups( function ( groups ) {
		// First group should always be '*'
		assert.equal( $.type( groups ), 'array', 'Callback gets an array' );
		assert.notStrictEqual( $.inArray( '*', groups ), -1, '"*"" is in the list' );
		// Sort needed because of different methods if creating the arrays,
		// only the content matters.
		assert.deepEqual( groups.sort(), mw.config.get( 'wgUserGroups' ).sort(), 'Array contains all groups, just like wgUserGroups' );
		QUnit.start();
	});
});

QUnit.asyncTest( 'getRights', 1, function ( assert ) {
	mw.user.getRights( function ( rights ) {
		// First group should always be '*'
		assert.equal( $.type( rights ), 'array', 'Callback gets an array' );
		QUnit.start();
	});
});

}( mediaWiki ) );