mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-26 01:42:10 +01:00
* Test on PHP 8.2 * Fix tests relating to dynamic properties * Fix tests failing due to different __set_state output * Duplicate clone test without dynamic properties for PHP >= 8.2
31 lines
763 B
PHP
31 lines
763 B
PHP
--TEST--
|
|
MongoDB\Driver\ServerDescription: var_export()
|
|
--SKIPIF--
|
|
<?php require __DIR__ . "/../utils/basic-skipif.inc"; ?>
|
|
<?php skip_if_not_live(); ?>
|
|
<?php skip_if_not_clean(); ?>
|
|
--FILE--
|
|
<?php
|
|
require_once __DIR__ . "/../utils/basic.inc";
|
|
|
|
$manager = create_test_manager();
|
|
$server = $manager->selectServer(new MongoDB\Driver\ReadPreference('primary'));
|
|
|
|
echo var_export($server->getServerDescription(), true), "\n";
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECTF--
|
|
%r\\?%rMongoDB\Driver\ServerDescription::__set_state(array(
|
|
'host' => '%s',
|
|
'port' => %d,
|
|
'type' => '%r(Standalone|Mongos|RSPrimary|LoadBalancer)%r',
|
|
'hello_response' =>
|
|
array (%A
|
|
),
|
|
'last_update_time' => %r('\d+'|\d+)%r,
|
|
'round_trip_time' => %r(NULL|\d+)%r,
|
|
))
|
|
===DONE===
|