| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- <?php
- declare(strict_types=1);
- namespace App\Tests\Integration\Support;
- use App\App\AppFactory;
- use App\App\Container;
- use App\Domain\Auth\Role;
- use App\Domain\Auth\TokenHasher;
- use App\Domain\Auth\TokenIssuer;
- use App\Domain\Auth\TokenKind;
- use App\Infrastructure\Auth\TokenRecord;
- use App\Infrastructure\Auth\TokenRepository;
- use Doctrine\DBAL\Connection;
- use Monolog\Handler\NullHandler;
- use Monolog\Logger;
- use Phinx\Config\Config;
- use Phinx\Migration\Manager;
- use PHPUnit\Framework\TestCase;
- use Psr\Container\ContainerInterface;
- use Psr\Log\LoggerInterface;
- use Slim\App;
- use Slim\Psr7\Factory\ServerRequestFactory;
- use Slim\Psr7\Factory\StreamFactory;
- use Symfony\Component\Console\Input\ArrayInput;
- use Symfony\Component\Console\Output\NullOutput;
- /**
- * Boots a fresh on-disk SQLite database, runs every migration + seeder
- * against it, and exposes helpers for hitting the Slim app from tests.
- *
- * On-disk (not :memory:) because Phinx runs in a separate connection from
- * our DBAL Connection — :memory: would give us two empty databases.
- *
- * Each test gets its own DB, container, and Slim app so state never leaks.
- */
- abstract class AppTestCase extends TestCase
- {
- protected ContainerInterface $container;
- protected App $app;
- protected Connection $db;
- protected string $sqlitePath;
- protected function setUp(): void
- {
- $this->sqlitePath = sys_get_temp_dir() . '/irdb-auth-' . bin2hex(random_bytes(6)) . '.sqlite';
- touch($this->sqlitePath);
- $config = new Config([
- 'paths' => [
- 'migrations' => __DIR__ . '/../../../db/migrations',
- 'seeds' => __DIR__ . '/../../../db/seeds',
- ],
- 'environments' => [
- 'default_migration_table' => 'phinxlog',
- 'default_environment' => 'test',
- 'test' => [
- 'adapter' => 'sqlite',
- 'name' => $this->sqlitePath,
- 'suffix' => '',
- ],
- ],
- 'version_order' => 'creation',
- ]);
- $manager = new Manager($config, new ArrayInput([]), new NullOutput());
- $manager->migrate('test');
- $manager->seed('test');
- $settings = [
- 'app_env' => 'development',
- 'log_level' => \Monolog\Level::Warning,
- 'db' => [
- 'driver' => 'sqlite',
- 'sqlite_path' => $this->sqlitePath,
- 'mysql_host' => '',
- 'mysql_port' => 3306,
- 'mysql_database' => '',
- 'mysql_username' => '',
- 'mysql_password' => '',
- ],
- 'ui_service_token' => '',
- 'internal_job_token' => '',
- 'ui_origin' => 'http://localhost:8080',
- 'oidc_default_role' => Role::Viewer,
- 'score_hard_cutoff_days' => 365,
- 'rate_limit_per_second' => 1000,
- 'cidr_evaluator_ttl_seconds' => 0,
- 'blocklist_cache_ttl_seconds' => 0,
- 'geoip' => [
- 'enabled' => true,
- 'provider' => 'dbip',
- 'country_db' => sys_get_temp_dir() . '/irdb-geoip-missing-country.mmdb',
- 'asn_db' => sys_get_temp_dir() . '/irdb-geoip-missing-asn.mmdb',
- 'maxmind_license_key' => '',
- 'ipinfo_token' => '',
- 'refresh_interval_days' => 7,
- ],
- ];
- $this->container = Container::build($settings);
- // Replace the logger with a null sink so integration tests don't spam
- // stdout (PHPUnit treats unexpected output as a "risky" outcome).
- if (method_exists($this->container, 'set')) {
- $nullLogger = new Logger('test');
- $nullLogger->pushHandler(new NullHandler());
- /** @var \DI\Container $container */
- $container = $this->container;
- $container->set(LoggerInterface::class, $nullLogger);
- }
- /** @var Connection $conn */
- $conn = $this->container->get(Connection::class);
- $this->db = $conn;
- $this->app = AppFactory::build($this->container);
- }
- protected function tearDown(): void
- {
- $this->db->close();
- if (file_exists($this->sqlitePath)) {
- @unlink($this->sqlitePath);
- }
- }
- /**
- * Issues a token of the given kind, persists it, and returns the raw
- * string. The caller can then send it as `Authorization: Bearer …`.
- */
- protected function createToken(
- TokenKind $kind,
- ?Role $role = null,
- ?int $reporterId = null,
- ?int $consumerId = null,
- ?int $userId = null,
- ): string {
- /** @var TokenIssuer $issuer */
- $issuer = $this->container->get(TokenIssuer::class);
- /** @var TokenHasher $hasher */
- $hasher = $this->container->get(TokenHasher::class);
- /** @var TokenRepository $repo */
- $repo = $this->container->get(TokenRepository::class);
- $raw = $issuer->issue($kind);
- $repo->create(new TokenRecord(
- id: null,
- kind: $kind,
- hash: $hasher->hash($raw),
- prefix: substr($raw, 0, 8),
- reporterId: $reporterId,
- consumerId: $consumerId,
- role: $role,
- expiresAt: null,
- revokedAt: null,
- lastUsedAt: null,
- userId: $userId,
- ));
- return $raw;
- }
- /**
- * Inserts a row in `users` with the given role and returns the id.
- * Pass `disabled: true` to seed a disabled row (SEC_REVIEW F11 tests).
- */
- protected function createUser(
- Role $role,
- bool $isLocal = false,
- ?string $subject = null,
- bool $disabled = false,
- ): int {
- $this->db->insert('users', [
- 'subject' => $subject,
- 'email' => $isLocal ? null : 'user@example.com',
- 'display_name' => $isLocal ? 'admin' : 'OIDC User',
- 'role' => $role->value,
- 'is_local' => $isLocal ? 1 : 0,
- 'disabled_at' => $disabled
- ? (new \DateTimeImmutable('now', new \DateTimeZone('UTC')))->format('Y-m-d H:i:s')
- : null,
- ]);
- return (int) $this->db->lastInsertId();
- }
- protected function createReporter(string $name = 'rep-test'): int
- {
- $this->db->insert('reporters', [
- 'name' => $name,
- 'trust_weight' => '1.00',
- 'is_active' => 1,
- ]);
- return (int) $this->db->lastInsertId();
- }
- /**
- * @param array<string, string> $headers
- */
- protected function request(string $method, string $path, array $headers = [], ?string $body = null): \Psr\Http\Message\ResponseInterface
- {
- $reqFactory = new ServerRequestFactory();
- $request = $reqFactory->createServerRequest($method, $path);
- foreach ($headers as $name => $value) {
- $request = $request->withHeader($name, $value);
- }
- if ($body !== null) {
- $stream = (new StreamFactory())->createStream($body);
- $request = $request->withBody($stream);
- }
- return $this->app->handle($request);
- }
- /**
- * @return array<string, mixed>
- */
- protected function decode(\Psr\Http\Message\ResponseInterface $response): array
- {
- $raw = (string) $response->getBody();
- $decoded = json_decode($raw, true);
- self::assertIsArray($decoded, 'response body was not JSON: ' . $raw);
- return $decoded;
- }
- }
|