2026-04-17 22:55:54 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
$projectRoot = dirname(__DIR__);
|
|
|
|
|
$srcRoot = $projectRoot . '/src';
|
|
|
|
|
$flatRoot = $projectRoot;
|
|
|
|
|
|
2026-06-25 21:11:00 +03:00
|
|
|
if (file_exists($srcRoot . '/vendor/autoload.php')) {
|
2026-04-17 22:55:54 +03:00
|
|
|
$appRoot = $srcRoot;
|
2026-06-25 21:11:00 +03:00
|
|
|
} elseif (file_exists($flatRoot . '/vendor/autoload.php')) {
|
2026-04-17 22:55:54 +03:00
|
|
|
$appRoot = $flatRoot;
|
|
|
|
|
} else {
|
2026-06-25 21:11:00 +03:00
|
|
|
throw new RuntimeException('Unable to locate vendor/autoload.php in expected project paths.');
|
2026-04-17 22:55:54 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$tmpRoot = __DIR__ . '/.tmp';
|
|
|
|
|
$binRoot = $tmpRoot . '/bin';
|
|
|
|
|
|
|
|
|
|
if (!is_dir($tmpRoot)) {
|
|
|
|
|
mkdir($tmpRoot, 0775, true);
|
|
|
|
|
}
|
|
|
|
|
if (!is_dir($binRoot)) {
|
|
|
|
|
mkdir($binRoot, 0775, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$fakeBinary = $binRoot . '/fake_bin.sh';
|
|
|
|
|
if (!file_exists($fakeBinary)) {
|
|
|
|
|
file_put_contents($fakeBinary, "#!/bin/sh\nexit 0\n");
|
|
|
|
|
chmod($fakeBinary, 0755);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!defined('MAIN_HOME')) {
|
|
|
|
|
define('MAIN_HOME', $appRoot . '/');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!defined('PHP_BIN')) {
|
|
|
|
|
define('PHP_BIN', PHP_BINARY);
|
|
|
|
|
}
|
|
|
|
|
if (!defined('VOD_PATH')) {
|
|
|
|
|
define('VOD_PATH', $tmpRoot . '/vod/');
|
|
|
|
|
}
|
|
|
|
|
if (!is_dir(VOD_PATH)) {
|
|
|
|
|
mkdir(VOD_PATH, 0775, true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
foreach (array('40', '71', '80') as $version) {
|
|
|
|
|
$ffmpegConst = 'FFMPEG_BIN_' . $version;
|
|
|
|
|
$ffprobeConst = 'FFPROBE_BIN_' . $version;
|
|
|
|
|
if (!defined($ffmpegConst)) {
|
|
|
|
|
define($ffmpegConst, $fakeBinary);
|
|
|
|
|
}
|
|
|
|
|
if (!defined($ffprobeConst)) {
|
|
|
|
|
define($ffprobeConst, $fakeBinary);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!isset($_FILES)) {
|
|
|
|
|
$_FILES = array();
|
|
|
|
|
}
|
|
|
|
|
|
2026-04-21 14:52:46 +03:00
|
|
|
if (!function_exists('igbinary_serialize')) {
|
|
|
|
|
function igbinary_serialize($value) {
|
|
|
|
|
return serialize($value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (!function_exists('igbinary_unserialize')) {
|
|
|
|
|
function igbinary_unserialize($value) {
|
|
|
|
|
return unserialize($value);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-06-24 19:07:37 +03:00
|
|
|
require_once MAIN_HOME . 'vendor/autoload.php';
|
2026-04-21 14:52:46 +03:00
|
|
|
require_once __DIR__ . '/Unit/M3uParser/ExtCustomTag.php';
|
2026-06-22 19:29:31 +03:00
|
|
|
|
|
|
|
|
// Test support: in-memory SQLite harness for DB-touching repositories/services.
|
|
|
|
|
require_once __DIR__ . '/Support/TestDb.php';
|