From 27d8873ae761420a61e297c5b906a5b3339d46b6 Mon Sep 17 00:00:00 2001 From: romanb Date: Mon, 5 Oct 2009 21:19:19 +0000 Subject: [PATCH] [2.0] Added jpgraph.php script that can be used to visualize logs of phpunit test runs with graphs using jpgraph. The graphs show the performance of tests over the revisions. --- jpgraph.php | 90 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 90 insertions(+) create mode 100644 jpgraph.php diff --git a/jpgraph.php b/jpgraph.php new file mode 100644 index 000000000..987438c6b --- /dev/null +++ b/jpgraph.php @@ -0,0 +1,90 @@ +testsuite as $suite) { + foreach ($suite->testcase as $test) { + $name = (string)$suite['name'] . '#' . (string)$test['name']; + $graphs[$name][] = (double)$test['time']; + } + } +} + +if (isset($testsuite) && isset($testcase)) { + $graphName = $testsuite . '#' . $testcase; + $graphData = $graphs[$graphName]; + + // Create the graph. These two calls are always required + $graph = new Graph(650,250); + + //$graph->SetScale('intint'); + $graph->SetScale('textlin'); + $graph->yaxis->scale->SetAutoMin(0); + + $graph->title->Set($testsuite); + $graph->subtitle->Set($testcase); + + $graph->xaxis->title->Set('revision'); + $graph->yaxis->title->Set('seconds'); + $graph->SetMargin(100, 100, 50, 50); + + // Create the linear plot + $lineplot = new LinePlot($graphData); + $lineplot->SetColor('blue'); + + $graph->xaxis->SetTickLabels($revisions); + + // Add the plot to the graph + $graph->Add($lineplot); + + // Display the graph + $graph->Stroke(); +} else { + + echo ''; + echo 'Pick a test and click "show":
'; + echo '
'; + + echo ''; + + echo ''; + + echo '
'; + echo ''; + +} + + +