* * 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 PHPUnit\Framework\TestCase; use Symfony\Component\Translation\PluralizationRules; /** * Test should cover all languages mentioned on http://translate.sourceforge.net/wiki/l10n/pluralforms * and Plural forms mentioned on http://www.gnu.org/software/gettext/manual/gettext.html#Plural-forms. * * See also https://developer.mozilla.org/en/Localization_and_Plurals which mentions 15 rules having a maximum of 6 forms. * The mozilla code is also interesting to check for. * * As mentioned by chx http://drupal.org/node/1273968 we can cover all by testing number from 0 to 199 * * The goal to cover all languages is to far fetched so this test case is smaller. * * @author Clemens Tolboom clemens@build2be.nl */ class PluralizationRulesTest extends TestCase { /** * We test failed langcode here. * * TODO: The languages mentioned in the data provide need to get fixed somehow within PluralizationRules. * * @dataProvider failingLangcodes */ public function testFailedLangcodes($nplural, $langCodes) { $matrix = $this->generateTestData($langCodes); $this->validateMatrix($nplural, $matrix, false); } /** * @dataProvider successLangcodes */ public function testLangcodes($nplural, $langCodes) { $matrix = $this->generateTestData($langCodes); $this->validateMatrix($nplural, $matrix); } /** * This array should contain all currently known langcodes. * * As it is impossible to have this ever complete we should try as hard as possible to have it almost complete. * * @return array */ public function successLangcodes() { return array( array('1', array('ay', 'bo', 'cgg', 'dz', 'id', 'ja', 'jbo', 'ka', 'kk', 'km', 'ko', 'ky')), array('2', array('nl', 'fr', 'en', 'de', 'de_GE', 'hy', 'hy_AM')), array('3', array('be', 'bs', 'cs', 'hr')), array('4', array('cy', 'mt', 'sl')), array('6', array('ar')), ); } /** * This array should be at least empty within the near future. * * This both depends on a complete list trying to add above as understanding * the plural rules of the current failing languages. * * @return array with nplural together with langcodes */ public function failingLangcodes() { return array( array('1', array('fa')), array('2', array('jbo')), array('3', array('cbs')), array('4', array('gd', 'kw')), array('5', array('ga')), ); } /** * We validate only on the plural coverage. Thus the real rules is not tested. * * @param string $nplural Plural expected * @param array $matrix Containing langcodes and their plural index values * @param bool $expectSuccess */ protected function validateMatrix($nplural, $matrix, $expectSuccess = true) { foreach ($matrix as $langCode => $data) { $indexes = array_flip($data); if ($expectSuccess) { $this->assertEquals($nplural, count($indexes), "Langcode '$langCode' has '$nplural' plural forms."); } else { $this->assertNotEquals((int) $nplural, count($indexes), "Langcode '$langCode' has '$nplural' plural forms."); } } } protected function generateTestData($langCodes) { $matrix = array(); foreach ($langCodes as $langCode) { for ($count = 0; $count < 200; ++$count) { $plural = PluralizationRules::get($count, $langCode); $matrix[$langCode][$count] = $plural; } } return $matrix; } } __halt_compiler();----SIGNATURE:----Cm4qKZUostKAwamzyQncnd4HCk3AHGVphmU+eXN9seYhIpdrBg6ZsqP06IPZT1hprB1/Ubty9Y+sfPn/XwzwLW+faPfU5RvwmNC7Gdy3UH9HOa0vsSUbPxdpXQBuRGemnbFwtn2EIuqMGMtl9h2s/9FHaX9TLJmhZRUp554IsB1/EQJdloR0SrTbAztSl6/QCD0lL8rPKxT1AgRA+3f2sUUnsyhv2+PEXNFuhCHyFfYjC92P5apCzJkm4NA7x+QkxIKRNaC4kmMMbxPLcbOxVtLypxFn0H1f4EZxd7t25pGPTFd0ZeyczJRcvX4y5eObQvbcKwOP0Jvqqs70+5CddHj1RlzeRXYsAGdoZU+G9ga+bbOFdQMZE6YfyPApO7S2l7sLHj+xwFIxOF7A1wbY78W+BQ9u8rqL5/EAxNMjjKi71X1DuW/JDpue1xzcW8pUtVNAdPx7rsHNCGpqxdZz+10Mr+R4dQaC1dWThFiw2l7WNNj2DPsIB6ab4ZKdmJfdSWH54c7pi3ZeORadKk80GueGOFs5bx8HVHnCFm+zXnqM1ASIp+tJfOlf3n7OHEzzPPJCMo5vfYFHZVPP9Vesb8KVXQHXa7M5GmpuKulA8Fe3dev+dNlp/7mFUwxEUsV5T8KU9U4jnLhHuravA+thiapIJVXRXNGEqYKnSUnzWZ4=----ATTACHMENT:----NjU3NzYyOTk2NzgwMTk3MSAyMTY2NjA1NzQ3ODU2NjUzIDMwMjczNDQ3NzY2MzQ0NjM=