2019-03-26 21:04:31 +00:00
|
|
|
<?php
|
2022-01-06 23:30:59 +00:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2010-2022, 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2019-03-26 21:04:31 +00:00
|
|
|
namespace Friendica\Test\src\Util;
|
|
|
|
|
|
|
|
use Friendica\Test\MockedTest;
|
|
|
|
use Friendica\Util\BasePath;
|
|
|
|
|
|
|
|
class BasePathTest extends MockedTest
|
|
|
|
{
|
2019-04-14 14:17:34 +00:00
|
|
|
public function dataPaths()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'fullPath' => [
|
|
|
|
'server' => [],
|
|
|
|
'input' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
|
|
|
'output' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
|
|
|
],
|
|
|
|
'relative' => [
|
|
|
|
'server' => [],
|
|
|
|
'input' => 'config',
|
|
|
|
'output' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
|
|
|
],
|
|
|
|
'document_root' => [
|
|
|
|
'server' => [
|
|
|
|
'DOCUMENT_ROOT' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
|
|
|
],
|
|
|
|
'input' => '/noooop',
|
|
|
|
'output' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
|
|
|
],
|
|
|
|
'pwd' => [
|
|
|
|
'server' => [
|
|
|
|
'PWD' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
|
|
|
],
|
|
|
|
'input' => '/noooop',
|
|
|
|
'output' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
|
|
|
],
|
|
|
|
'no_overwrite' => [
|
|
|
|
'server' => [
|
|
|
|
'DOCUMENT_ROOT' => dirname(__DIR__, 3),
|
|
|
|
'PWD' => dirname(__DIR__, 3),
|
|
|
|
],
|
|
|
|
'input' => 'config',
|
|
|
|
'output' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
2019-04-14 14:20:12 +00:00
|
|
|
],
|
|
|
|
'no_overwrite_if_invalid' => [
|
|
|
|
'server' => [
|
|
|
|
'DOCUMENT_ROOT' => '/nopopop',
|
|
|
|
'PWD' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
|
|
|
],
|
|
|
|
'input' => '/noatgawe22fafa',
|
|
|
|
'output' => dirname(__DIR__, 3) . DIRECTORY_SEPARATOR . 'config',
|
2019-04-14 14:17:34 +00:00
|
|
|
]
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-03-26 21:04:31 +00:00
|
|
|
/**
|
|
|
|
* Test the basepath determination
|
2019-04-14 14:17:34 +00:00
|
|
|
* @dataProvider dataPaths
|
2019-03-26 21:04:31 +00:00
|
|
|
*/
|
2019-04-14 14:17:34 +00:00
|
|
|
public function testDetermineBasePath(array $server, $input, $output)
|
2019-03-26 21:04:31 +00:00
|
|
|
{
|
2019-07-20 23:22:10 +00:00
|
|
|
$basepath = new BasePath($input, $server);
|
2020-10-17 12:19:57 +00:00
|
|
|
self::assertEquals($output, $basepath->getPath());
|
2019-03-26 21:04:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2019-04-14 14:17:34 +00:00
|
|
|
* Test the basepath determination with a complete wrong path
|
2019-03-26 21:04:31 +00:00
|
|
|
*/
|
2019-04-14 14:17:34 +00:00
|
|
|
public function testFailedBasePath()
|
2019-03-26 21:04:31 +00:00
|
|
|
{
|
2020-10-18 18:31:57 +00:00
|
|
|
$this->expectException(\Exception::class);
|
2021-05-23 21:09:49 +00:00
|
|
|
$this->expectExceptionMessageMatches("/(.*) is not a valid basepath/");
|
2020-10-18 18:31:57 +00:00
|
|
|
|
2019-07-20 23:22:10 +00:00
|
|
|
$basepath = new BasePath('/now23452sgfgas', []);
|
|
|
|
$basepath->getPath();
|
2019-03-26 21:04:31 +00:00
|
|
|
}
|
|
|
|
}
|