1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 06:57:53 +00:00
Files
matomo/plugins/API/tests/Unit/XmlRendererTest.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

353 خطوط
9.3 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\tests\Unit;
use Piwik\DataTable;
use Piwik\Plugins\API\Renderer\Xml;
/**
* @group Plugin
* @group API
*/
class XmlRendererTest extends \PHPUnit\Framework\TestCase
{
/**
* @var Xml
*/
private $builder;
public function setUp(): void
{
$this->builder = $this->makeBuilder(array());
DataTable\Manager::getInstance()->deleteAll();
}
public function tearDown(): void
{
DataTable\Manager::getInstance()->deleteAll();
}
public function testRenderSuccessShouldIncludeMessage()
{
$response = $this->builder->renderSuccess('ok');
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<success message="ok" />
</result>', $response);
}
public function testRenderExceptionShouldIncludeTheMessageAndNotExceptionMessage()
{
$response = $this->builder->renderException("The error message", new \Exception('The other message'));
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<error message="The error message" />
</result>', $response);
}
public function testRenderObjectShouldReturAnError()
{
$response = $this->builder->renderObject(new \stdClass());
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<error message="The API cannot handle this data structure." />
</result>', $response);
}
public function testRenderResourceShouldReturAnError()
{
$response = $this->builder->renderResource(new \stdClass());
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<error message="The API cannot handle this data structure." />
</result>', $response);
}
public function testRenderScalarShouldReturnABooleanAsIntegerWrappedInResult()
{
$response = $this->builder->renderScalar(true);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>1</result>', $response);
}
public function testRenderScalarShouldReturnAnIntegerWrappedInResult()
{
$response = $this->builder->renderScalar(5);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>5</result>', $response);
}
public function testRenderScalarShouldReturnAStringWrappedInValue()
{
$response = $this->builder->renderScalar('The Output');
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>The Output</result>', $response);
}
public function testRenderScalarShouldNotRemoveLineBreaks()
{
$response = $this->builder->renderScalar('The\nOutput');
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>The\nOutput</result>', $response);
}
public function testRenderDataTableShouldRenderABasicDataTable()
{
$dataTable = new DataTable();
$dataTable->addRowFromSimpleArray(array('nb_visits' => 5, 'nb_random' => 10));
$response = $this->builder->renderDataTable($dataTable);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<row>
<nb_visits>5</nb_visits>
<nb_random>10</nb_random>
</row>
</result>', $response);
}
public function testRenderDataTableShouldRenderSubtables()
{
$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('<?xml version="1.0" encoding="utf-8" ?>
<result>
<row>
<nb_visits>5</nb_visits>
<nb_random>10</nb_random>
<idsubdatatable>1</idsubdatatable>
</row>
</result>', $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('<?xml version="1.0" encoding="utf-8" ?>
<results>
<result defaultKeyName="table1">
<row>
<nb_visits>5</nb_visits>
<nb_random>10</nb_random>
</row>
</result>
<result defaultKeyName="table2">
<row>
<nb_visits>3</nb_visits>
<nb_random>6</nb_random>
</row>
</result>
</results>', $response);
}
public function testRenderDataTableShouldRenderSimpleDataTable()
{
$dataTable = new DataTable\Simple();
$dataTable->addRowsFromArray(array('nb_visits' => 3, 'nb_random' => 6));
$response = $this->builder->renderDataTable($dataTable);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<nb_visits>3</nb_visits>
<nb_random>6</nb_random>
</result>', $response);
}
public function testRenderArrayShouldConvertSimpleArrayToJson()
{
$input = array(1, 2, 5, 'string', 10);
$response = $this->builder->renderArray($input);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<row>1</row>
<row>2</row>
<row>5</row>
<row>string</row>
<row>10</row>
</result>', $response);
}
public function testRenderArrayShouldRenderAnEmptyArray()
{
$response = $this->builder->renderArray(array());
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result />', $response);
}
public function testRenderArrayShouldConvertAssociativeArrayToJson()
{
$input = array('nb_visits' => 6, 'nb_random' => 8);
$response = $this->builder->renderArray($input);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<row>
<nb_visits>6</nb_visits>
<nb_random>8</nb_random>
</row>
</result>', $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('<?xml version="1.0" encoding="utf-8" ?>
<result>
<row>
<nb_visits>6</nb_visits>
<nb_random>8</nb_random>
</row>
<row>
<nb_visits>3</nb_visits>
<nb_random>4</nb_random>
</row>
</result>', $response);
}
public function testRenderArrayShouldConvertMultiDimensionalStandardArrayToJson()
{
$input = array("firstElement",
array(
"firstElement",
"secondElement",
),
"thirdElement");
$actual = $this->builder->renderArray($input);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<row>firstElement</row>
<row>
<row>firstElement</row>
<row>secondElement</row>
</row>
<row>thirdElement</row>
</result>', $actual);
}
public function testRenderArrayShouldConvertMultiDimensionalAssociativeArrayToJson()
{
$input = array(
"firstElement" => "isFirst",
"secondElement" => array(
"firstElement" => "isFirst",
"secondElement" => "isSecond",
),
"thirdElement" => "isThird");
$actual = $this->builder->renderArray($input);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<firstElement>isFirst</firstElement>
<secondElement>
<firstElement>isFirst</firstElement>
<secondElement>isSecond</secondElement>
</secondElement>
<thirdElement>isThird</thirdElement>
</result>', $actual);
}
public function testRenderArrayShouldConvertMultiDimensionalIndexArrayToJson()
{
$input = array(array("firstElement",
array(
"firstElement",
"secondElement",
),
"thirdElement"));
$actual = $this->builder->renderArray($input);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<row>
<row>firstElement</row>
<row>
<row>firstElement</row>
<row>secondElement</row>
</row>
<row>thirdElement</row>
</row>
</result>', $actual);
}
public function testRenderArrayShouldConvertMultiDimensionalMixedArrayToJson()
{
$input = array(
"firstElement" => "isFirst",
array(
"firstElement",
"secondElement",
),
"thirdElement" => array(
"firstElement" => "isFirst",
"secondElement" => "isSecond",
)
);
$actual = $this->builder->renderArray($input);
$this->assertEquals('<?xml version="1.0" encoding="utf-8" ?>
<result>
<firstElement>isFirst</firstElement>
<row key="0">
<row>firstElement</row>
<row>secondElement</row>
</row>
<thirdElement>
<firstElement>isFirst</firstElement>
<secondElement>isSecond</secondElement>
</thirdElement>
</result>', $actual);
}
private function makeBuilder($request)
{
return new Xml($request);
}
}