View source
<?php
namespace Drupal\locale\Tests;
use Drupal\Core\StringTranslation\PluralTranslatableMarkup;
use Drupal\simpletest\WebTestBase;
class LocalePluralFormatTest extends WebTestBase {
public static $modules = array(
'locale',
);
protected function setUp() {
parent::setUp();
$admin_user = $this
->drupalCreateUser(array(
'administer languages',
'translate interface',
'access administration pages',
));
$this
->drupalLogin($admin_user);
}
public function testGetPluralFormat() {
$this
->importPoFile($this
->getPoFileWithSimplePlural(), array(
'langcode' => 'fr',
));
$this
->importPoFile($this
->getPoFileWithComplexPlural(), array(
'langcode' => 'hr',
));
$this
->importPoFile($this
->getPoFileWithMissingPlural(), array(
'langcode' => 'fr',
'overwrite_options[not_customized]' => TRUE,
));
$this
->importPoFile($this
->getPoFileWithBrokenPlural(), array(
'langcode' => 'hr',
'overwrite_options[not_customized]' => TRUE,
));
drupal_static_reset('locale_get_plural');
drupal_static_reset('locale_get_plural:plurals');
drupal_static_reset('locale');
$plural_strings = array(
'en' => array(
0 => '1 hour',
1 => '@count hours',
),
'fr' => array(
0 => '@count heure',
1 => '@count heures',
),
'hr' => array(
0 => '@count sat',
1 => '@count sata',
2 => '@count sati',
),
'hu' => array(
0 => '1 hour',
-1 => '@count hours',
),
);
$plural_tests = array(
'en' => array(
1 => 0,
0 => 1,
5 => 1,
123 => 1,
235 => 1,
),
'fr' => array(
1 => 0,
0 => 0,
5 => 1,
123 => 1,
235 => 1,
),
'hr' => array(
1 => 0,
21 => 0,
0 => 2,
2 => 1,
8 => 2,
123 => 1,
235 => 2,
),
'hu' => array(
1 => -1,
21 => -1,
0 => -1,
),
);
foreach ($plural_tests as $langcode => $tests) {
foreach ($tests as $count => $expected_plural_index) {
$this
->assertIdentical(locale_get_plural($count, $langcode), $expected_plural_index, 'Computed plural index for ' . $langcode . ' for count ' . $count . ' is ' . $expected_plural_index);
$expected_plural_index = $count == 1 ? 0 : $expected_plural_index;
$expected_plural_string = str_replace('@count', $count, $plural_strings[$langcode][$expected_plural_index]);
$this
->assertIdentical(\Drupal::translation()
->formatPlural($count, '1 hour', '@count hours', array(), array(
'langcode' => $langcode,
))
->render(), $expected_plural_string, 'Plural translation of 1 hours / @count hours for count ' . $count . ' in ' . $langcode . ' is ' . $expected_plural_string);
$translated_string = \Drupal::translation()
->translate('1 hour' . PluralTranslatableMarkup::DELIMITER . '@count hours', array(), array(
'langcode' => $langcode,
));
$plural = PluralTranslatableMarkup::createFromTranslatedString($count, $translated_string, array(), array(
'langcode' => $langcode,
));
$this
->assertIdentical($plural
->render(), $expected_plural_string);
}
}
}
public function testPluralEditDateFormatter() {
$this
->importPoFile($this
->getPoFileWithSimplePlural(), array(
'langcode' => 'fr',
));
$this
->config('system.site')
->set('default_langcode', 'fr')
->save();
$this
->drupalGet('user');
$this
->assertText("seconde", "'Member for' text is translated.");
$path = 'admin/config/regional/translate/';
$search = array(
'langcode' => 'fr',
'translation' => 'translated',
);
$this
->drupalPostForm($path, $search, t('Filter'));
$this
->assertText('@count seconde');
$this
->assertText('@count secondes');
\Drupal::translation()
->formatPlural(1, '1 second', '@count seconds', array(), array(
'langcode' => 'fr',
))
->render();
$lid = db_query("SELECT lid FROM {locales_source} WHERE source = :source AND context = ''", array(
':source' => "1 second" . LOCALE_PLURAL_DELIMITER . "@count seconds",
))
->fetchField();
$search = array(
'string' => '1 second',
'langcode' => 'fr',
);
$this
->drupalPostForm('admin/config/regional/translate', $search, t('Filter'));
$edit = array(
"strings[{$lid}][translations][0]" => '1 seconde updated',
"strings[{$lid}][translations][1]" => '@count secondes updated',
);
$this
->drupalPostForm($path, $edit, t('Save translations'));
$this
->assertUniqueText('@count seconds', 'Interface translation input for @count seconds only appears once.');
$this
->drupalGet('user');
$this
->assertText("seconde", "'Member for' text is translated.");
}
public function testPluralEditExport() {
$this
->importPoFile($this
->getPoFileWithSimplePlural(), array(
'langcode' => 'fr',
));
$this
->importPoFile($this
->getPoFileWithComplexPlural(), array(
'langcode' => 'hr',
));
$this
->drupalPostForm('admin/config/regional/translate/export', array(
'langcode' => 'fr',
), t('Export'));
$this
->assertRaw('# French translation of Drupal', 'Exported French translation file.');
$this
->assertRaw("msgid \"Monday\"\nmsgstr \"lundi\"", 'French translations present in exported file.');
$this
->assertRaw("msgid \"1 hour\"\nmsgid_plural \"@count hours\"\nmsgstr[0] \"@count heure\"\nmsgstr[1] \"@count heures\"", 'Plural translations exported properly.');
$this
->drupalPostForm('admin/config/regional/translate/export', array(
'langcode' => 'hr',
), t('Export'));
$this
->assertRaw('# Croatian translation of Drupal', 'Exported Croatian translation file.');
$this
->assertRaw("msgid \"Monday\"\nmsgstr \"Ponedjeljak\"", 'Croatian translations present in exported file.');
$this
->assertRaw("msgid \"1 hour\"\nmsgid_plural \"@count hours\"\nmsgstr[0] \"@count sat\"\nmsgstr[1] \"@count sata\"\nmsgstr[2] \"@count sati\"", 'Plural translations exported properly.');
$this
->drupalGet('admin/config/regional/translate');
$this
->assertText("1 hour");
$this
->assertText("@count hours");
$path = 'admin/config/regional/translate/';
$search = array(
'langcode' => 'hr',
);
$this
->drupalPostForm($path, $search, t('Filter'));
$this
->assertText('Singular form');
$this
->assertText('First plural form');
$this
->assertText('2. plural form');
$this
->assertNoText('3. plural form');
$this
->assertText('@count sat');
$this
->assertText('@count sata');
$this
->assertText('@count sati');
$lid = db_query("SELECT lid FROM {locales_source} WHERE source = :source AND context = ''", array(
':source' => "1 hour" . LOCALE_PLURAL_DELIMITER . "@count hours",
))
->fetchField();
$edit = array(
"strings[{$lid}][translations][1]" => '@count sata edited',
);
$this
->drupalPostForm($path, $edit, t('Save translations'));
$search = array(
'langcode' => 'fr',
);
$this
->drupalPostForm('admin/config/regional/translate', $search, t('Filter'));
$this
->assertText('@count heure');
$this
->assertText('@count heures');
$this
->assertNoText('2. plural form');
$edit = array(
"strings[{$lid}][translations][0]" => '@count heure edited',
);
$this
->drupalPostForm($path, $edit, t('Save translations'));
\Drupal::translation()
->formatPlural(1, '1 day', '@count days', array(), array(
'langcode' => 'fr',
))
->render();
$lid = db_query("SELECT lid FROM {locales_source} WHERE source = :source AND context = ''", array(
':source' => "1 day" . LOCALE_PLURAL_DELIMITER . "@count days",
))
->fetchField();
$search = array(
'string' => '1 day',
'langcode' => 'fr',
);
$this
->drupalPostForm('admin/config/regional/translate', $search, t('Filter'));
$edit = array(
"strings[{$lid}][translations][0]" => '1 jour',
"strings[{$lid}][translations][1]" => '@count jours',
);
$this
->drupalPostForm($path, $edit, t('Save translations'));
$search = array(
'string' => '1 day',
'langcode' => 'hr',
);
$this
->drupalPostForm('admin/config/regional/translate', $search, t('Filter'));
$edit = array(
"strings[{$lid}][translations][0]" => '@count dan',
"strings[{$lid}][translations][1]" => '@count dana',
"strings[{$lid}][translations][2]" => '@count dana',
);
$this
->drupalPostForm($path, $edit, t('Save translations'));
$this
->drupalPostForm('admin/config/regional/translate/export', array(
'langcode' => 'fr',
), t('Export'));
$this
->assertRaw("msgid \"1 hour\"\nmsgid_plural \"@count hours\"\nmsgstr[0] \"@count heure edited\"\nmsgstr[1] \"@count heures\"", 'Edited French plural translations for hours exported properly.');
$this
->assertRaw("msgid \"1 day\"\nmsgid_plural \"@count days\"\nmsgstr[0] \"1 jour\"\nmsgstr[1] \"@count jours\"", 'Added French plural translations for days exported properly.');
$this
->drupalPostForm('admin/config/regional/translate/export', array(
'langcode' => 'hr',
), t('Export'));
$this
->assertRaw("msgid \"1 hour\"\nmsgid_plural \"@count hours\"\nmsgstr[0] \"@count sat\"\nmsgstr[1] \"@count sata edited\"\nmsgstr[2] \"@count sati\"", 'Edited Croatian plural translations exported properly.');
$this
->assertRaw("msgid \"1 day\"\nmsgid_plural \"@count days\"\nmsgstr[0] \"@count dan\"\nmsgstr[1] \"@count dana\"\nmsgstr[2] \"@count dana\"", 'Added Croatian plural translations exported properly.');
}
public function importPoFile($contents, array $options = array()) {
$name = tempnam('temporary://', "po_") . '.po';
file_put_contents($name, $contents);
$options['files[file]'] = $name;
$this
->drupalPostForm('admin/config/regional/translate/import', $options, t('Import'));
drupal_unlink($name);
}
public function getPoFileWithSimplePlural() {
return <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\\n"
msgid "1 hour"
msgid_plural "@count hours"
msgstr[0] "@count heure"
msgstr[1] "@count heures"
msgid "1 second"
msgid_plural "@count seconds"
msgstr[0] "@count seconde"
msgstr[1] "@count secondes"
msgid "Monday"
msgstr "lundi"
EOF;
}
public function getPoFileWithComplexPlural() {
return <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\\n"
msgid "1 hour"
msgid_plural "@count hours"
msgstr[0] "@count sat"
msgstr[1] "@count sata"
msgstr[2] "@count sati"
msgid "Monday"
msgstr "Ponedjeljak"
EOF;
}
public function getPoFileWithMissingPlural() {
return <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
msgid "Monday"
msgstr "lundi"
EOF;
}
public function getPoFileWithBrokenPlural() {
return <<<EOF
msgid ""
msgstr ""
"Project-Id-Version: Drupal 8\\n"
"MIME-Version: 1.0\\n"
"Content-Type: text/plain; charset=UTF-8\\n"
"Content-Transfer-Encoding: 8bit\\n"
"Plural-Forms: broken, will not parse\\n"
msgid "Monday"
msgstr "Ponedjeljak"
EOF;
}
}