Bimba.git

ref: b8289bc2614da6b202a3eaa29daf2ed00c65594d

converter/server/vendor/rybakit/msgpack/tests/DataProvider.php


  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
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
<?php

/*
 * This file is part of the rybakit/msgpack.php package.
 *
 * (c) Eugene Leonovich <gen.work@gmail.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

/*
 * Most of the test data in this file are borrowed from
 * https://github.com/vsergeev/u-msgpack-python/blob/master/test_umsgpack.py
 */

namespace MessagePack\Tests;

use MessagePack\Ext;

class DataProvider
{
    public static function provideData() : array
    {
        return array_merge(
            self::provideNilData(),
            self::provideBoolData(),
            self::provideIntData(),
            self::provideFloatData(),
            self::provideStrData(),
            self::provideBinData(),
            self::provideArrayData(),
            self::provideMapData(),
            self::provideExtData()
        );
    }

    public static function provideUnpackData() : array
    {
        return array_merge(
            self::provideNilData(),
            self::provideBoolData(),
            self::provideIntUnpackData(),
            self::provideFloatUnpackData(),
            self::provideStrData(),
            self::provideBinData(),
            self::provideArrayData(),
            self::provideMapUnpackData(),
            self::provideExtData()
        );
    }

    public static function provideNilData() : array
    {
        return [
            'nil' => [null, "\xc0"],
        ];
    }

    public static function provideBoolData() : array
    {
        return [
            'false' => [false, "\xc2"],
            'true' => [true, "\xc3"],
        ];
    }

    public static function provideIntData() : array
    {
        return [
            '7-bit uint #1' => [0, "\x00"],
            '7-bit uint #2' => [16, "\x10"],
            '7-bit uint #3' => [127, "\x7f"],

            '5-bit sint #1' => [-1, "\xff"],
            '5-bit sint #2' => [-16, "\xf0"],
            '5-bit sint #3' => [-32, "\xe0"],

            '8-bit uint #1' => [128, "\xcc\x80"],
            '8-bit uint #2' => [240, "\xcc\xf0"],
            '8-bit uint #3' => [255, "\xcc\xff"],

            '16-bit uint #1' => [256, "\xcd\x01\x00"],
            '16-bit uint #2' => [8192, "\xcd\x20\x00"],
            '16-bit uint #3' => [65535, "\xcd\xff\xff"],

            '32-bit uint #1' => [65536, "\xce\x00\x01\x00\x00"],
            '32-bit uint #2' => [2097152, "\xce\x00\x20\x00\x00"],
            '32-bit uint #3' => [4294967295, "\xce\xff\xff\xff\xff"],

            '64-bit uint #1' => [4294967296, "\xcf"."\x00\x00\x00\x01"."\x00\x00\x00\x00"],
            '64-bit uint #2' => [281474976710656, "\xcf"."\x00\x01\x00\x00"."\x00\x00\x00\x00"],
            '64-bit uint #3' => [9223372036854775807, "\xcf"."\x7f\xff\xff\xff"."\xff\xff\xff\xff"],

            '8-bit int #1' => [-33, "\xd0\xdf"],
            '8-bit int #2' => [-100, "\xd0\x9c"],
            '8-bit int #3' => [-128, "\xd0\x80"],

            '16-bit int #1' => [-129, "\xd1\xff\x7f"],
            '16-bit int #2' => [-2000, "\xd1\xf8\x30"],
            '16-bit int #3' => [-32768, "\xd1\x80\x00"],

            '32-bit int #1' => [-32769, "\xd2\xff\xff\x7f\xff"],
            '32-bit int #2' => [-1000000000, "\xd2\xc4\x65\x36\x00"],
            '32-bit int #3' => [-2147483648, "\xd2\x80\x00\x00\x00"],

            '64-bit int #1' => [-2147483649, "\xd3"."\xff\xff\xff\xff"."\x7f\xff\xff\xff"],
            '64-bit int #2' => [-4294967296, "\xd3"."\xff\xff\xff\xff"."\x00\x00\x00\x00"],
            '64-bit int #3' => [-281474976710656, "\xd3"."\xff\xff\x00\x00"."\x00\x00\x00\x00"],
            // https://bugs.php.net/bug.php?id=53934
            '64-bit int #4' => [(int) '-9223372036854775808', "\xd3"."\x80\x00\x00\x00"."\x00\x00\x00\x00"],
        ];
    }

    public static function provideIntUnpackData() : array
    {
        return array_merge(self::provideIntData(), [
            '64-bit uint #4' => [0, "\xcf"."\x00\x00\x00\x00"."\x00\x00\x00\x00"],

            '8-bit int #4' => [127, "\xd0\x7f"],

            '16-bit int #4' => [32767, "\xd1\x7f\xff"],

            '32-bit int #4' => [2147483647, "\xd2\x7f\xff\xff\xff"],

            '64-bit int #5' => [4294967296, "\xd3"."\x00\x00\x00\x01"."\x00\x00\x00\x00"],
            '64-bit int #6' => [281474976710656, "\xd3"."\x00\x01\x00\x00"."\x00\x00\x00\x00"],
            '64-bin int #7' => [9223372036854775807, "\xd3"."\x7f\xff\xff\xff"."\xff\xff\xff\xff"],
        ]);
    }

    public static function provideFloatData() : array
    {
        return [
            '64-bit float #1' => [0.0, "\xcb"."\x00\x00\x00\x00"."\x00\x00\x00\x00"],
            '64-bit float #2' => [2.5, "\xcb"."\x40\x04\x00\x00"."\x00\x00\x00\x00"],
            '64-bit float #3' => [10 ** 35, "\xcb"."\x47\x33\x42\x61"."\x72\xc7\x4d\x82"],
        ];
    }

    public static function provideFloatUnpackData() : array
    {
        return array_merge(self::provideFloatData(), [
            '32-bit float #1' => [0.0, "\xca"."\x00\x00\x00\x00"],
            '32-bit float #2' => [2.5, "\xca"."\x40\x20\x00\x00"],
        ]);
    }

    public static function provideStrData() : array
    {
        return [
            'fix string #1' => ['', "\xa0"],
            'fix string #2' => ['a', "\xa1\x61"],
            'fix string #3' => ['abc', "\xa3\x61\x62\x63"],
            'fix string #4' => [str_repeat('a', 31), "\xbf".str_repeat("\x61", 31)],

            '8-bit string #1' => [str_repeat('b', 32), "\xd9\x20".str_repeat('b', 32)],
            '8-bit string #2' => [str_repeat('c', 100), "\xd9\x64".str_repeat('c', 100)],
            '8-bit string #3' => [str_repeat('d', 255), "\xd9\xff".str_repeat('d', 255)],
            '16-bit string #1' => [str_repeat('b', 256), "\xda\x01\x00".str_repeat('b', 256)],
            '16-bit string #2' => [str_repeat('c', 65535), "\xda\xff\xff".str_repeat('c', 65535)],
            '32-bit string' => [str_repeat('b', 65536), "\xdb\x00\x01\x00\x00".str_repeat('b', 65536)],

            'wide char string #1' => ['Allagbé', "\xa8Allagb\xc3\xa9"],
            'wide char string #2' => ['По оживлённым берегам', "\xd9\x28\xd0\x9f\xd0\xbe\x20\xd0\xbe\xd0\xb6\xd0\xb8\xd0\xb2\xd0\xbb\xd1\x91\xd0\xbd\xd0\xbd\xd1\x8b\xd0\xbc\x20\xd0\xb1\xd0\xb5\xd1\x80\xd0\xb5\xd0\xb3\xd0\xb0\xd0\xbc"],
        ];
    }

    public static function provideBinData() : array
    {
        return [
            '8-bit binary #1' => ["\x80", "\xc4\x01"."\x80"],
            '8-bit binary #2' => [str_repeat("\x80", 32), "\xc4\x20".str_repeat("\x80", 32)],
            '8-bit binary #3' => [str_repeat("\x80", 255), "\xc4\xff".str_repeat("\x80", 255)],
            '16-bit binary' => [str_repeat("\x80", 256), "\xc5\x01\x00".str_repeat("\x80", 256)],
            '32-bit binary' => [str_repeat("\x80", 65536), "\xc6\x00\x01\x00\x00".str_repeat("\x80", 65536)],
        ];
    }

    public static function provideArrayData() : array
    {
        return [
            'fix array #1' => [[], "\x90"],
            'fix array #2' => [[null, null], "\x92\xc0\xc0"],
            'fix array #3' => [[5, 'abc', true], "\x93\x05\xa3\x61\x62\x63\xc3"],
            '16-bit array #1' => [array_fill(0, 16, 0x05), "\xdc\x00\x10".str_repeat("\x05", 16)],
            '16-bit array #2' => [array_fill(0, 65535, 0x05), "\xdc\xff\xff".str_repeat("\x05", 65535)],
            '32-bit array' => [array_fill(0, 65536, 0x05), "\xdd\x00\x01\x00\x00".str_repeat("\x05", 65536)],
            'complex array' => [[true, 0x01, new Ext(3, 'foo'), 0xff, [1 => false, 2 => 'abc'], "\x80", [1, 2, 3], 'abc'], "\x98\xc3\x01\xc7\x03\x03\x66\x6f\x6f\xcc\xff\x82\x01\xc2\x02\xa3\x61\x62\x63\xc4\x01\x80\x93\x01\x02\x03\xa3\x61\x62\x63"],
        ];
    }

    public static function provideMapData() : array
    {
        return [
            'fix map #1' => [[1 => true, 2 => 'abc', 3 => "\x80", 4 => null], "\x84\x01\xc3\x02\xa3\x61\x62\x63\x03\xc4\x01\x80\x04\xc0"],
            'fix map #2' => [['abc' => 5], "\x81\xa3\x61\x62\x63\x05"],
            'fix map #3' => [["\x80" => 0xffff], "\x81\xc4\x01\x80\xcd\xff\xff"],
            'fix map #4' => [[-1 => -1, 1 => 1], "\x82\xff\xff\x01\x01"],
            '16-bit map #1' => [array_fill(1, 16, 0x05), "\xde\x00\x10".array_reduce(range(1, 16), function ($r, $i) { return $r .= pack('C', $i)."\x05"; })],
            '16-bit map #2' => [array_fill(1, 65535, 0x05), "\xde\xff\xff".array_reduce(range(1, 127), function ($r, $i) { return $r .= pack('C', $i)."\x05"; }).array_reduce(range(128, 255), function ($r, $i) { return $r .= "\xcc".pack('C', $i)."\x05"; }).array_reduce(range(256, 65535), function ($r, $i) { return $r .= "\xcd".pack('n', $i)."\x05"; })],
            '32-bit map' => [array_fill(1, 65536, 0x05), "\xdf\x00\x01\x00\x00".array_reduce(range(1, 127), function ($r, $i) { return $r .= pack('C', $i)."\x05"; }).array_reduce(range(128, 255), function ($r, $i) { return $r .= "\xcc".pack('C', $i)."\x05"; }).array_reduce(range(256, 65535), function ($r, $i) { return $r .= "\xcd".pack('n', $i)."\x05"; })."\xce".pack('N', 65536)."\x05"],
            'complex map' => [[1 => [[1 => 2, 3 => 4], [1 => null]], 2 => 1, 3 => [false, 'def'], 4 => [0x100000000 => 'a', 0xffffffff => 'b']], "\x84\x01\x92\x82\x01\x02\x03\x04\x81\x01\xc0\x02\x01\x03\x92\xc2\xa3\x64\x65\x66\x04\x82\xcf\x00\x00\x00\x01\x00\x00\x00\x00\xa1\x61\xce\xff\xff\xff\xff\xa1\x62"],
        ];
    }

    public static function provideMapUnpackData() : array
    {
        return array_merge(self::provideMapData(), [
            'fix map #5' => [[], "\x80"],
            'fix map #6' => [[0 => null], "\x81\xc2\xc0"],
            'fix map #7' => [[1 => null], "\x81\xc3\xc0"],
        ]);
    }

    public static function provideExtData() : array
    {
        return [
            'fixext 1' => [new Ext(5, "\x80"), "\xd4\x05"."\x80"],
            'fixext 2' => [new Ext(5, str_repeat("\x80", 2)), "\xd5\x05".str_repeat("\x80", 2)],
            'fixext 4' => [new Ext(5, str_repeat("\x80", 4)), "\xd6\x05".str_repeat("\x80", 4)],
            'fixext 8' => [new Ext(5, str_repeat("\x80", 8)), "\xd7\x05".str_repeat("\x80", 8)],
            'fixext 16' => [new Ext(5, str_repeat("\x80", 16)), "\xd8\x05".str_repeat("\x80", 16)],
            '8-bit ext' => [new Ext(5, str_repeat("\x80", 255)), "\xc7\xff\x05".str_repeat("\x80", 255)],
            '16-bit ext' => [new Ext(5, str_repeat("\x80", 256)), "\xc8\x01\x00\x05".str_repeat("\x80", 256)],
            '32-bit ext' => [new Ext(5, str_repeat("\x80", 65536)), "\xc9\x00\x01\x00\x00\x05".str_repeat("\x80", 65536)],
        ];
    }

    public static function getSlowTestNames() : array
    {
        return [
            '16-bit array #2',
            '32-bit array',
            '16-bit map #2',
            '32-bit map',
        ];
    }

    public static function getPeclIncompatibleTestNames() : array
    {
        return [
            '8-bit binary #1',
            '8-bit binary #2',
            '8-bit binary #3',
            '16-bit binary',
            '32-bit binary',
            '16-bit array #2',
            '32-bit array',
            'complex array',
            '16-bit map #2',
            '32-bit map',
            'fix map #1',
            'fix map #3',
            'fix map #4',
            'fix map #5',
            'fix map #6',
            'fix map #7',
            'fixext 1',
            'fixext 2',
            'fixext 4',
            'fixext 8',
            'fixext 16',
            '8-bit ext',
            '16-bit ext',
            '32-bit ext',
        ];
    }
}