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: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194: 195: 196: 197: 198: 199: 200: 201: 202: 203: 204: 205: 206: 207: 208: 209: 210: 211: 212: 213: 214: 215: 216: 217: 218: 219: 220: 221: 222: 223: 224: 225: 226: 227: 228: 229: 230: 231: 232: 233: 234: 235: 236: 237: 238: 239: 240: 241: 242: 243: 244: 245: 246: 247: 248: 249: 250:
<?php
namespace Nethgui\Test\Unit\Nethgui\View;
class TranslatorTest extends \PHPUnit_Framework_TestCase
{
protected $object;
protected $module;
protected function setUp()
{
$this->object = new \Nethgui\View\Translator('xy',
function ($catalog) {
return $catalog;
}, array('Nethgui_Basic'));
$this->object->setPhpWrapper(new TranslatorTestPhpWrapper(__CLASS__));
$parent = new TranslatorTestModule(array('Nethgui_ParentCatalog1', 'Nethgui_ParentCatalog2'));
$this->module = new TranslatorTestModule('Nethgui_ModuleCatalog');
$this->module->setParent($parent);
}
public function testConstructor1()
{
$o = new \Nethgui\View\Translator('xy', NULL, array('Nethgui_Basic'));
}
public function testWrongCatalog()
{
$o = new \Nethgui\View\Translator('xy',
function ($f) {
return $f;
}, array('Nethgui_P/q'));
$o->translate($this->module, 'LABEL');
}
public function testTranslate1()
{
$this->assertEquals('SYM_TRANSLATED1',
$this->object->translate($this->module, 'SYM_UNTRANSLATED'));
}
public function testTranslate2()
{
$this->assertEquals('SYM_TRANSLATED2',
$this->object->translate($this->module, 'SYM_ENGLISH_FALLBACK'));
$this->assertEquals('NX',
$this->object->translate($this->module, 'NX', array(), 'en'));
}
public function testTranslate3()
{
$this->assertEquals('SYM_TRANSLATED3 A B C',
$this->object->translate($this->module, 'SYM_INTERPOLATE1',
array('A', 'B', 'C')));
$this->assertEquals('SYM_TRANSLATED4 A B C',
$this->object->translate($this->module, 'SYM_INTERPOLATE2',
array(':x' => 'A', ':y' => 'B', ':z' => 'C')));
}
public function testTranslate4()
{
$this->assertEquals('NX',
$this->object->translate($this->module, 'NX', array(), ''));
}
public function testTranslate5()
{
$t = $this->object->translate($this->module, 1000, array(), '');
$this->assertEquals($t, '1000');
}
public function testTranslate6()
{
$this->object->translate($this->module, 'LABEL', array(), 'a.');
}
public function testTranslate7()
{
$this->assertEquals('SYM_TRANSLATED7a',
$this->object->translate($this->module, 'FROM_PARENT_CATALOG1'));
$this->assertEquals('SYM_TRANSLATED7b',
$this->object->translate($this->module, 'FROM_PARENT_CATALOG2'));
}
public function testSetPhpWrapper()
{
return $this->assertSame($this->object,
$this->object->setPhpWrapper(new \Nethgui\Utility\PhpWrapper(__CLASS__)));
}
public function testGetLog()
{
return $this->assertInstanceOf('\Nethgui\Log\LogInterface',
$this->object->getLog());
}
public function testSetLog()
{
$log = new \Nethgui\Log\Nullog();
$this->assertSame($log, $this->object->setLog($log)->getLog());
}
public function testGetLanguageCode()
{
$this->assertEquals('xy', $this->object->getLanguageCode());
}
}
class TranslatorTestPhpWrapper extends \Nethgui\Utility\PhpWrapper
{
public function __construct($identifier = __CLASS__)
{
parent::__construct($identifier);
}
public function phpInclude($filePath, $vars)
{
switch ($filePath) {
case 'Nethgui\Language\xy\Nethgui_Basic':
$vars['L']['SYM_UNTRANSLATED'] = 'SYM_TRANSLATED1';
break;
case 'Nethgui\Language\xy\Nethgui_ModuleCatalog':
$vars['L']['SYM_INTERPOLATE1'] = 'SYM_TRANSLATED3 ${0} ${1} ${2}';
$vars['L']['SYM_INTERPOLATE2'] = 'SYM_TRANSLATED4 ${:x} ${:y} ${:z}';
break;
case 'Nethgui\Language\en\Nethgui_ModuleCatalog':
$vars['L']['SYM_ENGLISH_FALLBACK'] = 'SYM_TRANSLATED2';
break;
case 'Nethgui\Language\xy\Nethgui_ParentCatalog1':
$vars['L']['FROM_PARENT_CATALOG1'] = 'SYM_TRANSLATED7a';
break;
case 'Nethgui\Language\xy\Nethgui_ParentCatalog2':
$vars['L']['FROM_PARENT_CATALOG2'] = 'SYM_TRANSLATED7b';
break;
default:
return parent::phpInclude($filePath, $vars);
}
return TRUE;
}
}
class TranslatorTestModule implements \Nethgui\Module\ModuleInterface, \Nethgui\Module\ModuleAttributesInterface
{
private $parent;
public function __construct($catalog = 'Nethgui_ModuleCatalog')
{
$this->catalog = $catalog;
}
public function getAttributesProvider()
{
return $this;
}
public function getIdentifier()
{
return 'TranslatorTestModule';
}
public function getParent()
{
return $this->parent;
}
public function initialize()
{
}
public function isInitialized()
{
return FALSE;
}
public function setParent(\Nethgui\Module\ModuleInterface $parentModule)
{
$this->parent = $parentModule;
return $this;
}
public function getCategory()
{
return 'Cat';
}
public function getDescription()
{
return 'Description';
}
public function getLanguageCatalog()
{
return $this->catalog;
}
public function getMenuPosition()
{
return 1;
}
public function getTags()
{
return 'Tag';
}
public function getTitle()
{
return 'Title';
}
}