| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/clients/client2/api.pacim.de/web/tests/ |
Upload File : |
<?php
/*
* Fusio
* A web-application to create dynamically RESTful APIs
*
* Copyright (C) 2015-2017 Christoph Kappestein <christoph.kappestein@gmail.com>
*
* 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
* 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 <http://www.gnu.org/licenses/>.
*/
namespace App\Tests;
/**
* Fixture
*
* @author Christoph Kappestein <christoph.kappestein@gmail.com>
* @license http://www.gnu.org/licenses/agpl-3.0
* @link http://fusio-project.org
*/
class Fixture
{
protected static $dataSet;
public static function getSystemInserts()
{
$expire = new \DateTime();
$expire->add(new \DateInterval('P1M'));
return [
'fusio_scope' => [
['name' => 'testing', 'description' => 'Test scope'],
],
'fusio_app_scope' => [
['appId' => 1, 'scopeId' => 4],
],
'fusio_app_token' => [
['appId' => 1, 'userId' => 1, 'status' => 1, 'token' => 'da250526d583edabca8ac2f99e37ee39aa02a3c076c0edc6929095e20ca18dcf', 'scope' => 'testing', 'ip' => '127.0.0.1', 'expire' => $expire->format('Y-m-d H:i:s'), 'date' => '2015-06-25 22:49:09'],
],
'fusio_user_scope' => [
['userId' => 1, 'scopeId' => 4],
]
];
}
public static function getPhpUnitDataSet()
{
if (self::$dataSet !== null) {
return self::$dataSet;
}
$version = \Fusio\Impl\Database\Installer::getLatestVersion();
$dataSet = array_merge_recursive($version->getInstallInserts(), self::getSystemInserts());
return self::$dataSet = new \PHPUnit_Extensions_Database_DataSet_ArrayDataSet($dataSet);
}
}