mirror of
https://github.com/Vateron-Media/XC_VM.git
synced 2026-09-26 04:02:51 +02:00
Move Core/Container into XcVm\Core\Container (ServiceContainer) and
Core/Container/Psr into XcVm\Core\Container\Psr (ContainerInterface,
ContainerExceptionInterface, NotFoundExceptionInterface, NotFoundException).
- Namespace ServiceContainer + the 4 PSR-11 interfaces/classes.
- ServiceContainer: import the PSR siblings (use ...\Psr\ContainerInterface,
NotFoundException); migrated deps (DatabaseHandler/ModuleInterface/Request/
SettingsManager) keep their use; still-global exceptions/decorators qualified
with leading backslash (\ContainerException, \XcVmException, \Exception, ...).
- Rewrite 'use ServiceContainer;' → FQCN (incl. module fixtures); add use to
referrers across src/ and tests/; fix leading-backslash \ServiceContainer refs.
- Core/Exception/Container/ContainerException: import the moved PSR
ContainerExceptionInterface.
- Router: class_exists('ServiceContainer') → ::class. InterfaceContractTest boot
param-type → FQCN. Repaired use-inserter mis-placement in the two namespace()
fixture tests.
- phpstan-baseline.neon regenerated (292→292).
Verified: php -l clean; PHPStan no errors; PHPUnit 295/295; ServiceContainer
resolves and implements XcVm\Core\Container\Psr\ContainerInterface.
201 lines
7.2 KiB
PHP
201 lines
7.2 KiB
PHP
<?php
|
|
|
|
use XcVm\Core\Container\ServiceContainer;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Architecture guard — enforces structural rules for src/modules/.
|
|
*
|
|
* Rules checked here are invariants that must never regress:
|
|
* 1. No module file may use ServiceContainer::getInstance() (Service Locator anti-pattern).
|
|
* 2. No web-context module file may use `global $db` (DI boundary violation).
|
|
* 3. Every module entry-point (*Module.php) must declare XcVm\Module\{Pascal} namespace.
|
|
*
|
|
* Explicit exemptions are listed with a comment explaining WHY and referencing
|
|
* the roadmap item that will eventually remove the exemption.
|
|
*/
|
|
final class ArchitectureTest extends TestCase {
|
|
|
|
private const MODULES_DIR = __DIR__ . '/../../src/Modules';
|
|
|
|
/**
|
|
* Files that still use `global $db` because they run under a separate CLI
|
|
* bootstrap (admin.php) and are not part of the web DI context.
|
|
* Will be removed after R4-3 (full global $db migration).
|
|
*/
|
|
private const CLI_GLOBAL_DB_EXEMPT = [
|
|
'PlexCron.php',
|
|
'PlexItem.php',
|
|
'PlexItemCommand.php',
|
|
'WatchCron.php',
|
|
'WatchItem.php',
|
|
'WatchItemCommand.php',
|
|
'TmdbCron.php',
|
|
'TmdbPopularCron.php',
|
|
];
|
|
|
|
/**
|
|
* Files using the setDb()+db() DI migration pattern: they receive $db via
|
|
* boot() in web context but retain `global $db` as a fallback for the CLI
|
|
* cron path that bypasses the DI container.
|
|
* Will be removed after R4-3 completes the full migration.
|
|
*/
|
|
private const MIGRATION_FALLBACK_EXEMPT = [
|
|
'PlexService.php',
|
|
'PlexRepository.php',
|
|
'WatchService.php',
|
|
'RecordingService.php',
|
|
];
|
|
|
|
// ── helpers ──────────────────────────────────────────────────────────────
|
|
|
|
/**
|
|
* Yields [relative-path => content] for every .php file under src/modules/,
|
|
* optionally skipping top-level module subdirectories by name.
|
|
*
|
|
* @param string[] $excludeModuleDirs Top-level dir names to skip (e.g. ['ministra']).
|
|
* @return iterable<string, string>
|
|
*/
|
|
private function moduleFiles(array $excludeModuleDirs = []): iterable {
|
|
$baseReal = realpath(self::MODULES_DIR);
|
|
|
|
$excludeReal = [];
|
|
foreach ($excludeModuleDirs as $dir) {
|
|
$p = realpath(self::MODULES_DIR . '/' . $dir);
|
|
if ($p !== false) {
|
|
$excludeReal[] = $p;
|
|
}
|
|
}
|
|
|
|
$iterator = new RecursiveIteratorIterator(
|
|
new RecursiveDirectoryIterator(self::MODULES_DIR, FilesystemIterator::SKIP_DOTS)
|
|
);
|
|
|
|
foreach ($iterator as $file) {
|
|
/** @var SplFileInfo $file */
|
|
if ($file->getExtension() !== 'php') {
|
|
continue;
|
|
}
|
|
|
|
$realPath = (string) $file->getRealPath();
|
|
|
|
foreach ($excludeReal as $excluded) {
|
|
if (str_starts_with($realPath, $excluded . DIRECTORY_SEPARATOR)) {
|
|
continue 2;
|
|
}
|
|
}
|
|
|
|
$relative = substr($realPath, strlen($baseReal) + 1);
|
|
yield $relative => (string) file_get_contents($realPath);
|
|
}
|
|
}
|
|
|
|
// ── tests ─────────────────────────────────────────────────────────────────
|
|
|
|
/**
|
|
* No module file may resolve the container via the static singleton.
|
|
* Modules receive ServiceContainer through boot(ServiceContainer $c).
|
|
*/
|
|
public function testNoModuleUsesServiceLocator(): void {
|
|
foreach ($this->moduleFiles() as $relative => $content) {
|
|
$this->assertStringNotContainsString(
|
|
'ServiceContainer::getInstance()',
|
|
$content,
|
|
"modules/{$relative} must not call ServiceContainer::getInstance() — use boot(ServiceContainer \$c) instead"
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Web-context module files must not use `global $db`.
|
|
*
|
|
* Exemptions:
|
|
* - ministra/ — BoundaryInterface subsystem with its own portal bootstrap (permanent)
|
|
* - CLI_GLOBAL_DB_EXEMPT — cron/CLI classes using admin.php bootstrap (temporary, see R4-3)
|
|
*/
|
|
public function testNoWebContextModuleUsesGlobalDb(): void {
|
|
foreach ($this->moduleFiles(excludeModuleDirs: ['ministra']) as $relative => $content) {
|
|
$basename = basename($relative);
|
|
|
|
if (in_array($basename, self::CLI_GLOBAL_DB_EXEMPT, true)) {
|
|
continue;
|
|
}
|
|
|
|
if (in_array($basename, self::MIGRATION_FALLBACK_EXEMPT, true)) {
|
|
continue;
|
|
}
|
|
|
|
$this->assertStringNotContainsString(
|
|
'global $db',
|
|
$content,
|
|
"modules/{$relative} must not use global \$db — inject via boot(ServiceContainer \$c)"
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Every module entry-point (*Module.php) must declare the canonical namespace.
|
|
*
|
|
* Convention: XcVm\Module\{Pascal} where Pascal = PascalCase of the directory name.
|
|
* Non-entry-point files (controllers, services, cron) are not yet required — see R4-3.
|
|
*/
|
|
public function testModuleEntryPointsHaveCorrectNamespace(): void {
|
|
$modulesDir = new FilesystemIterator(self::MODULES_DIR, FilesystemIterator::SKIP_DOTS);
|
|
|
|
$checked = 0;
|
|
foreach ($modulesDir as $entry) {
|
|
/** @var SplFileInfo $entry */
|
|
if (!$entry->isDir()) {
|
|
continue;
|
|
}
|
|
|
|
$dirName = $entry->getBasename();
|
|
$pascal = implode('', array_map('ucfirst', explode('-', $dirName)));
|
|
$moduleFile = $entry->getRealPath() . '/' . $pascal . 'Module.php';
|
|
|
|
if (!file_exists($moduleFile)) {
|
|
continue;
|
|
}
|
|
|
|
$expected = "namespace XcVm\\Module\\{$pascal};";
|
|
$content = (string) file_get_contents($moduleFile);
|
|
|
|
$this->assertStringContainsString(
|
|
$expected,
|
|
$content,
|
|
"{$pascal}Module.php must declare `{$expected}`"
|
|
);
|
|
|
|
$checked++;
|
|
}
|
|
|
|
$this->assertGreaterThan(0, $checked, 'No *Module.php files found — check MODULES_DIR path');
|
|
}
|
|
|
|
/**
|
|
* Sanity: every module directory must contain a module.json manifest.
|
|
*
|
|
* Catches accidental directory clutter in src/modules/.
|
|
*/
|
|
public function testEveryModuleDirectoryHasManifest(): void {
|
|
$modulesDir = new FilesystemIterator(self::MODULES_DIR, FilesystemIterator::SKIP_DOTS);
|
|
|
|
$checked = 0;
|
|
foreach ($modulesDir as $entry) {
|
|
/** @var SplFileInfo $entry */
|
|
if (!$entry->isDir()) {
|
|
continue;
|
|
}
|
|
|
|
$manifest = $entry->getRealPath() . '/module.json';
|
|
$this->assertFileExists(
|
|
$manifest,
|
|
"modules/{$entry->getBasename()}/ must contain a module.json manifest"
|
|
);
|
|
$checked++;
|
|
}
|
|
|
|
$this->assertGreaterThan(0, $checked, 'No module directories found');
|
|
}
|
|
}
|