refactor languages module to domain/controller and release 0.254 update package

This commit is contained in:
2026-02-12 22:10:37 +01:00
parent c1284ef06c
commit 95c5fda989
22 changed files with 1190 additions and 490 deletions

View File

@@ -0,0 +1,63 @@
<?php
namespace Tests\Unit\admin\Controllers;
use PHPUnit\Framework\TestCase;
use admin\Controllers\LanguagesController;
use Domain\Languages\LanguagesRepository;
class LanguagesControllerTest extends TestCase
{
private $mockRepository;
private $controller;
protected function setUp(): void
{
$this->mockRepository = $this->createMock(LanguagesRepository::class);
$this->controller = new LanguagesController($this->mockRepository);
}
public function testConstructorAcceptsRepository(): void
{
$controller = new LanguagesController($this->mockRepository);
$this->assertInstanceOf(LanguagesController::class, $controller);
}
public function testHasMainActionMethods(): void
{
$this->assertTrue(method_exists($this->controller, 'list'));
$this->assertTrue(method_exists($this->controller, 'view_list'));
$this->assertTrue(method_exists($this->controller, 'language_edit'));
$this->assertTrue(method_exists($this->controller, 'language_save'));
$this->assertTrue(method_exists($this->controller, 'language_delete'));
$this->assertTrue(method_exists($this->controller, 'translation_list'));
$this->assertTrue(method_exists($this->controller, 'translation_edit'));
$this->assertTrue(method_exists($this->controller, 'translation_save'));
$this->assertTrue(method_exists($this->controller, 'translation_delete'));
}
public function testActionMethodReturnTypes(): void
{
$reflection = new \ReflectionClass($this->controller);
$this->assertEquals('string', (string)$reflection->getMethod('list')->getReturnType());
$this->assertEquals('string', (string)$reflection->getMethod('view_list')->getReturnType());
$this->assertEquals('string', (string)$reflection->getMethod('language_edit')->getReturnType());
$this->assertEquals('void', (string)$reflection->getMethod('language_save')->getReturnType());
$this->assertEquals('void', (string)$reflection->getMethod('language_delete')->getReturnType());
$this->assertEquals('string', (string)$reflection->getMethod('translation_list')->getReturnType());
$this->assertEquals('string', (string)$reflection->getMethod('translation_edit')->getReturnType());
$this->assertEquals('void', (string)$reflection->getMethod('translation_save')->getReturnType());
$this->assertEquals('void', (string)$reflection->getMethod('translation_delete')->getReturnType());
}
public function testConstructorRequiresLanguagesRepository(): void
{
$reflection = new \ReflectionClass(LanguagesController::class);
$constructor = $reflection->getConstructor();
$params = $constructor->getParameters();
$this->assertCount(1, $params);
$this->assertEquals('Domain\Languages\LanguagesRepository', $params[0]->getType()->getName());
}
}