1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
|
<?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));
}
}
|