mirror of
https://github.com/Karaka-Management/oms-Search.git
synced 2026-01-11 18:48:41 +00:00
commit
fd58fc6ad6
|
|
@ -45,11 +45,15 @@ final class Installer extends InstallerAbstract
|
||||||
*/
|
*/
|
||||||
public static function install(ApplicationAbstract $app, ModuleInfo $info, SettingsInterface $cfgHandler) : void
|
public static function install(ApplicationAbstract $app, ModuleInfo $info, SettingsInterface $cfgHandler) : void
|
||||||
{
|
{
|
||||||
|
if (!\is_writable(__DIR__ . '/')) {
|
||||||
|
throw new PermissionException(__DIR__ . '/');
|
||||||
|
}
|
||||||
|
|
||||||
|
if (\is_file(__DIR__ . '/SearchCommands.php')) {
|
||||||
if (!\is_writable(__DIR__ . '/SearchCommands.php')) {
|
if (!\is_writable(__DIR__ . '/SearchCommands.php')) {
|
||||||
throw new PermissionException(__DIR__ . '/SearchCommands.php');
|
throw new PermissionException(__DIR__ . '/SearchCommands.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
if (\is_file(__DIR__ . '/SearchCommands.php')) {
|
|
||||||
\unlink(__DIR__ . '/SearchCommands.php');
|
\unlink(__DIR__ . '/SearchCommands.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -98,6 +98,9 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase
|
||||||
*/
|
*/
|
||||||
public function testApiSearch() : void
|
public function testApiSearch() : void
|
||||||
{
|
{
|
||||||
|
$searchRoutes = include __DIR__ . '/../../Admin/SearchCommands.php';
|
||||||
|
self::assertGreaterThan(0, \count($searchRoutes));
|
||||||
|
|
||||||
$response = new HttpResponse();
|
$response = new HttpResponse();
|
||||||
$request = new HttpRequest(new HttpUri(''));
|
$request = new HttpRequest(new HttpUri(''));
|
||||||
|
|
||||||
|
|
@ -105,6 +108,6 @@ final class ApiControllerTest extends \PHPUnit\Framework\TestCase
|
||||||
$request->setData('search', ':help introduction');
|
$request->setData('search', ':help introduction');
|
||||||
|
|
||||||
$this->module->routeSearch($request, $response);
|
$this->module->routeSearch($request, $response);
|
||||||
self::assertGreaterThan(0, \count($response->get('')));
|
self::assertGreaterThan(0, \count($response->get($request->uri->__toString())));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user