Added name testing

This commit is contained in:
Gregory Oschwald 2013-05-09 07:45:23 -07:00
parent ed6166f934
commit 954e537a0a
3 changed files with 83 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<?php
namespace GeoIP2\Test\Webservice;
namespace GeoIP2\Test\Model;
use GeoIP2\Model\Country;

View File

@ -0,0 +1,81 @@
<?php
namespace GeoIP2\Test\Model;
use GeoIP2\Model\Country;
class NameTest extends \PHPUnit_Framework_TestCase
{
public $raw = array(
'continent' => array(
'continent_code' => 'NA',
'geoname_id' => 42,
'names' => array(
'en' => 'North America',
'zh-CN' => '北美洲',
),
),
'country' => array(
'geoname_id' => 1,
'iso_code' => 'US',
'names' => array(
'en' => 'United States of America',
'ru' => 'объединяет государства',
'zh-CN' => '美国',
),
),
'traits' => array(
'ip_address' => '1.2.3.4',
),
);
public function testFallback()
{
$model = new Country($this->raw, array( 'ru', 'zh-CN', 'en' ));
$this->assertEquals(
'北美洲',
$model->continent->name,
'continent name is in Chinese (no Russian available)'
);
$this->assertEquals(
'объединяет государства',
$model->country->name,
'country name is in Russian'
);
}
public function testTwoFallbacks() {
$model = new Country($this->raw, array('ru', 'ja'));
$this->assertEquals(
null,
$model->continent->name,
'continent name is undef (no Russian or Japanese available)'
);
$this->assertEquals(
'объединяет государства',
$model->country->name,
'country name is in Russian'
);
}
public function testNoFallbacks()
{
$model = new Country($this->raw, array('ja'));
$this->assertEquals(
null,
$model->continent->name,
'continent name is undef (no Japanese available) '
);
$this->assertEquals(
null,
$model->country->name,
'country name is undef (no Japanese available) '
);
}
}

View File

@ -1,6 +1,6 @@
<?php
namespace GeoIP2\Test\Webservice;
namespace GeoIP2\Test\Model;
use GeoIP2\Model\Omni;