diff options
author | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-24 09:44:33 +0200 |
---|---|---|
committer | Roeland Jago Douma <roeland@famdouma.nl> | 2016-10-24 09:45:04 +0200 |
commit | 7998689bc9eb075813f6ae3ab3025f3932591e95 (patch) | |
tree | d5f7193162bb99ef84e1205b121651020fb3544e /tests | |
parent | 3a8e75a814a8c6b394d28570e15ccd85ad57dced (diff) | |
download | nextcloud-server-7998689bc9eb075813f6ae3ab3025f3932591e95.tar.gz nextcloud-server-7998689bc9eb075813f6ae3ab3025f3932591e95.zip |
Added method to DB and fix test
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/lib/Files/PathVerificationTest.php | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/tests/lib/Files/PathVerificationTest.php b/tests/lib/Files/PathVerificationTest.php index 992734bdece..12285bb7acd 100644 --- a/tests/lib/Files/PathVerificationTest.php +++ b/tests/lib/Files/PathVerificationTest.php @@ -9,6 +9,7 @@ namespace Test\Files; use OC\Files\Storage\Local; use OC\Files\View; +use OCP\Files\InvalidPathException; /** * Class PathVerificationTest @@ -79,10 +80,15 @@ class PathVerificationTest extends \Test\TestCase { /** * @dataProvider providesAstralPlane - * @expectedException \OCP\Files\InvalidPathException - * @expectedExceptionMessage 4-byte characters are not supported in file names */ public function testPathVerificationAstralPlane($fileName) { + $connection = \OC::$server->getDatabaseConnection(); + + if (!$connection->supports4ByteText()) { + $this->expectException(InvalidPathException::class); + $this->expectExceptionMessage('4-byte characters are not supported in file names'); + } + $this->view->verifyPath('', $fileName); } |