diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-02 23:08:41 +0200 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-08-02 23:08:41 +0200 |
commit | e04bf0aaeb92103ef432e56f1d6d712599952cee (patch) | |
tree | a56c98211a17812379a85ea76125b47e3616c5d9 /tests/lib/l10n.php | |
parent | 550b647d8a777c11b74377002d58b4806f9e97e5 (diff) | |
download | nextcloud-server-e04bf0aaeb92103ef432e56f1d6d712599952cee.tar.gz nextcloud-server-e04bf0aaeb92103ef432e56f1d6d712599952cee.zip |
unit tests for plural translations added
Diffstat (limited to 'tests/lib/l10n.php')
-rw-r--r-- | tests/lib/l10n.php | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/tests/lib/l10n.php b/tests/lib/l10n.php new file mode 100644 index 00000000000..846a2f22c8e --- /dev/null +++ b/tests/lib/l10n.php @@ -0,0 +1,55 @@ +<?php +/** + * Copyright (c) 2013 Thomas Müller <thomas.mueller@tmit.eu> + * This file is licensed under the Affero General Public License version 3 or + * later. + * See the COPYING-README file. + */ + +class Test_L10n extends PHPUnit_Framework_TestCase { + + public function testGermanPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/de.php'; + + $l->load($transFile); + $this->assertEquals('1 Datei', (string)$l->n('%n file', '%n files', 1, array(1))); + $this->assertEquals('2 Dateien', (string)$l->n('%n file', '%n files', 2, array(2))); + } + + public function testRussianPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/ru.php'; + + $l->load($transFile); + $this->assertEquals('1 файл', (string)$l->n('%n file', '%n files', 1)); + $this->assertEquals('2 файла', (string)$l->n('%n file', '%n files', 2)); + $this->assertEquals('6 файлов', (string)$l->n('%n file', '%n files', 6)); + $this->assertEquals('21 файл', (string)$l->n('%n file', '%n files', 21)); + $this->assertEquals('22 файла', (string)$l->n('%n file', '%n files', 22)); + $this->assertEquals('26 файлов', (string)$l->n('%n file', '%n files', 26)); + + /* + 1 file 1 файл 1 папка + 2-4 files 2-4 файла 2-4 папки + 5-20 files 5-20 файлов 5-20 папок + 21 files 21 файл 21 папка + 22-24 files 22-24 файла 22-24 папки + 25-30 files 25-30 файлов 25-30 папок + etc + 100 files 100 файлов, 100 папок + 1000 files 1000 файлов 1000 папок + */ + } + + public function testCzechPluralTranslations() { + $l = new OC_L10N('test'); + $transFile = OC::$SERVERROOT.'/tests/data/l10n/cs.php'; + + $l->load($transFile); + $this->assertEquals('1 okno', (string)$l->n('%n window', '%n windows', 1)); + $this->assertEquals('2 okna', (string)$l->n('%n window', '%n windows', 2)); + $this->assertEquals('5 oken', (string)$l->n('%n window', '%n windows', 5)); + } + +} |