]> git.mxchange.org Git - friendica.git/blobdiff - tests/Util/VFSTrait.php
Merge pull request #13651 from annando/picture-upload
[friendica.git] / tests / Util / VFSTrait.php
index 34763b13851167fb9af83384cb7e79a31edd3b48..4c31a5e64e702edd95daef0ad4fa8e3f3ee32ac3 100644 (file)
@@ -1,4 +1,23 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program 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 program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Test\Util;
 
@@ -20,46 +39,61 @@ trait VFSTrait
                // the used directories inside the App class
                $structure = [
                        'config' => [],
-                       'bin' => []
+                       'bin' => [],
+                       'static' => [],
+                       'test' => [],
+                       'logs' => [],
+                       'config2' => [],
                ];
 
                // create a virtual directory and copy all needed files and folders to it
-               $this->root = vfsStream::setup('friendica', null, $structure);
+               $this->root = vfsStream::setup('friendica', 0777, $structure);
 
-               $this->setConfigFile('config.ini.php');
-               $this->setConfigFile('settings.ini.php');
-               $this->setConfigFile('local.ini.php');
-               $this->setConfigFile('dbstructure.php');
+               $this->setConfigFile('static' . DIRECTORY_SEPARATOR . 'dbstructure.config.php', true);
+               $this->setConfigFile('static' . DIRECTORY_SEPARATOR . 'dbview.config.php', true);
+               $this->setConfigFile('static' . DIRECTORY_SEPARATOR . 'defaults.config.php', true);
+               $this->setConfigFile('static' . DIRECTORY_SEPARATOR . 'settings.config.php', true);
+               $this->setConfigFile(
+                       'mods' . DIRECTORY_SEPARATOR . 'local.config.ci.php',
+                       false, 'local.config.php'
+               );
        }
 
        /**
         * Copying a config file from the file system to the Virtual File System
         *
-        * @param string $filename The filename of the config file
+        * @param string $sourceFilePath The filename of the config file
+        * @param bool   $static         True, if the folder `static` instead of `config` should be used
         */
-       protected function setConfigFile($filename)
+       public function setConfigFile(string $sourceFilePath, bool $static = false, string $targetFileName = null)
        {
                $file = dirname(__DIR__) . DIRECTORY_SEPARATOR .
                        '..' . DIRECTORY_SEPARATOR .
-                       'config' . DIRECTORY_SEPARATOR .
-                       $filename;
+                               $sourceFilePath;
 
                if (file_exists($file)) {
-                       vfsStream::newFile($filename)
-                               ->at($this->root->getChild('config'))
+                       if (empty($targetFileName)) {
+                               $tmpArray = preg_split('/\\' . DIRECTORY_SEPARATOR . '/', $sourceFilePath);
+                               $targetFileName = array_pop($tmpArray);
+                       }
+                       vfsStream::newFile($targetFileName)
+                               ->at($this->root->getChild(($static ? 'static' : 'config')))
                                ->setContent(file_get_contents($file));
+               } else {
+                       throw new \Exception(sprintf('Unexpected missing config \'%s\'', $file));
                }
        }
 
        /**
-        * Delets a config file from the Virtual File System
+        * Deletes a config file from the Virtual File System
         *
         * @param string $filename The filename of the config file
+        * @param bool   $static   True, if the folder `static` instead of `config` should be used
         */
-       protected function delConfigFile($filename)
+       protected function delConfigFile(string $filename, bool $static = false)
        {
-               if ($this->root->hasChild('config/' . $filename)) {
-                       $this->root->removeChild('config/' . $filename);
+               if ($this->root->hasChild(($static ? 'static' : 'config') . '/' . $filename)) {
+                       $this->root->getChild(($static ? 'static' : 'config'))->removeChild($filename);
                }
        }
 }