ver. 0.277: ShopProduct factory, Dashboard, Update migration, legacy cleanup, admin\App

- ShopProduct factory: full migration (~40 ProductRepository methods, ~30 controller actions)
- Dashboard: Domain+DI migration (DashboardRepository + DashboardController)
- Update: Domain+DI migration (UpdateRepository + UpdateController, template rewrite)
- Renamed admin\Site to admin\App, removed dead fallback routing
- Removed all legacy folders: admin/controls, admin/factory, admin/view
- Newsletter: switched from admin\factory\Articles to ArticleRepository
- 414 tests, 1335 assertions passing

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-16 01:06:29 +01:00
parent be93a7e330
commit 74343b0f33
51 changed files with 4960 additions and 5403 deletions

View File

@@ -0,0 +1,89 @@
<?php
namespace Tests\Unit\Domain\Dashboard;
use PHPUnit\Framework\TestCase;
use Domain\Dashboard\DashboardRepository;
class DashboardRepositoryTest extends TestCase
{
private function createMockDb(): \medoo
{
return $this->createMock(\medoo::class);
}
public function testConstructorAcceptsDb(): void
{
$db = $this->createMockDb();
$repository = new DashboardRepository($db);
$this->assertInstanceOf(DashboardRepository::class, $repository);
}
public function testHasAllPublicMethods(): void
{
$db = $this->createMockDb();
$repository = new DashboardRepository($db);
$expectedMethods = [
'summaryOrders',
'summarySales',
'salesGrid',
'mostViewedProducts',
'bestSalesProducts',
'last24MonthsSales',
'lastOrders',
];
foreach ($expectedMethods as $method) {
$this->assertTrue(
method_exists($repository, $method),
"Missing method: {$method}"
);
}
}
public function testSalesGridReturnsArray(): void
{
$db = $this->createMockDb();
$db->method('select')->willReturn([]);
$repository = new DashboardRepository($db);
$result = $repository->salesGrid();
$this->assertIsArray($result);
}
public function testLastOrdersReturnsArray(): void
{
$db = $this->createMockDb();
$stmt = $this->createMock(\PDOStatement::class);
$stmt->method('fetchAll')->willReturn([]);
$db->method('query')->willReturn($stmt);
$repository = new DashboardRepository($db);
$result = $repository->lastOrders();
$this->assertIsArray($result);
}
public function testMostViewedProductsReturnsArray(): void
{
$db = $this->createMockDb();
$stmt = $this->createMock(\PDOStatement::class);
$stmt->method('fetchAll')->willReturn([]);
$db->method('query')->willReturn($stmt);
$repository = new DashboardRepository($db);
$result = $repository->mostViewedProducts();
$this->assertIsArray($result);
}
public function testBestSalesProductsReturnsArray(): void
{
$db = $this->createMockDb();
$stmt = $this->createMock(\PDOStatement::class);
$stmt->method('fetchAll')->willReturn([]);
$db->method('query')->willReturn($stmt);
$repository = new DashboardRepository($db);
$result = $repository->bestSalesProducts();
$this->assertIsArray($result);
}
}

View File

@@ -0,0 +1,80 @@
<?php
namespace Tests\Unit\Domain\Update;
use PHPUnit\Framework\TestCase;
use Domain\Update\UpdateRepository;
class UpdateRepositoryTest extends TestCase
{
private function createMockDb(): \medoo
{
return $this->createMock(\medoo::class);
}
public function testConstructorAcceptsDb(): void
{
$db = $this->createMockDb();
$repository = new UpdateRepository($db);
$this->assertInstanceOf(UpdateRepository::class, $repository);
}
public function testHasUpdateMethod(): void
{
$db = $this->createMockDb();
$repository = new UpdateRepository($db);
$this->assertTrue(method_exists($repository, 'update'));
}
public function testUpdateReturnsArray(): void
{
$db = $this->createMockDb();
$repository = new UpdateRepository($db);
$reflection = new \ReflectionClass($repository);
$method = $reflection->getMethod('update');
$this->assertEquals('array', (string)$method->getReturnType());
}
public function testHasRunPendingMigrationsMethod(): void
{
$db = $this->createMockDb();
$repository = new UpdateRepository($db);
$this->assertTrue(method_exists($repository, 'runPendingMigrations'));
}
public function testRunPendingMigrationsWithNoResults(): void
{
$db = $this->createMockDb();
$db->method('select')->willReturn(false);
$repository = new UpdateRepository($db);
$repository->runPendingMigrations();
$this->assertTrue(true); // No exception thrown
}
public function testHasPrivateHelperMethods(): void
{
$reflection = new \ReflectionClass(UpdateRepository::class);
$privateMethods = [
'downloadAndApply',
'executeSql',
'deleteFiles',
'extractZip',
'saveLog',
];
foreach ($privateMethods as $methodName) {
$this->assertTrue(
$reflection->hasMethod($methodName),
"Missing private method: {$methodName}"
);
$method = $reflection->getMethod($methodName);
$this->assertTrue(
$method->isPrivate(),
"Method {$methodName} should be private"
);
}
}
}