121 lines
3.6 KiB
PHP
121 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace GeoIp2\Test\WebService;
|
|
|
|
use GeoIp2\Database\Reader;
|
|
|
|
class ReaderTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testDefaultLocale()
|
|
{
|
|
$reader = new Reader('maxmind-db/test-data/GeoIP2-City-Test.mmdb');
|
|
// Needed for PHP 5.3
|
|
$that = $this;
|
|
$this->checkAllMethods(
|
|
function ($method) use (&$that, &$reader) {
|
|
$record = $reader->$method('81.2.69.160');
|
|
$that->assertEquals('United Kingdom', $record->country->name);
|
|
}
|
|
);
|
|
$reader->close();
|
|
}
|
|
|
|
public function testLocaleList()
|
|
{
|
|
$reader = new Reader(
|
|
'maxmind-db/test-data/GeoIP2-City-Test.mmdb',
|
|
array('xx', 'ru', 'pt-BR', 'es', 'en')
|
|
);
|
|
$that = $this;
|
|
$this->checkAllMethods(
|
|
function ($method) use (&$that, &$reader) {
|
|
$record = $reader->$method('81.2.69.160');
|
|
$that->assertEquals('Великобритания', $record->country->name);
|
|
}
|
|
);
|
|
$reader->close();
|
|
}
|
|
|
|
public function testHasIpAddress()
|
|
{
|
|
$reader = new Reader('maxmind-db/test-data/GeoIP2-City-Test.mmdb');
|
|
$that = $this;
|
|
$this->checkAllMethods(
|
|
function ($method) use (&$that, &$reader) {
|
|
$record = $reader->$method('81.2.69.160');
|
|
$that->assertEquals('81.2.69.160', $record->traits->ipAddress);
|
|
}
|
|
);
|
|
$reader->close();
|
|
}
|
|
|
|
/**
|
|
* @expectedException GeoIp2\Exception\AddressNotFoundException
|
|
* @expectedExceptionMessage The address 10.10.10.10 is not in the database.
|
|
*/
|
|
public function testUnknownAddress()
|
|
{
|
|
$reader = new Reader('maxmind-db/test-data/GeoIP2-City-Test.mmdb');
|
|
$reader->city('10.10.10.10');
|
|
$reader->close();
|
|
}
|
|
|
|
/**
|
|
* @expectedException InvalidArgumentException
|
|
* @expectedExceptionMessage is not a valid IP address
|
|
*/
|
|
public function testInvalidAddress()
|
|
{
|
|
$reader = new Reader('maxmind-db/test-data/GeoIP2-City-Test.mmdb');
|
|
$reader->city('invalid');
|
|
$reader->close();
|
|
}
|
|
|
|
public function testConnectionType()
|
|
{
|
|
$reader = new Reader('maxmind-db/test-data/GeoIP2-Connection-Type-Test.mmdb');
|
|
$ipAddress = '1.0.1.0';
|
|
|
|
$record = $reader->connectionType($ipAddress);
|
|
$this->assertEquals('Cable/DSL', $record->connectionType);
|
|
$this->assertEquals($ipAddress, $record->ipAddress);
|
|
$reader->close();
|
|
}
|
|
|
|
public function testDomain()
|
|
{
|
|
$reader = new Reader('maxmind-db/test-data/GeoIP2-Domain-Test.mmdb');
|
|
|
|
$ipAddress = '1.2.0.0';
|
|
$record = $reader->domain($ipAddress);
|
|
$this->assertEquals('maxmind.com', $record->domain);
|
|
$this->assertEquals($ipAddress, $record->ipAddress);
|
|
$reader->close();
|
|
}
|
|
|
|
public function testIsp()
|
|
{
|
|
$reader = new Reader('maxmind-db/test-data/GeoIP2-ISP-Org-Test.mmdb');
|
|
|
|
$ipAddress = '2001:1700::';
|
|
$record = $reader->isp($ipAddress);
|
|
$this->assertEquals(6730, $record->autonomousSystemNumber);
|
|
$this->assertEquals(
|
|
'Sunrise Communications AG',
|
|
$record->autonomousSystemOrganization
|
|
);
|
|
|
|
// XXX - Add org/isp when available
|
|
|
|
$this->assertEquals($ipAddress, $record->ipAddress);
|
|
$reader->close();
|
|
}
|
|
|
|
public function checkAllMethods($testCb)
|
|
{
|
|
foreach (array('city', 'cityIspOrg', 'country', 'omni') as $method) {
|
|
$testCb($method);
|
|
}
|
|
}
|
|
}
|