]> source.dussan.org Git - nextcloud-server.git/commitdiff
tests for oc_filesystem
authorRobin Appelman <icewind@owncloud.com>
Thu, 12 Apr 2012 13:55:56 +0000 (15:55 +0200)
committerRobin Appelman <icewind@owncloud.com>
Thu, 12 Apr 2012 13:55:56 +0000 (15:55 +0200)
lib/filesystem.php
tests/lib/filestorage/local.php
tests/lib/filesystem.php [new file with mode: 0644]

index b6909f5acdf77d01d2a93a9d3d7791171a53afe6..dc678fba74c3d45a14c55b06e08e5250b6303306 100644 (file)
@@ -248,6 +248,14 @@ class OC_Filesystem{
                return self::$defaultInstance->getRoot();
        }
 
+       /**
+        * clear all mounts and storage backends
+        */
+       public static function clearMounts(){
+               self::$mounts=array();
+               self::$storages=array();
+       }
+
        /**
        * mount an OC_Filestorage in our virtual filesystem
        * @param OC_Filestorage storage
index 0a2d46c5ebcd8d04167c5809dd5bad0a4c377f46..692f05f9fca9d927f94a9c61a53f5b27117c12fb 100644 (file)
@@ -26,10 +26,7 @@ class Test_Filestorage_Local extends Test_FileStorage {
         */
        private $tmpDir;
        public function setUp(){
-               $this->tmpDir=get_temp_dir().'/filestoragelocal';
-               if(!file_exists($this->tmpDir)){
-                       mkdir($this->tmpDir);
-               }
+               $this->tmpDir=OC_Helper::tmpFolder();
                $this->instance=new OC_Filestorage_Local(array('datadir'=>$this->tmpDir));
        }
 
diff --git a/tests/lib/filesystem.php b/tests/lib/filesystem.php
new file mode 100644 (file)
index 0000000..3e28d8c
--- /dev/null
@@ -0,0 +1,64 @@
+<?php
+/**
+* ownCloud
+*
+* @author Robin Appelman
+* @copyright 2012 Robin Appelman icewind@owncloud.com
+*
+* This library is free software; you can redistribute it and/or
+* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
+* License as published by the Free Software Foundation; either
+* version 3 of the License, or any later version.
+*
+* This library is distributed in the hope that it will be useful,
+* but WITHOUT ANY WARRANTY; without even the implied warranty of
+* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+* GNU AFFERO GENERAL PUBLIC LICENSE for more details.
+*
+* You should have received a copy of the GNU Affero General Public
+* License along with this library.  If not, see <http://www.gnu.org/licenses/>.
+*
+*/
+
+class Test_Filesystem extends UnitTestCase{
+       /**
+        * @var array tmpDirs
+        */
+       private $tmpDirs;
+
+       /**
+        * @return array
+        */
+       private function getStorageData(){
+               $dir=OC_Helper::tmpFolder();
+               $this->tmpDirs[]=$dir;
+               return array('datadir'=>$dir);
+       }
+
+       public function tearDown(){
+               foreach($this->tmpDirs as $dir){
+                       OC_Helper::rmdirr($dir);
+               }
+       }
+       
+       public function setUp(){
+               OC_Filesystem::clearMounts();
+       }
+
+       public function testMount(){
+               OC_Filesystem::mount('OC_Filestorage_Local',self::getStorageData(),'/');
+               $this->assertEqual('/',OC_Filesystem::getMountPoint('/'));
+               $this->assertEqual('/',OC_Filesystem::getMountPoint('/some/folder'));
+               $this->assertEqual('',OC_Filesystem::getInternalPath('/'));
+               $this->assertEqual('some/folder',OC_Filesystem::getInternalPath('/some/folder'));
+
+               OC_Filesystem::mount('OC_Filestorage_Local',self::getStorageData(),'/some');
+               $this->assertEqual('/',OC_Filesystem::getMountPoint('/'));
+               $this->assertEqual('/some/',OC_Filesystem::getMountPoint('/some/folder'));
+               $this->assertEqual('/some/',OC_Filesystem::getMountPoint('/some/'));
+               $this->assertEqual('/',OC_Filesystem::getMountPoint('/some'));
+               $this->assertEqual('folder',OC_Filesystem::getInternalPath('/some/folder'));
+       }
+}
+
+?>
\ No newline at end of file