forked from phadej/igbinary
-
Notifications
You must be signed in to change notification settings - Fork 76
Expand file tree
/
Copy pathigbinary_030_php7.phpt
More file actions
66 lines (61 loc) · 1.17 KB
/
Copy pathigbinary_030_php7.phpt
File metadata and controls
66 lines (61 loc) · 1.17 KB
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
--TEST--
Unserialize invalid data
--SKIPIF--
<?php
if(!extension_loaded('igbinary')) {
echo "skip no igbinary";
}
if (PHP_VERSION_ID >= 70200) {
echo "Skip php 7.1 or 7.0 required\n";
}
?>
--FILE--
<?php
$o = new stdClass();
$o->{"1"} = "manual";
$datas = array(
87817,
-1,
array(1,2,3,"testing" => 10, "foo"),
true,
false,
0.187182,
"dakjdh98389\000",
null,
(object)array(1,2,3),
$o,
);
error_reporting(0);
foreach ($datas as $data) {
$str = igbinary_serialize($data);
$len = strlen($str);
// truncated
for ($i = 0; $i < $len - 1; $i++) {
$v = igbinary_unserialize(substr($str, 0, $i));
if (is_object($data) && $v !== null && $v == $data) {
continue;
} elseif ($v !== null && $v != FALSE && $v !== $data) {
echo "output at $i:\n";
var_dump($v);
echo "vs.\n";
var_dump($data);
}
}
// padded
$str2 = $str . "98398afa\000y21_ ";
$v = igbinary_unserialize($str2);
if ($v !== NULL) {
echo "Should return null with padding\n";
var_dump($v);
}
$str3 = $str . "\x00";
$v = igbinary_unserialize($str3);
if ($v !== NULL) {
echo "Should return null with single byte of padding\n";
var_dump($v);
}
}
echo "Success!\n";
?>
--EXPECT--
Success!