mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
90 lines
2.8 KiB
PHP
90 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* @package sapphire
|
|
* @subpackage i18n
|
|
*/
|
|
|
|
class i18nSSLegacyAdapterTest extends SapphireTest {
|
|
|
|
function setUp() {
|
|
parent::setUp();
|
|
|
|
$this->alternateBasePath = $this->getCurrentAbsolutePath() . "/_fakewebroot";
|
|
$this->alternateBaseSavePath = TEMP_FOLDER . '/i18nTextCollectorTest_webroot';
|
|
FileSystem::makeFolder($this->alternateBaseSavePath);
|
|
Director::setBaseFolder($this->alternateBasePath);
|
|
|
|
// Push a template loader running from the fake webroot onto the stack.
|
|
$templateManifest = new SS_TemplateManifest($this->alternateBasePath, false, true);
|
|
$templateManifest->regenerate(false);
|
|
SS_TemplateLoader::instance()->pushManifest($templateManifest);
|
|
$this->_oldTheme = SSViewer::current_theme();
|
|
SSViewer::set_theme('testtheme1');
|
|
|
|
$classManifest = new SS_ClassManifest($this->alternateBasePath, true, true, false);
|
|
SS_ClassLoader::instance()->pushManifest($classManifest);
|
|
|
|
$this->originalLocale = i18n::get_locale();
|
|
|
|
// Override default adapter to avoid cached translations between tests.
|
|
// Emulates behaviour in i18n::get_translators()
|
|
$this->origAdapter = i18n::get_translator('core');
|
|
$adapter = new Zend_Translate(array(
|
|
'adapter' => 'i18nSSLegacyAdapter',
|
|
'locale' => i18n::default_locale(),
|
|
'disableNotices' => true,
|
|
));
|
|
i18n::register_translator($adapter, 'core');
|
|
$adapter->removeCache();
|
|
i18n::include_by_locale('en');
|
|
}
|
|
|
|
function tearDown() {
|
|
SS_TemplateLoader::instance()->popManifest();
|
|
SS_ClassLoader::instance()->popManifest();
|
|
i18n::set_locale($this->originalLocale);
|
|
Director::setBaseFolder(null);
|
|
SSViewer::set_theme($this->_oldTheme);
|
|
i18n::register_translator($this->origAdapter, 'core');
|
|
|
|
parent::tearDown();
|
|
}
|
|
|
|
function testTranslate() {
|
|
i18n::set_locale('en_US');
|
|
$this->assertEquals(
|
|
'Legacy translation',
|
|
// defined in i18nothermodule/lang/en_US.php
|
|
i18n::_t('i18nOtherModule.LEGACY'),
|
|
'Finds original strings in PHP module files'
|
|
);
|
|
$this->assertEquals(
|
|
'Legacy translation',
|
|
// defined in themes/testtheme1/lang/en_US.php
|
|
i18n::_t('i18nOtherModule.LEGACYTHEME'),
|
|
'Finds original strings in theme files'
|
|
);
|
|
i18n::set_locale('de_DE');
|
|
$this->assertEquals(
|
|
'Legacy translation (de_DE)',
|
|
// defined in i18nothermodule/lang/de_DE.php
|
|
i18n::_t('i18nOtherModule.LEGACY'),
|
|
'Finds translations in PHP module files'
|
|
);
|
|
$this->assertEquals(
|
|
'Legacy translation (de_DE)',
|
|
// defined in themes/testtheme1/lang/de_DE.php
|
|
i18n::_t('i18nOtherModule.LEGACYTHEME'),
|
|
'Finds original strings in theme files'
|
|
);
|
|
// TODO Implement likely subtags solution
|
|
// i18n::set_locale('de');
|
|
// $this->assertEquals(
|
|
// 'Legacy translation (de_DE)',
|
|
// // defined in i18nothermodule/lang/de_DE.php
|
|
// i18n::_t('i18nOtherModule.LEGACY'),
|
|
// 'Finds translations in PHP module files if only language locale is set'
|
|
// );
|
|
}
|
|
|
|
} |