Files
mongo-php-driver/tests/serverDescription/serverDescription-var_export-001.phpt
Andreas Braun 6ffcb1f1dd PHPC-2117: Test on PHP 8.2 (#1340)
* 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
2022-08-04 08:53:25 +02:00

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===