diff options
author | Robin Appelman <robin@icewind.nl> | 2018-04-12 12:28:25 +0200 |
---|---|---|
committer | Morris Jobke <hey@morrisjobke.de> | 2018-04-18 17:32:19 +0200 |
commit | 5fbba7854b433e8b77ecb09edf0b804c233ae2aa (patch) | |
tree | 5fa67df7ed63c097e69b515626c11de55f47ebd3 /tests/lib | |
parent | fa65aaf1fc8836e1a0e5ee1ffe38ee032a487892 (diff) | |
download | nextcloud-server-5fbba7854b433e8b77ecb09edf0b804c233ae2aa.tar.gz nextcloud-server-5fbba7854b433e8b77ecb09edf0b804c233ae2aa.zip |
fix appinfo parsing when a single localized option is provided
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'tests/lib')
-rw-r--r-- | tests/lib/AppTest.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/lib/AppTest.php b/tests/lib/AppTest.php index 620e9344c43..03e7a70f7be 100644 --- a/tests/lib/AppTest.php +++ b/tests/lib/AppTest.php @@ -9,6 +9,7 @@ namespace Test; +use OC\App\InfoParser; use OC\AppConfig; use OCP\IAppConfig; @@ -605,5 +606,18 @@ class AppTest extends \Test\TestCase { public function testParseAppInfo(array $data, array $expected) { $this->assertSame($expected, \OC_App::parseAppInfo($data)); } + + public function testParseAppInfoL10N() { + $parser = new InfoParser(); + $data = $parser->parse(\OC::$SERVERROOT. "/tests/data/app/description-multi-lang.xml"); + $this->assertEquals('English', \OC_App::parseAppInfo($data, 'en')['description']); + $this->assertEquals('German', \OC_App::parseAppInfo($data, 'de')['description']); + } + + public function testParseAppInfoL10NSingleLanguage() { + $parser = new InfoParser(); + $data = $parser->parse(\OC::$SERVERROOT. "/tests/data/app/description-single-lang.xml"); + $this->assertEquals('English', \OC_App::parseAppInfo($data, 'en')['description']); + } } |