1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/plugins/API/tests/Unit/CsvRendererTest.php
Stefan Giehl d6d72d1fa7 [Coding Style] Enable rule PSR1.Methods.CamelCapsMethodName.NotCamelCaps (#22144)
* [Coding Style] Enable rule PSR1.Methods.CamelCapsMethodName.NotCamelCaps

* [Coding Style] Use camel case for method names in API plugin tests (#22145)

* [Coding Style] Use camel case for method names in Core* plugin tests (#22147)

* [Coding Style] Use camel case for method names in core Unit tests (#22149)

* [Coding Style] Use camel case for method names in Actions and BulkTracking plugin tests (#22146)

* [Coding Style] Use camel case for method names in CustomDimensions and CustomJSTracker plugin tests (#22148)

* [Coding Style] Use camel case for method names in core Integration tests (#22151)

* [Coding Style] Use camel case for method names in more core plugin tests (#22153)

* [Coding Style] Use camel case for method names in more core plugin tests (#22157)

* [Coding Style] Use camel case for method names in more core plugin tests

* Update plugins/Monolog/tests/Unit/Processor/ExceptionToTextProcessorTest.php

Co-authored-by: Michal Kleiner <michal@innocraft.com>

---------

Co-authored-by: Michal Kleiner <michal@innocraft.com>

* [Coding Style] Use camel case for method names in more core plugin tests (#22159)

* [Coding Style] Use camel case for method names in remaining tests (#22160)

* [Coding Style] Use camel case for method names in remaining tests

* rename expected test files

---------

Co-authored-by: Michal Kleiner <michal@innocraft.com>
2024-04-25 20:57:55 +02:00

354 خطوط
10 KiB
PHP

<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license https://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\API\test\Unit;
use Piwik\DataTable;
use Piwik\Plugins\API\Renderer\Csv;
/**
* @group Plugin
* @group API
*/
class CsvRendererTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Csv
*/
private $builder;
public function setUp(): void
{
$this->builder = $this->makeBuilder(array('method' => 'MultiSites_getAll', 'convertToUnicode' => 0));
}
public function testRenderSuccessShouldIncludeMessage()
{
$response = $this->builder->renderSuccess('ok');
$this->assertEquals("message
ok", $response);
}
public function testRenderExceptionShouldIncludeTheMessageAndNotExceptionMessage()
{
$response = $this->builder->renderException("The error message", new \Exception('The other message'));
$this->assertEquals('Error: The error message', $response);
}
public function testRenderExceptionShouldRespectNewlines()
{
$response = $this->builder->renderException("The\nerror\nmessage", new \Exception('The other message'));
$this->assertEquals('Error: The
error
message', $response);
}
public function testRenderObjectShouldReturAnError()
{
$response = $this->builder->renderObject(new \stdClass());
$this->assertEquals('Error: The API cannot handle this data structure.', $response);
}
public function testRenderResourceShouldReturAnError()
{
$response = $this->builder->renderResource(new \stdClass());
$this->assertEquals('Error: The API cannot handle this data structure.', $response);
}
public function testRenderScalarShouldConvertToUnicodeByDefault()
{
$builder = $this->makeBuilder(array('method' => 'MultiSites_getAll'));
$response = $builder->renderScalar(true);
$this->assertStringStartsWith(chr(255) . chr(254), $response);
}
public function testRenderScalarShouldReturnABooleanAsIntegerWrappedInTable()
{
$response = $this->builder->renderScalar(true);
$this->assertEquals('value
1', $response);
}
public function testRenderScalarShouldReturnAnIntegerWrappedInTable()
{
$response = $this->builder->renderScalar(5);
$this->assertEquals('value
5', $response);
}
public function testRenderScalarShouldReturnAStringWrappedInValue()
{
$response = $this->builder->renderScalar('The Output');
$this->assertEquals('value
The Output', $response);
}
public function testRenderScalarShouldNotRemoveLineBreaks()
{
$response = $this->builder->renderScalar('The\nOutput');
$this->assertEquals('value
The\nOutput', $response);
}
/**
* @dataProvider getCellValuesToPrefixOrNot
*/
public function testRenderScalarWhenCellValueIsFormulaShouldPrefixWithQuote($value, $expectedCsvValue)
{
$response = $this->builder->renderScalar($value);
$this->assertEquals("value\n$expectedCsvValue", $response);
}
public function getCellValuesToPrefixOrNot()
{
// input, expected csv output
return array(
// we prefix with quotes
array('=test()', '\'=test()'),
array('=test()%%', '\'=test()%%'),
array('=1+1', '\'=1+1'),
array('@1+1', '\'@1+1'),
array('+1+1', '\'+1+1'),
array('+1+test()', '\'+1+test()'),
array('-1+1', '\'-1+1'),
array('@-1+1', '\'@-1+1'),
array('-test()', '\'-test()'),
array('-te,st()', '"\'-te,st()"'),
array('-te"st()', '"\'-te""st()"'),
// we do not need to prefix with quote
array('1', '1'),
array('2', '2'),
array('2@', '2@'),
array('20000000', '20000000'),
array('10%', '10%'),
array('%%', '%%'),
array('10.5%', '10.5%'),
array('-10.5%', '-10.5%'),
array('+10,5%', '"\'+10,5%"'),
array('10,5', '"10,5"'),
array('1+test()', '1+test()'),
array('1+test@', '1+test@'),
array('%10%5', '%10%5'),
array('', ''),
array(0, '0'),
array(2.2, '2.2'),
array(-2.2, '-2.2'),
array(false, '0'),
array(null, ''),
);
}
/**
* @dataProvider getCellValuesToPrefixOrNot
*/
public function testRenderDataTableShouldRenderFormulas($value, $expectedValue)
{
$dataTable = new DataTable();
$dataTable->addRowFromSimpleArray(array('nb_visits' => 5, 'nb_random' => $value));
$response = $this->builder->renderDataTable($dataTable);
$this->assertEquals("nb_visits,nb_random\n5,$expectedValue", $response);
}
public function testRenderDataTableShouldRenderABasicDataTable()
{
$dataTable = new DataTable();
$dataTable->addRowFromSimpleArray(array('nb_visits' => 5, 'nb_random' => 10));
$response = $this->builder->renderDataTable($dataTable);
$this->assertEquals('nb_visits,nb_random
5,10', $response);
}
public function testRenderDataTableShouldNotRenderSubtablesAsItIsNotSupportedYet()
{
$subtable = new DataTable();
$subtable->addRowFromSimpleArray(array('nb_visits' => 2, 'nb_random' => 6));
$dataTable = new DataTable();
$dataTable->addRowFromSimpleArray(array('nb_visits' => 5, 'nb_random' => 10));
$dataTable->getFirstRow()->setSubtable($subtable);
$response = $this->builder->renderDataTable($dataTable);
$this->assertEquals('nb_visits,nb_random
5,10', $response);
}
public function testRenderDataTableShouldRenderDataTableMaps()
{
$map = new DataTable\Map();
$dataTable = new DataTable();
$dataTable->addRowFromSimpleArray(array('nb_visits' => 5, 'nb_random' => 10));
$dataTable2 = new DataTable();
$dataTable2->addRowFromSimpleArray(array('nb_visits' => 3, 'nb_random' => 6));
$map->addTable($dataTable, 'table1');
$map->addTable($dataTable2, 'table2');
$response = $this->builder->renderDataTable($map);
$this->assertEquals('defaultKeyName,nb_visits,nb_random
table1,5,10
table2,3,6', $response);
}
public function testRenderDataTableShouldRenderSimpleDataTable()
{
$dataTable = new DataTable\Simple();
$dataTable->addRowsFromArray(array('nb_visits' => 3, 'nb_random' => 6));
$response = $this->builder->renderDataTable($dataTable);
$this->assertEquals('nb_visits,nb_random
3,6', $response);
}
public function testRenderArrayShouldConvertSimpleArrayToJson()
{
$input = array(1, 2, 5, 'string', 10);
$response = $this->builder->renderArray($input);
$this->assertEquals('1
2
5
string
10', $response);
}
public function testRenderArrayShouldRenderAnEmptyArray()
{
$response = $this->builder->renderArray(array());
$this->assertEquals('No data available', $response);
}
public function testRenderArrayShouldConvertAssociativeArrayToJson()
{
$input = array('nb_visits' => 6, 'nb_random' => 8);
$response = $this->builder->renderArray($input);
$this->assertEquals('nb_visits,nb_random
6,8', $response);
}
public function testRenderArrayShouldConvertsIndexedAssociativeArrayToJson()
{
$input = array(
array('nb_visits' => 6, 'nb_random' => 8),
array('nb_visits' => 3, 'nb_random' => 4)
);
$response = $this->builder->renderArray($input);
$this->assertEquals('nb_visits,nb_random
6,8
3,4', $response);
}
public function testRenderArrayShouldConvertMultiDimensionalStandardArrayToJson()
{
$input = array("firstElement",
array(
"firstElement",
"secondElement",
),
"thirdElement");
$actual = $this->builder->renderArray($input);
$this->assertEquals('0,1,2
firstElement,,
firstElement,secondElement,
,,thirdElement', $actual);
}
public function testRenderArrayShouldConvertMultiDimensionalAssociativeArrayToJson()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage("Data structure returned is not convertible in the requested format: Only integer keys supported for array columns on base level. Unsupported string 'secondElement' found for row 'array (
'firstElement' => 'isFirst',
'secondElement' => 'isSecond',
)'.");
$input = array(
"firstElement" => "isFirst",
"secondElement" => array(
"firstElement" => "isFirst",
"secondElement" => "isSecond",
),
"thirdElement" => "isThird");
$this->builder->renderArray($input);
}
public function testRenderArrayShouldConvertMultiDimensionalIndexArrayToJson()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage("Data structure returned is not convertible in the requested format: Multidimensional column values not supported. Found unexpected array value for column '1' in row '0': 'array (
0 => 'firstElement',
1 => 'secondElement',
)'.");
$input = array(array("firstElement",
array(
"firstElement",
"secondElement",
),
"thirdElement"));
$this->builder->renderArray($input);
}
public function testRenderArrayShouldConvertMultiDimensionalMixedArrayToJson()
{
$this->expectException(\Exception::class);
$this->expectExceptionMessage("Data structure returned is not convertible in the requested format: Only integer keys supported for array columns on base level. Unsupported string 'thirdElement' found for row 'array (
'firstElement' => 'isFirst',
'secondElement' => 'isSecond',
)'.");
$input = array(
"firstElement" => "isFirst",
array(
"firstElement",
"secondElement",
),
"thirdElement" => array(
"firstElement" => "isFirst",
"secondElement" => "isSecond",
)
);
$this->builder->renderArray($input);
}
private function makeBuilder($request)
{
return new Csv($request);
}
}