alef-e2e 0.15.30

Fixture-driven e2e test generator for alef
Documentation
<?php
{{ header }}
declare(strict_types=1);

// Load the e2e project autoloader (PHPUnit, test helpers).
require_once __DIR__ . '/vendor/autoload.php';

// Load the PHP binding package classes via its Composer autoloader.
// The package's autoloader is separate from the e2e project's autoloader
// since the php-ext type prevents direct composer path dependency.
$pkgAutoloader = __DIR__ . '/{{ pkg_path }}/vendor/autoload.php';
if (file_exists($pkgAutoloader)) {
    require_once $pkgAutoloader;
}{% if has_file_fixtures %}

// Change to the configured test-documents directory so that fixture file
// paths like "pdf/fake_memo.pdf" resolve correctly when running phpunit
// from e2e/php/.
$_test_documents = __DIR__ . '/{{ test_documents_path }}';
if (is_dir($_test_documents)) {
    chdir($_test_documents);
}{% endif %}{% if has_http_fixtures %}

// Spawn the mock HTTP server binary for HTTP fixture tests.
$mockServerBin = __DIR__ . '/../rust/target/release/mock-server';
$fixturesDir = __DIR__ . '/../../fixtures';
if (file_exists($mockServerBin)) {
    $descriptors = [0 => ['pipe', 'r'], 1 => ['pipe', 'w'], 2 => STDERR];
    $proc = proc_open([$mockServerBin, $fixturesDir], $descriptors, $pipes);
    if (is_resource($proc)) {
        // Read up to 8 lines to capture MOCK_SERVER_URL= and optionally MOCK_SERVERS=.
        for ($i = 0; $i < 8; $i++) {
            $line = fgets($pipes[1]);
            if ($line === false) {
                break;
            }
            $line = trim($line);
            if (str_starts_with($line, 'MOCK_SERVER_URL=')) {
                $url = substr($line, strlen('MOCK_SERVER_URL='));
                putenv('MOCK_SERVER_URL=' . $url);
                $_ENV['MOCK_SERVER_URL'] = $url;
            } elseif (str_starts_with($line, 'MOCK_SERVERS=')) {
                $jsonVal = substr($line, strlen('MOCK_SERVERS='));
                putenv('MOCK_SERVERS=' . $jsonVal);
                $_ENV['MOCK_SERVERS'] = $jsonVal;
                $servers = json_decode($jsonVal, true);
                if (is_array($servers)) {
                    foreach ($servers as $fid => $furl) {
                        $envKey = 'MOCK_SERVER_' . strtoupper($fid);
                        putenv($envKey . '=' . $furl);
                        $_ENV[$envKey] = $furl;
                    }
                }
                break;
            } elseif (isset($url)) {
                break;
            }
        }
        // Drain stdout in background thread is not possible in PHP; keep pipe open.
        register_shutdown_function(static function () use ($proc, $pipes): void {
            fclose($pipes[0]);
            proc_close($proc);
        });
    }
}{% endif %}