summaryrefslogtreecommitdiff
path: root/tests/qunit/suites/resources/mediawiki/mediawiki.storage.test.js
blob: 6cef4a7c8184fa3f3f9480ad9533ca8e3a85449e (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
( function ( mw ) {
	QUnit.module( 'mediawiki.storage' );

	QUnit.test( 'set/get with localStorage', 3, function ( assert ) {
		this.sandbox.stub( mw.storage, 'localStorage', {
			setItem: this.sandbox.spy(),
			getItem: this.sandbox.stub()
		} );

		mw.storage.set( 'foo', 'test' );
		assert.ok( mw.storage.localStorage.setItem.calledOnce );

		mw.storage.localStorage.getItem.withArgs( 'foo' ).returns( 'test' );
		mw.storage.localStorage.getItem.returns( null );
		assert.strictEqual( mw.storage.get( 'foo' ), 'test', 'Check value gets stored.' );
		assert.strictEqual( mw.storage.get( 'bar' ), null, 'Unset values are null.' );
	} );

	QUnit.test( 'set/get without localStorage', 3, function ( assert ) {
		this.sandbox.stub( mw.storage, 'localStorage', {
			getItem: this.sandbox.stub(),
			removeItem: this.sandbox.stub(),
			setItem: this.sandbox.stub()
		} );

		mw.storage.localStorage.getItem.throws();
		assert.strictEqual( mw.storage.get( 'foo' ), false );

		mw.storage.localStorage.setItem.throws();
		assert.strictEqual( mw.storage.set( 'foo', 'test' ), false );

		mw.storage.localStorage.removeItem.throws();
		assert.strictEqual( mw.storage.remove( 'foo', 'test' ), false );
	} );

}( mediaWiki ) );