قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 06:57:53 +00:00

* [Coding Style] Enable rule PSR12.Files.FileHeader * Apply CS * Replace Piwik with Matomo in file headers * Unify file headers (position, no. of lines, https links) * Rebuild dist files * Apply CS * Fix system test that relies on line numbers in a file that had the file header updated --------- Co-authored-by: Stefan Giehl <stefan@matomo.org>
91 خطوط
4.0 KiB
PHP
91 خطوط
4.0 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\Tests\System;
|
|
|
|
use Piwik\Date;
|
|
use Piwik\Plugins\Contents\tests\Fixtures\TwoVisitsWithContents;
|
|
use Piwik\Tests\Framework\TestCase\SystemTestCase;
|
|
|
|
/**
|
|
* Test CSV export with Expanded rows, Translated labels, Different languages
|
|
*
|
|
* @group CsvExportTest
|
|
* @group Core
|
|
*/
|
|
class CsvExportTest extends SystemTestCase
|
|
{
|
|
public static $fixture = null; // initialized below class definition
|
|
|
|
public function getApiForTesting()
|
|
{
|
|
$idSite = self::$fixture->idSite;
|
|
$dateTime = self::$fixture->dateTime;
|
|
|
|
$apiToCall = array('VisitsSummary.get', 'Contents.getContentNames');
|
|
|
|
$enExtraParam = array('expanded' => 0, 'flat' => 1, 'include_aggregate_rows' => 0, 'translateColumnNames' => 1);
|
|
|
|
$deExtraParam = array('expanded' => 0, 'flat' => 1, 'include_aggregate_rows' => 1, 'translateColumnNames' => 1);
|
|
|
|
return array(
|
|
array($apiToCall, array('idSite' => $idSite,
|
|
'date' => $dateTime,
|
|
'format' => 'csv',
|
|
'otherRequestParameters' => array('expanded' => 0, 'flat' => 0),
|
|
'testSuffix' => '_xp0')),
|
|
|
|
array($apiToCall, array('idSite' => $idSite,
|
|
'date' => $dateTime,
|
|
'format' => 'csv',
|
|
'otherRequestParameters' => $enExtraParam,
|
|
'language' => 'en',
|
|
'testSuffix' => '_xp1_inner0_trans-en')),
|
|
|
|
array($apiToCall, array('idSite' => $idSite,
|
|
'date' => $dateTime,
|
|
'format' => 'csv',
|
|
'otherRequestParameters' => $deExtraParam,
|
|
'language' => 'de',
|
|
'testSuffix' => '_xp1_inner1_trans-de')),
|
|
|
|
array($apiToCall, array('idSite' => $idSite,
|
|
'date' => Date::factory($dateTime)->toString() . ',' . Date::factory($dateTime)->addDay(21)->toString(),
|
|
'period' => 'week',
|
|
'format' => 'csv',
|
|
'testSuffix' => '_multi')),
|
|
|
|
array('Live.getLastVisitsDetails', array('idSite' => $idSite,
|
|
'date' => $dateTime,
|
|
'format' => 'csv',
|
|
'otherRequestParameters' => array(
|
|
'hideColumns' => 'serverDate,actionDetails,serverTimestamp,serverTimePretty,'
|
|
. 'serverDatePretty,serverDatePrettyFirstAction,serverTimePrettyFirstAction,'
|
|
. 'goalTimePretty,serverTimePretty,visitorId,visitServerHour,date,'
|
|
. 'prettyDate,serverDateTimePrettyFirstAction,totalEcommerceRevenue,totalAbandonedCartsRevenue'
|
|
)))
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @dataProvider getApiForTesting
|
|
*/
|
|
public function testApi($api, $params)
|
|
{
|
|
$this->runApiTests($api, $params);
|
|
}
|
|
|
|
public static function getOutputPrefix()
|
|
{
|
|
return 'csvExport';
|
|
}
|
|
}
|
|
|
|
CsvExportTest::$fixture = new TwoVisitsWithContents();
|