Merge "Add missing uploadstash.us_props for PostgreSQL"
[lhc/web/wiklou.git] / tests / phpunit / includes / libs / MWMessagePackTest.php
1 <?php
2 /**
3 * PHP Unit tests for MWMessagePack
4 * @covers MWMessagePack
5 */
6 class MWMessagePackTest extends MediaWikiTestCase {
7
8 /**
9 * Provides test cases for MWMessagePackTest::testMessagePack
10 *
11 * Returns an array of test cases. Each case is an array of (type, value,
12 * expected encoding as hex string). The expected values were generated
13 * using <https://github.com/msgpack/msgpack-php>, which includes a
14 * serialization function.
15 */
16 public function provider() {
17 return array(
18 array( 'nil', null, 'c0' ),
19 array( 'bool', true, 'c3' ),
20 array( 'bool', false, 'c2' ),
21 array( 'positive fixnum', 0, '00' ),
22 array( 'positive fixnum', 1, '01' ),
23 array( 'positive fixnum', 5, '05' ),
24 array( 'positive fixnum', 35, '23' ),
25 array( 'uint 8', 128, 'cc80' ),
26 array( 'uint 16', 1000, 'cd03e8' ),
27 array( 'uint 32', 100000, 'ce000186a0' ),
28 array( 'uint 64', 10000000000, 'cf00000002540be400' ),
29 array( 'negative fixnum', -1, 'ff' ),
30 array( 'negative fixnum', -2, 'fe' ),
31 array( 'int 8', -128, 'd080' ),
32 array( 'int 8', -35, 'd0dd' ),
33 array( 'int 16', -1000, 'd1fc18' ),
34 array( 'int 32', -100000, 'd2fffe7960' ),
35 array( 'int 64', -10000000000, 'd3fffffffdabf41c00' ),
36 array( 'int 64', -223372036854775807, 'd3fce66c50e2840001' ),
37 array( 'int 64', -9223372036854775807, 'd38000000000000001' ),
38 array( 'double', 0.1, 'cb3fb999999999999a' ),
39 array( 'double', 1.1, 'cb3ff199999999999a' ),
40 array( 'double', 123.456, 'cb405edd2f1a9fbe77' ),
41 array( 'fix raw', '', 'a0' ),
42 array( 'fix raw', 'foobar', 'a6666f6f626172' ),
43 array(
44 'raw 16',
45 'Lorem ipsum dolor sit amet amet.',
46 'da00204c6f72656d20697073756d20646f6c6f722073697420616d657420616d65742e'
47 ),
48 array(
49 'fix array',
50 array( 'abc', 'def', 'ghi' ),
51 '93a3616263a3646566a3676869'
52 ),
53 array(
54 'fix map',
55 array( 'one' => 1, 'two' => 2 ),
56 '82a36f6e6501a374776f02'
57 ),
58 );
59 }
60
61 /**
62 * Verify that values are serialized correctly.
63 * @covers MWMessagePack::pack
64 * @dataProvider provider
65 */
66 public function testPack( $type, $value, $expected ) {
67 $actual = bin2hex( MWMessagePack::pack( $value ) );
68 $this->assertEquals( $actual, $expected, $type );
69 }
70 }