phpOMS/tests/Security/GuardTest.php
2023-05-19 02:37:35 +00:00

60 lines
1.3 KiB
PHP

<?php
/**
* Karaka
*
* PHP Version 8.1
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Security;
require_once __DIR__ . '/../Autoloader.php';
use phpOMS\Security\Guard;
/**
* @testdox phpOMS\tests\Security\GuardTest: Basic php source code security inspection
*
* @internal
*/
final class GuardTest extends \PHPUnit\Framework\TestCase
{
public function testSafePath() : void
{
self::assertTrue(Guard::isSafePath(__DIR__));
self::assertFalse(Guard::isSafePath('/etc'));
}
public function testUnslash() : void
{
self::assertEquals(
[
'a' => "O'reilly",
'c' => [
'd' => 2,
'f' => [
'g' => "O'reilly",
],
],
],
Guard::unslash(
[
'a' => "O\'reilly",
'c' => [
'd' => 2,
'f' => [
'g' => "O\'reilly",
],
],
]
)
);
}
}