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--
mysqli_get_connection_stats()
--INI--
mysqlnd.collect_statistics="1"
mysqlnd.collect_memory_statistics="1"
--SKIPIF--
<?PHP
require_once('skipif.inc');
require_once('skipifemb.inc');
require_once('skipifconnectfailure.inc');
if (!function_exists('mysqli_get_connection_stats')) {
die("skip only available with mysqlnd");
}
?>
--FILE--
<?php
require("table.inc");
if (!is_array($info = mysqli_get_connection_stats($link)) || empty($info))
printf("[003] Expecting array/any_non_empty, got %s/%s\n", gettype($info), $info);
if (!is_array($info2 = mysqli_get_client_stats()) || empty($info2))
printf("[004] Expecting array/any_non_empty, got %s/%s\n", gettype($info2), $info2);
foreach ($info as $k => &$v) {
if (strpos($k, "mem_") === 0) {
$v = 0;
}
}
foreach ($info2 as $k => &$v) {
if (strpos($k, "mem_") === 0) {
$v = 0;
}
}
if ($info !== $info2) {
printf("[005] The hashes should be identical except of the memory related fields\n");
var_dump($info);
var_dump($info2);
}
if (!is_array($info = $link->get_connection_stats()) || empty($info))
printf("[006] Expecting array/any_non_empty, got %s/%s\n", gettype($info), $info);
foreach ($info as $k => &$v) {
if (strpos($k, "mem_") === 0) {
$v = 0;
}
}
if ($info !== $info2) {
printf("[007] The hashes should be identical except of the memory related fields\n");
var_dump($info);
var_dump($info2);
}
mysqli_close($link);
require("table.inc");
if (!is_array($info = mysqli_get_connection_stats($link)) || empty($info))
printf("[008] Expecting array/any_non_empty, got %s/%s\n", gettype($info), $info);
if (!is_array($info2 = mysqli_get_client_stats()) || empty($info2))
printf("[009] Expecting array/any_non_empty, got %s/%s\n", gettype($info2), $info2);
// assuming the test is run in a plain-vanilla CLI environment
if ($info === $info2) {
printf("[010] The hashes should not be identical\n");
var_dump($info);
var_dump($info2);
}
print "done!";
?>
--CLEAN--
<?php
require_once("clean_table.inc");
?>
--EXPECT--
done!
|