PATH:
opt
/
alt
/
tests
/
alt-php81-pecl-rrd_2.0.3-1.el8
/
tests
--TEST-- RRDUpdater test --SKIPIF-- <?php include('skipif.inc'); include('rrdtool-bin.inc'); include('data/definition.inc'); foreach(array($data_emptyDb, $data_updaterTxt) as $file) { if (!file_exists($file)) { die("skip $file doesnt' exist"); } } ?> --FILE-- <?php include('rrdtool-bin.inc'); include('data/definition.inc'); $rrdFile = dirname(__FILE__) . "/rrd_updater_test.rrd"; copy($data_emptyDb, $rrdFile); $updator = new RRDUpdater($rrdFile); $updator->update(array("speed" => "12345"), "920804700"); $updator->update(array("speed" => "12357"), "920805000"); $updator->update(array("speed" => "12363"), "920805300"); $updator->update(array("speed" => "12363"), "920805600"); $updator->update(array("speed" => "12363"), "920805900"); $updator->update(array("speed" => "12373"), "920806200"); $updator->update(array("speed" => "12383"), "920806500"); $updator->update(array("speed" => "12393"), "920806800"); $updator->update(array("speed" => "12399"), "920807100"); $updator->update(array("speed" => "12405"), "920807400"); $updator->update(array("speed" => "12411"), "920807700"); $updator->update(array("speed" => "12415"), "920808000"); $updator->update(array("speed" => "12420"), "920808300"); $updator->update(array("speed" => "12422"), "920808600"); $updator->update(array("speed" => "12423"), "920808900"); //graph just for "visual test" if test fails $command = "$rrdtool_bin graph " . dirname(__FILE__) . "/rrd_updater_test.png " . "--start 920804400 --end 920808000 " . "--vertical-label m/s " . "DEF:myspeed=$rrdFile:speed:AVERAGE " . "CDEF:realspeed=myspeed,1000,* " . "LINE2:realspeed#FF0000"; echo "exporting rrd_updater_test.png via exec\n"; exec($command); $command = "$rrdtool_bin fetch $rrdFile AVERAGE --start 920804400 --end 920809200"; exec($command, $output); // maybe bug in exec output catching if ($output[1] === "\n") { $output[1] = ""; } $originalFetch = file($data_updaterTxt, FILE_IGNORE_NEW_LINES); echo "comparing original and current fetch\n"; var_dump(array_diff($output, $originalFetch)); ?> --EXPECTF-- exporting rrd_updater_test.png via exec comparing original and current fetch array(0) { }
[-] rrd_010.phpt
[edit]
[-] rrd_014.phpt
[edit]
[-] rrdtool-bin.inc.in
[edit]
[-] rrd_019.phpt
[edit]
[-] rrd_009.phpt
[edit]
[-] rrd_011.phpt
[edit]
[-] rrd_005.phpt
[edit]
[-] rrd_017.phpt
[edit]
[-] rrd_018.phpt
[edit]
[-] rrd_006.phpt
[edit]
[-] rrd_022.phpt
[edit]
[-] rrd_004.phpt
[edit]
[-] rrd_003.phpt
[edit]
[-] rrd_012.phpt
[edit]
[-] rrd_015.phpt
[edit]
[-] rrd_020.phpt
[edit]
[-] rrd_008.phpt
[edit]
[-] rrd_007.phpt
[edit]
[+]
..
[-] rrd_001.phpt
[edit]
[-] rrdtool-bin.inc
[edit]
[-] rrd_002.phpt
[edit]
[-] rrd_021.phpt
[edit]
[-] rrd_013.phpt
[edit]
[+]
data
[-] rrd_016.phpt
[edit]
[-] skipif.inc
[edit]