Fixed coverage for BarChart test
This commit is contained in:
parent
164093896d
commit
cf53d85ced
|
@ -4,6 +4,7 @@ declare(strict_types=1);
|
||||||
|
|
||||||
namespace Engelsystem\Test\Unit\Helpers;
|
namespace Engelsystem\Test\Unit\Helpers;
|
||||||
|
|
||||||
|
use Carbon\CarbonImmutable;
|
||||||
use Engelsystem\Helpers\BarChart;
|
use Engelsystem\Helpers\BarChart;
|
||||||
use Engelsystem\Renderer\Renderer;
|
use Engelsystem\Renderer\Renderer;
|
||||||
use Engelsystem\Test\Unit\TestCase;
|
use Engelsystem\Test\Unit\TestCase;
|
||||||
|
@ -39,6 +40,12 @@ class BarChartTest extends TestCase
|
||||||
$this->mockTranslator();
|
$this->mockTranslator();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \Engelsystem\Helpers\BarChart::render
|
||||||
|
* @covers \Engelsystem\Helpers\BarChart::calculateChartGroups
|
||||||
|
* @covers \Engelsystem\Helpers\BarChart::calculateYLabels
|
||||||
|
* @covers \Engelsystem\Helpers\BarChart::generateChartDemoData
|
||||||
|
*/
|
||||||
public function testRender(): void
|
public function testRender(): void
|
||||||
{
|
{
|
||||||
$this->rendererMock->expects(self::once())
|
$this->rendererMock->expects(self::once())
|
||||||
|
@ -103,6 +110,7 @@ class BarChartTest extends TestCase
|
||||||
public function provideBarChartClassTestData(): array
|
public function provideBarChartClassTestData(): array
|
||||||
{
|
{
|
||||||
return [
|
return [
|
||||||
|
[5, ''],
|
||||||
[10, 'barchart-20'], // number to be passed to BarChart::generateChartDemoData, expected class
|
[10, 'barchart-20'], // number to be passed to BarChart::generateChartDemoData, expected class
|
||||||
[20, 'barchart-40'],
|
[20, 'barchart-40'],
|
||||||
[25, 'barchart-50'],
|
[25, 'barchart-50'],
|
||||||
|
@ -111,6 +119,7 @@ class BarChartTest extends TestCase
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @dataProvider provideBarChartClassTestData
|
* @dataProvider provideBarChartClassTestData
|
||||||
|
* @covers \Engelsystem\Helpers\BarChart::calculateBarChartClass
|
||||||
*/
|
*/
|
||||||
public function testRenderBarChartClass(int $testDataCount, string $expectedClass): void
|
public function testRenderBarChartClass(int $testDataCount, string $expectedClass): void
|
||||||
{
|
{
|
||||||
|
@ -124,4 +133,37 @@ class BarChartTest extends TestCase
|
||||||
);
|
);
|
||||||
BarChart::render(...BarChart::generateChartDemoData($testDataCount));
|
BarChart::render(...BarChart::generateChartDemoData($testDataCount));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \Engelsystem\Helpers\BarChart::generateChartDemoData
|
||||||
|
*/
|
||||||
|
public function testGenerateChartDemoData()
|
||||||
|
{
|
||||||
|
$first = CarbonImmutable::now()->subDays(2)->format('Y-m-d');
|
||||||
|
$second = CarbonImmutable::now()->subDays()->format('Y-m-d');
|
||||||
|
$expected = [
|
||||||
|
[
|
||||||
|
'count' => 'arrived',
|
||||||
|
'sum' => 'arrived sum',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
'count' => '#090',
|
||||||
|
'sum' => '#888',
|
||||||
|
],
|
||||||
|
[
|
||||||
|
$first => [
|
||||||
|
'day' => $first,
|
||||||
|
'count' => 5001.0,
|
||||||
|
'sum' => 5001.0,
|
||||||
|
],
|
||||||
|
$second => [
|
||||||
|
'day' => $second,
|
||||||
|
'count' => 5001.0,
|
||||||
|
'sum' => 10002.0,
|
||||||
|
],
|
||||||
|
],
|
||||||
|
];
|
||||||
|
$data = BarChart::generateChartDemoData(2);
|
||||||
|
$this->assertEquals($expected, $data);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue