mirror of
https://github.com/Icinga/icingaweb2.git
synced 2026-07-08 09:11:04 -04:00
Replace the outdated `array()` spelling with the more modern `[]`. This is applied throughout the whole project, also including phpdocs, tests, view scripts and core modules.
52 lines
1.6 KiB
PHP
52 lines
1.6 KiB
PHP
<?php
|
|
|
|
// SPDX-FileCopyrightText: 2018 Icinga GmbH <https://icinga.com>
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
namespace Tests\Icinga\Chart;
|
|
|
|
use DOMXPath;
|
|
use DOMDocument;
|
|
use Icinga\Chart\GridChart;
|
|
use Icinga\Test\BaseTestCase;
|
|
|
|
class GraphChartTest extends BaseTestCase
|
|
{
|
|
public function testBarChartCreation()
|
|
{
|
|
$chart = new GridChart();
|
|
$chart->drawBars(
|
|
[
|
|
'label' => 'My bar',
|
|
'color' => 'black',
|
|
'data' => [[0, 0], [1,1], [1,2]]
|
|
]
|
|
);
|
|
$doc = new DOMDocument();
|
|
$doc->preserveWhiteSpace = false;
|
|
$doc->loadXML($chart->render());
|
|
$xpath = new DOMXPath($doc);
|
|
$xpath->registerNamespace('x', 'http://www.w3.org/2000/svg');
|
|
$path = $xpath->query('//x:rect[@data-icinga-graph-type="bar"]');
|
|
$this->assertEquals(6, $path->length, 'Assert the correct number of datapoints being drawn as SVG bars');
|
|
}
|
|
|
|
public function testLineChartCreation()
|
|
{
|
|
$chart = new GridChart();
|
|
$chart->drawLines(
|
|
[
|
|
'label' => 'My bar',
|
|
'color' => 'black',
|
|
'data' => [[0, 0], [1,1], [1,2]]
|
|
]
|
|
);
|
|
$doc = new DOMDocument();
|
|
$doc->preserveWhiteSpace = false;
|
|
$doc->loadXML($chart->render());
|
|
$xpath = new DOMXPath($doc);
|
|
$xpath->registerNamespace('x', 'http://www.w3.org/2000/svg');
|
|
$path = $xpath->query('//x:path[@data-icinga-graph-type="line"]');
|
|
$this->assertEquals(1, $path->length, 'Assert the correct number of datapoints being drawn as SVG lines');
|
|
}
|
|
}
|