feat(AppTest): next test to usr phpunit

This commit is contained in:
Jérémy Dufraisse 2023-03-20 17:11:41 +01:00
parent 43dd441473
commit 1f89a43499
3 changed files with 209 additions and 13 deletions

35
src/TestBaseUrl.php Normal file
View File

@ -0,0 +1,35 @@
<?php
// SPDX-License-Identifier: EUPL-1.2
// Authors: see README.md
namespace SeaCMS\App;
use SeacmsAppPlugin;
use SeaCMS\App\TestException;
use SeaCMS\App\TestInterface;
use SeaCMS\App\TestBaseUrlException;
/**
* test base Url
*/
class TestBaseUrl implements TestInterface
{
/**
* run tests
* @param SeacmsAppPlugin $plugin
* @param string $output
* @throws TestException
*/
public function run(SeacmsAppPlugin $plugin, string $output){
$pico = $plugin->getPico();
throw new TestBaseUrlException(
$pico->getBaseUrl(),
$pico->getRootDir(),
$pico->getPluginsDir(),
$pico->getThemesDir(),
$pico->getCurrentPage(),
"Testing base url"
);
}
}

View File

@ -0,0 +1,109 @@
<?php
// SPDX-License-Identifier: EUPL-1.2
// Authors: see README.md
namespace SeaCMS\App;
use SeaCMS\App\TestException;
use Throwable;
/**
* define exception to caught return for tests
*/
class TestBaseUrlException extends TestException
{
/**
* caught baseUrl
* @var string
*/
protected $baseUrl;
/**
* plugin dir
* @var string
*/
protected $pluginDir;
/**
* root dir
* @var string
*/
protected $rootDir;
/**
* theme dir
* @var string
*/
protected $themeDir;
/**
* currentPage
* @var null|array
*/
protected $currentPage;
public function __construct(
string $baseUrl,
string $rootDir,
string $pluginDir,
string $themeDir,
?array $currentPage,
string $message = "",
int $code=0,
Throwable $th = null
)
{
parent::__construct($message,$code,$th);
$this->baseUrl = $baseUrl;
$this->rootDir = $rootDir;
$this->pluginDir = $pluginDir;
$this->themeDir = $themeDir;
$this->currentPage = $currentPage;
}
/**
* get baseUrl
* @return string
*/
public function getBaseUrl(): string
{
return $this->baseUrl;
}
/**
* get pluginDir
* @return string
*/
public function getPluginDir(): string
{
return $this->pluginDir;
}
/**
* get rootDir
* @return string
*/
public function getRootDir(): string
{
return $this->rootDir;
}
/**
* get themeDir
* @return string
*/
public function getThemeDir(): string
{
return $this->themeDir;
}
/**
* get currentPage
* @return null|array
*/
public function getcurrentPage(): ?array
{
return $this->currentPage;
}
}

View File

@ -7,29 +7,81 @@
namespace SeaCMS\App\Test; namespace SeaCMS\App\Test;
use SeaCMS\App;
use PHPUnit\Framework\TestCase; use PHPUnit\Framework\TestCase;
use SeaCMS\App;
use SeaCMS\App\TestBaseUrl;
use SeaCMS\App\TestBaseUrlException;
use Throwable;
final class AppTest extends TestCase { final class AppTest extends TestCase {
public function testSuccess(): void /**
* @dataProvider apiRewriteProvider
* @covers App::update_SERVERIfNeeded
* @param string $rootFolder,
* @param string $filePath,
* @param string $shortScriptName,
* @param string $queryString
*/
public function testApiRewrite(
string $rootFolder,
string $filePath,
string $shortScriptName,
string $queryString,
string $waitedBaseUrl,
): void
{ {
$this->saveSERVER();
$this->defineServer( $this->defineServer(
true, true,
'index.php', $filePath,
'/', $shortScriptName,
'' $queryString
); );
$app = new App(''); $app = new App($rootFolder,new TestBaseUrl());
$output = $app->runPico(); $thrown = false;
$this->assertTrue($app instanceof App); $foundTh = null;
} try {
public function testFailure(): void $output = $app->runPico();
{ } catch (TestBaseUrlException $th) {
$this->assertTrue(false); $thrown = true;
$foundTh = $th;
} catch (Throwable $th){
}
$this->revertSERVER();
$this->assertTrue($thrown,"TestBaseUrlException not found");
$this->assertEquals($waitedBaseUrl,$foundTh->getBaseUrl(),"Not same baseUrl");
} }
/** public function apiRewriteProvider()
{
$data = [];
$this->prepareData($data,'content/*','content','index.php','/','','http://localhost/');
$this->prepareData($data,'content/index.php*','content','index.php','/index.php','','http://localhost/');
return $data;
}
public function prepareData(
array &$data,
string $name,
string $rootFolder,
string $filePath,
string $shortScriptName,
string $queryString,
string $waitedBaseUrl,
)
{
$data[$name] = [
'rootFolder' => $rootFolder,
'filePath' => $filePath,
'shortScriptName' => $shortScriptName,
'queryString' => $queryString,
'waitedBaseUrl' => $waitedBaseUrl,
];
}
/**
* define $_SERVER because fastcgi not run in CLI * define $_SERVER because fastcgi not run in CLI
* @param bool $reset reset previous $_SERVER * @param bool $reset reset previous $_SERVER
* @param string $filePath realpath of current script file * @param string $filePath realpath of current script file