Server IP : 85.214.239.14 / Your IP : 3.135.220.239 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /var/www/wordpress/phpMyAdmin/vendor/phpmyadmin/twig-i18n-extension/test/Node/ |
Upload File : |
<?php /* * This file is part of Twig. * * (c) 2010-2019 Fabien Potencier * (c) 2019 phpMyAdmin contributors * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PhpMyAdmin\Tests\Twig\Extensions\Node; use PhpMyAdmin\Twig\Extensions\Node\TransNode; use Twig\Node\Expression\ConstantExpression; use Twig\Node\Expression\FilterExpression; use Twig\Node\Expression\NameExpression; use Twig\Node\Node; use Twig\Node\PrintNode; use Twig\Node\TextNode; use Twig\Test\NodeTestCase; class TransTest extends NodeTestCase { /** * @covers TransNode::__construct */ public function testConstructor() { $count = new ConstantExpression(12, 0); $body = new Node(array( new TextNode('Hello', 0), ), array(), 0); $plural = new Node(array( new TextNode('Hey ', 0), new PrintNode(new NameExpression('name', 0), 0), new TextNode(', I have ', 0), new PrintNode(new NameExpression('count', 0), 0), new TextNode(' apples', 0), ), array(), 0); $node = new TransNode($body, $plural, $count, null, 0); $this->assertEquals($body, $node->getNode('body')); $this->assertEquals($count, $node->getNode('count')); $this->assertEquals($plural, $node->getNode('plural')); } public function getTests() { $tests = array(); $body = new NameExpression('foo', 0); $node = new TransNode($body, null, null, null, 0); $tests[] = array($node, sprintf('echo gettext(%s);', $this->getVariableGetter('foo'))); $body = new ConstantExpression('Hello', 0); $node = new TransNode($body, null, null, null, 0); $tests[] = array($node, 'echo gettext("Hello");'); $body = new Node(array( new TextNode('Hello', 0), ), array(), 0); $node = new TransNode($body, null, null, null, 0); $tests[] = array($node, 'echo gettext("Hello");'); $body = new Node(array( new TextNode('J\'ai ', 0), new PrintNode(new NameExpression('foo', 0), 0), new TextNode(' pommes', 0), ), array(), 0); $node = new TransNode($body, null, null, null, 0); $tests[] = array($node, sprintf('echo strtr(gettext("J\'ai %%foo%% pommes"), array("%%foo%%" => %s, ));', $this->getVariableGetter('foo'))); $count = new ConstantExpression(12, 0); $body = new Node(array( new TextNode('Hey ', 0), new PrintNode(new NameExpression('name', 0), 0), new TextNode(', I have one apple', 0), ), array(), 0); $plural = new Node(array( new TextNode('Hey ', 0), new PrintNode(new NameExpression('name', 0), 0), new TextNode(', I have ', 0), new PrintNode(new NameExpression('count', 0), 0), new TextNode(' apples', 0), ), array(), 0); $node = new TransNode($body, $plural, $count, null, 0); $tests[] = array($node, sprintf('echo strtr(ngettext("Hey %%name%%, I have one apple", "Hey %%name%%, I have %%count%% apples", abs(12)), array("%%name%%" => %s, "%%name%%" => %s, "%%count%%" => abs(12), ));', $this->getVariableGetter('name'), $this->getVariableGetter('name'))); // with escaper extension set to on $body = new Node(array( new TextNode('J\'ai ', 0), new PrintNode(new FilterExpression(new NameExpression('foo', 0), new ConstantExpression('escape', 0), new Node(), 0), 0), new TextNode(' pommes', 0), ), array(), 0); $node = new TransNode($body, null, null, null, 0); $tests[] = array($node, sprintf('echo strtr(gettext("J\'ai %%foo%% pommes"), array("%%foo%%" => %s, ));', $this->getVariableGetter('foo'))); // with notes $body = new ConstantExpression('Hello', 0); $notes = new TextNode('Notes for translators', 0); $node = new TransNode($body, null, null, $notes, 0); $tests[] = array($node, "// notes: Notes for translators\necho gettext(\"Hello\");"); $body = new ConstantExpression('Hello', 0); $notes = new TextNode("Notes for translators\nand line breaks", 0); $node = new TransNode($body, null, null, $notes, 0); $tests[] = array($node, "// notes: Notes for translators and line breaks\necho gettext(\"Hello\");"); $count = new ConstantExpression(5, 0); $body = new TextNode('There is 1 pending task', 0); $plural = new Node(array( new TextNode('There are ', 0), new PrintNode(new NameExpression('count', 0), 0), new TextNode(' pending tasks', 0), ), array(), 0); $notes = new TextNode('Notes for translators', 0); $node = new TransNode($body, $plural, $count, $notes, 0); $tests[] = array($node, "// notes: Notes for translators\n".'echo strtr(ngettext("There is 1 pending task", "There are %count% pending tasks", abs(5)), array("%count%" => abs(5), ));'); return $tests; } }