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 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
<?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\Access;
use Piwik\Common;
use Piwik\Config;
use Piwik\Plugins\UserCountry\API;
use Piwik\Plugins\GeoIp2\LocationProvider\GeoIp2;
use Piwik\Plugins\UserCountry\LocationProvider;
use Piwik\Plugins\UserCountry\LocationProvider\DefaultProvider;
use Piwik\Tests\Framework\TestCase\IntegrationTestCase;
/**
* @group UserCountry
* @group APITest
* @group Plugins
*/
class APITest extends IntegrationTestCase
{
/**
* @var API
*/
private $api;
public function setUp(): void
{
parent::setUp();
$this->api = API::getInstance();
// reset location providers as they might be manipulated by other tests
LocationProvider::$providers = null;
LocationProvider::getAllProviders();
}
public function testSetLocationProvider()
{
$locationProvider = GeoIp2\Php::ID;
$this->api->setLocationProvider($locationProvider);
$this->assertEquals($locationProvider, Common::getCurrentLocationProviderId());
$locationProvider = DefaultProvider::ID;
$this->api->setLocationProvider($locationProvider);
$this->assertEquals($locationProvider, Common::getCurrentLocationProviderId());
}
public function testSetLocationProviderInvalid()
{
$this->expectException(\Exception::class);
$locationProvider = 'invalidProvider';
$this->api->setLocationProvider($locationProvider);
}
public function testSetLocationProviderNoSuperUser()
{
$this->expectException(\Exception::class);
Access::getInstance()->setSuperUserAccess(false);
$locationProvider = GeoIp2\Php::ID;
$this->api->setLocationProvider($locationProvider);
}
public function testSetLocationProviderDisabledInConfig()
{
$this->expectException(\Exception::class);
Config::getInstance()->General['enable_geolocation_admin'] = 0;
$locationProvider = GeoIp2\Php::ID;
$this->api->setLocationProvider($locationProvider);
}
/**
* @dataProvider getTestDataForGetLocationFromIP
*/
public function testGetLocationFromIP($ipAddress, $expected, $ipAddressHeader = null)
{
if (!empty($ipAddressHeader)) {
$_SERVER['REMOTE_ADDR'] = $ipAddressHeader;
}
// Default provider will guess the location based on HTTP_ACCEPT_LANGUAGE header
$_SERVER['HTTP_ACCEPT_LANGUAGE'] = 'en_US';
$location = $this->api->getLocationFromIP($ipAddress);
$this->assertEquals($expected, $location);
}
public function getTestDataForGetLocationFromIP()
{
return [
['113.62.1.1', [
'country_code' => 'us',
'continent_code' => 'amn',
'continent_name' => 'Intl_Continent_amn',
'country_name' => 'General_Unknown',
'ip' => '113.62.1.1',
]],
[null, [
'country_code' => 'us',
'continent_code' => 'amn',
'continent_name' => 'Intl_Continent_amn',
'country_name' => 'General_Unknown',
'ip' => '151.100.101.92',
], '151.100.101.92'],
];
}
}
|