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
|
--TEST--
Serialize custom AMQP value
--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();
$q = new AMQPQueue($ch);
$q->setName('q-' . bin2hex(random_bytes(32)));
$q->declare();
$q->bind($ex->getName());
class MyAmqpValue implements AMQPValue {
public function toAmqpValue()
{
return 'foo';
}
}
class MyNestedAmqpValue implements AMQPValue {
private $val;
public function __construct($val) {
$this->val = $val;
}
public function toAmqpValue() {
return $this->val;
}
}
$ex->publish('msg', null, null, ['headers' => [
'x-val' => new MyAmqpValue(),
'x-nested' => new MyNestedAmqpValue(new MyAmqpValue()),
'x-array' => [new MyNestedAmqpValue(new MyAmqpValue())],
'x-array-nested' => new MyNestedAmqpValue([new MyNestedAmqpValue(1), 2]),
'x-nested-decimal' => new MyNestedAmqpValue(new AMQPDecimal(1, 2345)),
'x-nested-timestamp' => new MyNestedAmqpValue(new AMQPTimestamp(987))
]]);
$msg = $q->get(AMQP_AUTOACK);
var_dump($msg->getHeader('x-val'));
var_dump($msg->getHeader('x-nested'));
var_dump($msg->getHeader('x-array'));
var_dump($msg->getHeader('x-array-nested'));
var_dump($msg->getHeader('x-nested-decimal')->getExponent());
var_dump($msg->getHeader('x-nested-decimal')->getSignificand());
var_dump($msg->getHeader('x-nested-timestamp')->getTimestamp());
?>
==DONE==
--EXPECT--
string(3) "foo"
string(3) "foo"
array(1) {
[0]=>
string(3) "foo"
}
array(2) {
[0]=>
int(1)
[1]=>
int(2)
}
int(1)
int(2345)
float(987)
==DONE==
|