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
|
--TEST--
Serialize custom AMQP value - errors
--SKIPIF--
<?php
if (!extension_loaded("amqp")) print "skip AMQP extension is not loaded";
elseif (!getenv("PHP_AMQP_HOST")) print "skip PHP_AMQP_HOST environment variable is not set";
?>
--FILE--
<?php
$cnn = new AMQPConnection();
$cnn->setHost(getenv('PHP_AMQP_HOST'));
$cnn->connect();
$ch = new AMQPChannel($cnn);
$ex = new AMQPExchange($ch);
$ex->setName('ex-' . bin2hex(random_bytes(32)));
$ex->setType(AMQP_EX_TYPE_FANOUT);
$ex->declare();
class RecursiveValue implements AMQPValue {
public function toAmqpValue()
{
return $this;
}
}
class NestedValue implements AMQPValue {
private $v;
public function __construct($v)
{
$this->v = $v;
}
public function toAmqpValue()
{
return $this->v;
}
}
try {
$ex->publish('msg', null, null, ['headers' => ['x-val' => new RecursiveValue()]]);
} catch (AMQPException $e) {
var_dump($e->getMessage());
}
$ex->publish('msg', null, null, ['headers' => ['x-val' => new NestedValue(new stdClass())]]);
$ex->publish('msg', null, null, ['headers' => ['x-val' => new NestedValue(new NestedValue(new stdClass()))]]);
?>
==DONE==
--EXPECTF--
string(%d) "Maximum serialization depth of 128 reached while serializing value"
Warning: AMQPExchange::publish(): Ignoring field 'x-val' due to unsupported value type (object) in %s on line %d
Warning: AMQPExchange::publish(): Ignoring field 'x-val' due to unsupported value type (object) in %s on line %d
==DONE==
|