قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 23:17:46 +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>
72 خطوط
1.5 KiB
PHP
72 خطوط
1.5 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\UserLanguage\tests\System;
|
|
|
|
use Piwik\Plugins\UserLanguage\tests\Fixtures\LanguageFixture;
|
|
use Piwik\Tests\Framework\TestCase\SystemTestCase;
|
|
|
|
/**
|
|
* @group GetLanguageSystemTest
|
|
* @group Plugins
|
|
* @group UserLanguage
|
|
*/
|
|
class GetLanguageSystemTest extends SystemTestCase
|
|
{
|
|
public static $fixture = null;
|
|
|
|
public static function getOutputPrefix()
|
|
{
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* @param $api
|
|
* @param $params
|
|
* @dataProvider getApiForTesting
|
|
* @group GetLanguageSystemTest
|
|
*/
|
|
public function testApi($api, $params)
|
|
{
|
|
$this->runApiTests($api, $params);
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getApiForTesting()
|
|
{
|
|
$apiToCall = [
|
|
"UserLanguage.getLanguage",
|
|
"UserLanguage.getLanguageCode"
|
|
];
|
|
|
|
$apiToTest = [];
|
|
|
|
$apiToTest[] = [
|
|
$apiToCall,
|
|
[
|
|
'idSite' => self::$fixture->idSite,
|
|
'date' => self::$fixture->dateTime,
|
|
'periods' => ['day']
|
|
]
|
|
];
|
|
|
|
return $apiToTest;
|
|
}
|
|
|
|
|
|
public static function getPathToTestDirectory()
|
|
{
|
|
return dirname(__FILE__);
|
|
}
|
|
}
|
|
|
|
GetLanguageSystemTest::$fixture = new LanguageFixture();
|