قرینه از
https://github.com/matomo-org/matomo.git
synced 2025-08-22 15:07:44 +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>
58 خطوط
1.9 KiB
PHP
58 خطوط
1.9 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\UserCountry\tests\Integration;
|
|
|
|
use Piwik\Plugins\GeoIp2\LocationProvider\GeoIp2\Php;
|
|
use Piwik\Plugins\GeoIp2\LocationProvider\GeoIp2\ServerModule;
|
|
use Piwik\Plugins\UserCountry\LocationProvider;
|
|
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
|
|
|
|
/**
|
|
* @group UserCountry
|
|
* @group LocationProvider
|
|
*/
|
|
class LocationProviderTest extends IntegrationTestCase
|
|
{
|
|
public function testGetAllProviderInfo()
|
|
{
|
|
$allProviders = LocationProvider::getAllProviderInfo();
|
|
|
|
// We currently have 4 Providers shipped with core
|
|
$this->assertSame(4, count($allProviders));
|
|
$this->assertEquals(['disabled', 'default', 'geoip2php', 'geoip2server'], array_keys($allProviders));
|
|
}
|
|
|
|
public function testGetAllProviderInfoWithDuplicateOrder()
|
|
{
|
|
\Piwik\Tests\Framework\Mock\LocationProvider::$locations = [
|
|
[
|
|
LocationProvider::CITY_NAME_KEY => 'Manchaster',
|
|
LocationProvider::REGION_CODE_KEY => '15',
|
|
LocationProvider::COUNTRY_CODE_KEY => 'US',
|
|
LocationProvider::LATITUDE_KEY => '12',
|
|
LocationProvider::LONGITUDE_KEY => '11',
|
|
LocationProvider::ISP_KEY => 'Facebook',
|
|
],
|
|
];
|
|
|
|
LocationProvider::$providers = [
|
|
new LocationProvider\DefaultProvider(),
|
|
new Php(),
|
|
new ServerModule(),
|
|
new \Piwik\Tests\Framework\Mock\LocationProvider(),
|
|
];
|
|
|
|
$allProviders = LocationProvider::getAllProviderInfo();
|
|
|
|
$this->assertSame(4, count($allProviders));
|
|
$this->assertEquals(['default', 'geoip2php', 'mock_provider', 'geoip2server'], array_keys($allProviders));
|
|
}
|
|
}
|