summaryrefslogtreecommitdiff
path: root/tests/phpunit/includes/JsonTest.php
blob: 96a2ead528aa6f7fc8a47d5bbd8a9b8ea3704904 (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
<?php

class JsonTest extends MediaWikiTestCase {

	function testPhpBug46944Test() {
		$this->assertNotEquals(
			'\ud840\udc00',
			strtolower( FormatJson::encode( "\xf0\xa0\x80\x80" ) ),
			'Test encoding an broken json_encode character (U+20000)'
		);

	}

	function testDecodeVarTypes() {
		$this->assertInternalType(
			'object',
			FormatJson::decode( '{"Name": "Cheeso", "Rank": 7}' ),
			'Default to object'
		);

		$this->assertInternalType(
			'array',
			FormatJson::decode( '{"Name": "Cheeso", "Rank": 7}', true ),
			'Optional array'
		);
	}
}