mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-21 15:10:01 +01:00
85 lines
1.2 KiB
PHP
85 lines
1.2 KiB
PHP
--TEST--
|
|
Object test, __sleep error cases
|
|
--SKIPIF--
|
|
--FILE--
|
|
<?php
|
|
if(!extension_loaded('msgpack')) {
|
|
dl('msgpack.' . PHP_SHLIB_SUFFIX);
|
|
}
|
|
|
|
error_reporting(0);
|
|
|
|
function test($type, $variable, $test) {
|
|
$serialized = msgpack_serialize($variable);
|
|
$unserialized = msgpack_unserialize($serialized);
|
|
|
|
echo $type, PHP_EOL;
|
|
echo bin2hex($serialized), PHP_EOL;
|
|
var_dump($unserialized);
|
|
echo $test || $unserialized == $variable ? 'OK' : 'ERROR', PHP_EOL;
|
|
}
|
|
|
|
class Obj {
|
|
var $a;
|
|
var $b;
|
|
|
|
function __construct($a, $b) {
|
|
$this->a = $a;
|
|
$this->b = $b;
|
|
}
|
|
|
|
function __sleep() {
|
|
return array('c');
|
|
}
|
|
|
|
# function __wakeup() {
|
|
# $this->b = $this->a * 3;
|
|
# }
|
|
}
|
|
|
|
class Opj {
|
|
var $a;
|
|
var $b;
|
|
|
|
function __construct($a, $b) {
|
|
$this->a = $a;
|
|
$this->b = $b;
|
|
}
|
|
|
|
function __sleep() {
|
|
return array(1);
|
|
}
|
|
|
|
# function __wakeup() {
|
|
#
|
|
# }
|
|
}
|
|
|
|
$o = new Obj(1, 2);
|
|
$p = new Opj(1, 2);
|
|
|
|
test('nonexisting', $o, true);
|
|
test('wrong', $p, true);
|
|
?>
|
|
--EXPECTF--
|
|
nonexisting
|
|
82c0a34f626aa163c0
|
|
object(Obj)#%d (3) {
|
|
["a"]=>
|
|
NULL
|
|
["b"]=>
|
|
NULL
|
|
["c"]=>
|
|
NULL
|
|
}
|
|
OK
|
|
wrong
|
|
82c0a34f706a
|
|
object(Opj)#%d (2) {
|
|
["a"]=>
|
|
NULL
|
|
["b"]=>
|
|
NULL
|
|
}
|
|
OK
|