summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2012-11-03 00:21:10 +0100
committerRobin Appelman <icewind@owncloud.com>2012-11-03 00:26:36 +0100
commit4c0c78d15deac7bc53c1bf0e967972ac7e9525f4 (patch)
tree41c3e2b334e1f577e790a0d95348122e041f4ad1 /tests
parent503922ff6cd6d80c9c5cdd58925d76de00d2f311 (diff)
downloadnextcloud-server-4c0c78d15deac7bc53c1bf0e967972ac7e9525f4.tar.gz
nextcloud-server-4c0c78d15deac7bc53c1bf0e967972ac7e9525f4.zip
check for filename blacklist in OC_Filesystem::isValidPath
Diffstat (limited to 'tests')
-rw-r--r--tests/lib/filesystem.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php
index 07c25e1498a..0008336383e 100644
--- a/tests/lib/filesystem.php
+++ b/tests/lib/filesystem.php
@@ -101,6 +101,7 @@ class Test_Filesystem extends UnitTestCase {
$rootView->mkdir('/' . $user);
$rootView->mkdir('/' . $user . '/files');
+ $this->assertFalse($rootView->file_put_contents('/.htaccess', 'foo'));
$this->assertFalse(OC_Filesystem::file_put_contents('/.htaccess', 'foo'));
$fh = fopen(__FILE__, 'r');
$this->assertFalse(OC_Filesystem::file_put_contents('/.htaccess', $fh));