X7ROOT File Manager
Current Path:
/opt/alt/tests/alt-php81-pecl-amqp_2.1.2-1.el8/tests
opt
/
alt
/
tests
/
alt-php81-pecl-amqp_2.1.2-1.el8
/
tests
/
ðŸ“
..
📄
_test_helpers.php.inc
(2.19 KB)
📄
amqp_version.phpt
(485 B)
📄
amqpbasicproperties.phpt
(3.59 KB)
📄
amqpbasicproperties_nullability.phpt
(1.79 KB)
📄
amqpconnection_construct_ini_read_timeout.phpt
(443 B)
📄
amqpconnection_construct_ini_timeout.phpt
(558 B)
📄
amqpconnection_construct_ini_timeout_and_read_timeout.phpt
(743 B)
📄
amqpconnection_construct_ini_timeout_default.phpt
(477 B)
📄
amqpconnection_construct_params_by_value.phpt
(1.02 KB)
📄
amqpconnection_construct_with_connection_name.phpt
(607 B)
📄
amqpconnection_construct_with_rpc_timeout.phpt
(338 B)
📄
amqpconnection_construct_with_timeout.phpt
(445 B)
📄
amqpconnection_construct_with_timeout_and_read_timeout.phpt
(500 B)
📄
amqpconnection_construct_with_verify_false.phpt
(318 B)
📄
amqpconnection_construct_with_write_timeout.phpt
(342 B)
📄
amqpconnection_nullable_setters.phpt
(955 B)
📄
amqpconnection_setConnectionName.phpt
(564 B)
📄
amqpconnection_setHost.phpt
(313 B)
📄
amqpconnection_setLogin.phpt
(447 B)
📄
amqpconnection_setPassword.phpt
(459 B)
📄
amqpconnection_setPort_int.phpt
(449 B)
📄
amqpconnection_setPort_out_of_range.phpt
(496 B)
📄
amqpconnection_setPort_string.phpt
(457 B)
📄
amqpconnection_setReadTimeout_float.phpt
(480 B)
📄
amqpconnection_setReadTimeout_int.phpt
(397 B)
📄
amqpconnection_setReadTimeout_out_of_range.phpt
(414 B)
📄
amqpconnection_setReadTimeout_string.phpt
(485 B)
📄
amqpconnection_setRpcTimeout_float.phpt
(583 B)
📄
amqpconnection_setRpcTimeout_int.phpt
(442 B)
📄
amqpconnection_setRpcTimeout_out_of_range.phpt
(545 B)
📄
amqpconnection_setRpcTimeout_string.phpt
(598 B)
📄
amqpconnection_setSaslMethod.phpt
(629 B)
📄
amqpconnection_setSaslMethod_invalid.phpt
(573 B)
📄
amqpconnection_setTimeout_deprecated.phpt
(549 B)
📄
amqpconnection_setTimeout_float.phpt
(946 B)
📄
amqpconnection_setTimeout_int.phpt
(561 B)
📄
amqpconnection_setTimeout_out_of_range.phpt
(565 B)
📄
amqpconnection_setTimeout_string.phpt
(951 B)
📄
amqpconnection_setVhost.phpt
(443 B)
📄
amqpconnection_setWriteTimeout_float.phpt
(485 B)
📄
amqpconnection_setWriteTimeout_int.phpt
(400 B)
📄
amqpconnection_setWriteTimeout_out_of_range.phpt
(551 B)
📄
amqpconnection_setWriteTimeout_string.phpt
(491 B)
📄
amqpconnection_validation.phpt
(5.01 KB)
📄
amqpdecimal.phpt
(1.28 KB)
📄
amqpenvelope_construct.phpt
(1.29 KB)
📄
amqpexchange_declare_with_stalled_reference.phpt
(856 B)
📄
amqpqueue_declare_with_stalled_reference.phpt
(838 B)
📄
amqpqueue_purge_basic.phpt
(142 B)
📄
amqptimestamp.phpt
(1.08 KB)
📄
bug_62354.phpt
(595 B)
📄
ini_validation_failure.phpt
(4.4 KB)
📄
testtest.phpt
(1.77 KB)
Editing: _test_helpers.php.inc
<?php function dump_methods($obj) { $methods = get_class_methods($obj); echo get_class($obj), PHP_EOL; foreach($methods as $m) { if ($m[0] == '_') { // ignore all _* methods continue; } echo ' ', $m, '():', PHP_EOL, ' ', ' '; var_dump($obj->$m()); } } function dump_message($msg) { if (!$msg) { var_dump($msg); return false; } echo get_class($msg), PHP_EOL; echo " getBody:", PHP_EOL, " "; var_dump($msg->getBody()); echo " getContentType:", PHP_EOL, " "; var_dump($msg->getContentType()); echo " getRoutingKey:", PHP_EOL, " "; var_dump($msg->getRoutingKey()); echo " getConsumerTag:", PHP_EOL, " "; var_dump($msg->getConsumerTag()); echo " getDeliveryTag:", PHP_EOL, " "; var_dump($msg->getDeliveryTag()); echo " getDeliveryMode:", PHP_EOL, " "; var_dump($msg->getDeliveryMode()); echo " getExchangeName:", PHP_EOL, " "; var_dump($msg->getExchangeName()); echo " isRedelivery:", PHP_EOL, " "; var_dump($msg->isRedelivery()); echo " getContentEncoding:", PHP_EOL, " "; var_dump($msg->getContentEncoding()); echo " getType:", PHP_EOL, " "; var_dump($msg->getType()); echo " getTimeStamp:", PHP_EOL, " "; var_dump($msg->getTimeStamp()); echo " getPriority:", PHP_EOL, " "; var_dump($msg->getPriority()); echo " getExpiration:", PHP_EOL, " "; var_dump($msg->getExpiration()); echo " getUserId:", PHP_EOL, " "; var_dump($msg->getUserId()); echo " getAppId:", PHP_EOL, " "; var_dump($msg->getAppId()); echo " getMessageId:", PHP_EOL, " "; var_dump($msg->getMessageId()); echo " getReplyTo:", PHP_EOL, " "; var_dump($msg->getReplyTo()); echo " getCorrelationId:", PHP_EOL, " "; var_dump($msg->getCorrelationId()); echo " getHeaders:", PHP_EOL, " "; var_dump($msg->getHeaders()); return false; } function consumeThings($message, $queue) { var_dump($message); return false; }
Upload File
Create Folder