test(tests): UT for OutputHandler class

Signed-off-by: Rubén D <nuxsmin@syspass.org>
This commit is contained in:
Rubén D
2024-05-06 07:44:03 +02:00
parent 1a25c4568a
commit d61e935664
3 changed files with 67 additions and 8 deletions

View File

@@ -29,5 +29,12 @@ namespace SP\Mvc\View;
*/
interface OutputHandlerInterface
{
/**
* Capture the output buffer and return the evaluated content.
*
* @param callable $callback A callable that implements the content evaluated
* (eg. {@link https://www.php.net/manual/en/function.include.php})
* @return string The parsed content
*/
public function bufferedContent(callable $callback): string;
}

View File

@@ -53,6 +53,7 @@ final class Template implements TemplateInterface
private TemplateCollection $contentTemplates;
private TemplateCollection $vars;
private bool $upgraded = false;
private readonly string $baseUrl;
public function __construct(
private readonly OutputHandlerInterface $outputHandler,
@@ -65,6 +66,8 @@ final class Template implements TemplateInterface
$this->vars = new TemplateCollection();
$this->templates = new TemplateCollection();
$this->contentTemplates = new TemplateCollection();
$this->baseUrl = ($this->configData->getApplicationUrl() ?: $this->uriContext->getWebUri()) .
$this->uriContext->getSubUri();
}
/**
@@ -172,6 +175,9 @@ final class Template implements TemplateInterface
$this->contentTemplates->exchangeArray([]);
}
/**
* TODO: remove
*/
public function getBase(): string
{
return $this->base;
@@ -228,7 +234,7 @@ final class Template implements TemplateInterface
protected function includeTemplates(): void
{
// This variables will be included in the same scope as included files
// These variables will be included in the same scope as included files
$icons = $this->themeIcons;
$_getvar = $this->vars->get(...);
$_getRoute = $this->getRoute(...);
@@ -240,12 +246,6 @@ final class Template implements TemplateInterface
protected function getRoute(string $path): string
{
$baseUrl = ($this->configData->getApplicationUrl() ?: $this->uriContext->getWebUri()) .
$this->uriContext->getSubUri();
$uri = new Uri($baseUrl);
$uri->addParam('r', $path);
return $uri->getUri();
return (new Uri($this->baseUrl))->addParam('r', $path)->getUri();
}
}

View File

@@ -0,0 +1,52 @@
<?php
/**
* sysPass
*
* @author nuxsmin
* @link https://syspass.org
* @copyright 2012-2024, Rubén Domínguez nuxsmin@$syspass.org
*
* This file is part of sysPass.
*
* sysPass is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* sysPass 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with sysPass. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace SP\Tests\Mvc\View;
use PHPUnit\Framework\Attributes\Group;
use PHPUnit\Framework\TestCase;
use SP\Mvc\View\OutputHandler;
/**
* Class OutputHandlerTest
*/
#[Group('unitary')]
class OutputHandlerTest extends TestCase
{
public function testBufferedContent()
{
$callback = function () {
echo 'Hello world';
echo 'test_output';
};
$outputHandler = new OutputHandler();
$out = $outputHandler->bufferedContent($callback);
$this->assertEquals('Hello worldtest_output', $out);
}
}