aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/files/pathverificationtest.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/tests/lib/files/pathverificationtest.php b/tests/lib/files/pathverificationtest.php
index 1a802a48f57..5d38c6291a6 100644
--- a/tests/lib/files/pathverificationtest.php
+++ b/tests/lib/files/pathverificationtest.php
@@ -23,6 +23,16 @@ class PathVerification extends \Test\TestCase {
}
/**
+ * @expectedException \OCP\Files\InvalidPathException
+ * @expectedExceptionMessage File name is too long
+ */
+ public function testPathVerificationFileNameTooLong() {
+ $fileName = str_repeat('a', 500);
+ $this->view->verifyPath('', $fileName);
+ }
+
+
+ /**
* @dataProvider providesEmptyFiles
* @expectedException \OCP\Files\InvalidPathException
* @expectedExceptionMessage Empty filename is not allowed