From 4f5b44bd3bd490309eb2ba7b44df4769816ba729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20L=C5=93uillet?= Date: Sat, 3 Aug 2013 19:26:54 +0200 Subject: twig implementation --- .../Translation/Tests/MessageSelectorTest.php | 80 ++++++++++++++++++++++ 1 file changed, 80 insertions(+) create mode 100644 vendor/symfony/translation/Symfony/Component/Translation/Tests/MessageSelectorTest.php (limited to 'vendor/symfony/translation/Symfony/Component/Translation/Tests/MessageSelectorTest.php') diff --git a/vendor/symfony/translation/Symfony/Component/Translation/Tests/MessageSelectorTest.php b/vendor/symfony/translation/Symfony/Component/Translation/Tests/MessageSelectorTest.php new file mode 100644 index 00000000..74956294 --- /dev/null +++ b/vendor/symfony/translation/Symfony/Component/Translation/Tests/MessageSelectorTest.php @@ -0,0 +1,80 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +namespace Symfony\Component\Translation\Tests; + +use Symfony\Component\Translation\MessageSelector; + +class MessageSelectorTest extends \PHPUnit_Framework_TestCase +{ + /** + * @dataProvider getChooseTests + */ + public function testChoose($expected, $id, $number) + { + $selector = new MessageSelector(); + + $this->assertEquals($expected, $selector->choose($id, $number, 'en')); + } + + /** + * @expectedException InvalidArgumentException + */ + public function testChooseWhenNoEnoughChoices() + { + $selector = new MessageSelector(); + + $selector->choose('foo', 10, 'en'); + } + + public function getChooseTests() + { + return array( + array('There is no apples', '{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples', 0), + array('There is no apples', '{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples', 0), + array('There is no apples', '{0}There is no apples|{1} There is one apple|]1,Inf] There is %count% apples', 0), + + array('There is one apple', '{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples', 1), + + array('There is %count% apples', '{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples', 10), + array('There is %count% apples', '{0} There is no apples|{1} There is one apple|]1,Inf]There is %count% apples', 10), + array('There is %count% apples', '{0} There is no apples|{1} There is one apple|]1,Inf] There is %count% apples', 10), + + array('There is %count% apples', 'There is one apple|There is %count% apples', 0), + array('There is one apple', 'There is one apple|There is %count% apples', 1), + array('There is %count% apples', 'There is one apple|There is %count% apples', 10), + + array('There is %count% apples', 'one: There is one apple|more: There is %count% apples', 0), + array('There is one apple', 'one: There is one apple|more: There is %count% apples', 1), + array('There is %count% apples', 'one: There is one apple|more: There is %count% apples', 10), + + array('There is no apples', '{0} There is no apples|one: There is one apple|more: There is %count% apples', 0), + array('There is one apple', '{0} There is no apples|one: There is one apple|more: There is %count% apples', 1), + array('There is %count% apples', '{0} There is no apples|one: There is one apple|more: There is %count% apples', 10), + + array('', '{0}|{1} There is one apple|]1,Inf] There is %count% apples', 0), + array('', '{0} There is no apples|{1}|]1,Inf] There is %count% apples', 1), + + // Indexed only tests which are Gettext PoFile* compatible strings. + array('There are %count% apples', 'There is one apple|There are %count% apples', 0), + array('There is one apple', 'There is one apple|There are %count% apples', 1), + array('There are %count% apples', 'There is one apple|There are %count% apples', 2), + + // Tests for float numbers + array('There is almost one apple', '{0} There is no apples|]0,1[ There is almost one apple|{1} There is one apple|[1,Inf] There is more than one apple', 0.7), + array('There is one apple', '{0} There is no apples|]0,1[There are %count% apples|{1} There is one apple|[1,Inf] There is more than one apple', 1), + array('There is more than one apple', '{0} There is no apples|]0,1[There are %count% apples|{1} There is one apple|[1,Inf] There is more than one apple', 1.7), + array('There is no apples', '{0} There is no apples|]0,1[There are %count% apples|{1} There is one apple|[1,Inf] There is more than one apple', 0), + array('There is no apples', '{0} There is no apples|]0,1[There are %count% apples|{1} There is one apple|[1,Inf] There is more than one apple', 0.0), + array('There is no apples', '{0.0} There is no apples|]0,1[There are %count% apples|{1} There is one apple|[1,Inf] There is more than one apple', 0), + ); + } +} -- cgit v1.2.3