Merge "Added release notes for 'ContentHandler::runLegacyHooks' removal"
[mediawiki.git] / tests / qunit / suites / resources / mediawiki / mediawiki.user.test.js
blob7f6efa0c7704282fa282bb4d77d5719d4c18e607
1 ( function ( mw, $ ) {
2         QUnit.module( 'mediawiki.user', QUnit.newMwEnvironment( {
3                 setup: function () {
4                         this.server = this.sandbox.useFakeServer();
5                         this.crypto = window.crypto;
6                         this.msCrypto = window.msCrypto;
7                 },
8                 teardown: function () {
9                         if ( this.crypto ) {
10                                 window.crypto = this.crypto;
11                         }
12                         if ( this.msCrypto ) {
13                                 window.msCrypto = this.msCrypto;
14                         }
15                 }
16         } ) );
18         QUnit.test( 'options', function ( assert ) {
19                 assert.ok( mw.user.options instanceof mw.Map, 'options instance of mw.Map' );
20         } );
22         QUnit.test( 'getters (anonymous)', function ( assert ) {
23                 // Forge an anonymous user
24                 mw.config.set( 'wgUserName', null );
25                 mw.config.set( 'wgUserId', null );
27                 assert.strictEqual( mw.user.getName(), null, 'getName()' );
28                 assert.strictEqual( mw.user.isAnon(), true, 'isAnon()' );
29                 assert.strictEqual( mw.user.getId(), 0, 'getId()' );
30         } );
32         QUnit.test( 'getters (logged-in)', function ( assert ) {
33                 mw.config.set( 'wgUserName', 'John' );
34                 mw.config.set( 'wgUserId', 123 );
36                 assert.equal( mw.user.getName(), 'John', 'getName()' );
37                 assert.strictEqual( mw.user.isAnon(), false, 'isAnon()' );
38                 assert.strictEqual( mw.user.getId(), 123, 'getId()' );
40                 assert.equal( mw.user.id(), 'John', 'user.id()' );
41         } );
43         QUnit.test( 'getUserInfo', function ( assert ) {
44                 mw.config.set( 'wgUserGroups', [ '*', 'user' ] );
46                 mw.user.getGroups( function ( groups ) {
47                         assert.deepEqual( groups, [ '*', 'user' ], 'Result' );
48                 } );
50                 mw.user.getRights( function ( rights ) {
51                         assert.deepEqual( rights, [ 'read', 'edit', 'createtalk' ], 'Result (callback)' );
52                 } );
54                 mw.user.getRights().done( function ( rights ) {
55                         assert.deepEqual( rights, [ 'read', 'edit', 'createtalk' ], 'Result (promise)' );
56                 } );
58                 this.server.respondWith( /meta=userinfo/, function ( request ) {
59                         request.respond( 200, { 'Content-Type': 'application/json' },
60                                 '{ "query": { "userinfo": { "groups": [ "unused" ], "rights": [ "read", "edit", "createtalk" ] } } }'
61                         );
62                 } );
64                 this.server.respond();
65         } );
67         QUnit.test( 'generateRandomSessionId', function ( assert ) {
68                 var result, result2;
70                 result = mw.user.generateRandomSessionId();
71                 assert.equal( typeof result, 'string', 'type' );
72                 assert.equal( $.trim( result ), result, 'no whitespace at beginning or end' );
73                 assert.equal( result.length, 16, 'size' );
75                 result2 = mw.user.generateRandomSessionId();
76                 assert.notEqual( result, result2, 'different when called multiple times' );
78         } );
80         QUnit.test( 'generateRandomSessionId (fallback)', function ( assert ) {
81                 var result, result2;
83                 // Pretend crypto API is not there to test the Math.random fallback
84                 if ( window.crypto ) {
85                         window.crypto = undefined;
86                 }
87                 if ( window.msCrypto ) {
88                         window.msCrypto = undefined;
89                 }
91                 result = mw.user.generateRandomSessionId();
92                 assert.equal( typeof result, 'string', 'type' );
93                 assert.equal( $.trim( result ), result, 'no whitespace at beginning or end' );
94                 assert.equal( result.length, 16, 'size' );
96                 result2 = mw.user.generateRandomSessionId();
97                 assert.notEqual( result, result2, 'different when called multiple times' );
99         } );
100 }( mediaWiki, jQuery ) );