mirror of
https://github.com/Vateron-Media/XC_VM.git
synced 2026-09-26 04:02:51 +02:00
Adds tests/Support/TestDb.php — a Database-compatible wrapper over sqlite::memory: injected via setDb() — and StreamConfigRepositoryTest as a worked example (SELECT/list/keyed/DELETE-cascade/not-found). 286 -> 292 tests.
77 lines
2.8 KiB
PHP
77 lines
2.8 KiB
PHP
<?php
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
/**
|
|
* Sample of the SQLite test harness: exercises a real repository against an
|
|
* in-memory database injected via setDb().
|
|
*
|
|
* @covers StreamConfigRepository
|
|
*/
|
|
final class StreamConfigRepositoryTest extends TestCase {
|
|
|
|
private TestDb $db;
|
|
|
|
protected function setUp(): void {
|
|
$this->db = new TestDb();
|
|
$this->db->exec(
|
|
'CREATE TABLE profiles (profile_id INTEGER PRIMARY KEY, profile_name TEXT);
|
|
CREATE TABLE streams (id INTEGER PRIMARY KEY, transcode_profile_id INTEGER DEFAULT 0);
|
|
CREATE TABLE watch_folders (id INTEGER PRIMARY KEY, transcode_profile_id INTEGER DEFAULT 0);
|
|
CREATE TABLE streams_arguments (id INTEGER PRIMARY KEY, argument_key TEXT, argument_cmd TEXT);
|
|
|
|
INSERT INTO profiles (profile_id, profile_name) VALUES (1, "CPU"), (2, "GPU");
|
|
INSERT INTO streams (id, transcode_profile_id) VALUES (10, 2), (11, 1);
|
|
INSERT INTO watch_folders (id, transcode_profile_id) VALUES (5, 2);
|
|
INSERT INTO streams_arguments (id, argument_key, argument_cmd) VALUES
|
|
(1, "cookie", "-headers ?"), (2, "useragent", "-user_agent ?");'
|
|
);
|
|
|
|
StreamConfigRepository::setDb($this->db);
|
|
}
|
|
|
|
public function testGetTranscodeProfilesReturnsAll() {
|
|
$profiles = StreamConfigRepository::getTranscodeProfiles();
|
|
$this->assertCount(2, $profiles);
|
|
$this->assertSame('CPU', $profiles[0]['profile_name']);
|
|
}
|
|
|
|
public function testGetTranscodeProfileByIdReturnsRow() {
|
|
$profile = StreamConfigRepository::getTranscodeProfile(2);
|
|
$this->assertIsArray($profile);
|
|
$this->assertSame('GPU', $profile['profile_name']);
|
|
}
|
|
|
|
public function testGetTranscodeProfileReturnsNullWhenMissing() {
|
|
$this->assertNull(StreamConfigRepository::getTranscodeProfile(999));
|
|
}
|
|
|
|
public function testGetStreamArgumentsKeyedByArgumentKey() {
|
|
$args = StreamConfigRepository::getStreamArguments();
|
|
$this->assertArrayHasKey('cookie', $args);
|
|
$this->assertArrayHasKey('useragent', $args);
|
|
$this->assertSame('-user_agent ?', $args['useragent']['argument_cmd']);
|
|
}
|
|
|
|
public function testDeleteProfileRemovesRowAndDetachesReferences() {
|
|
$this->assertTrue(StreamConfigRepository::deleteProfile(2));
|
|
|
|
// Profile gone.
|
|
$this->assertNull(StreamConfigRepository::getTranscodeProfile(2));
|
|
|
|
// References reset to 0; the unrelated stream keeps its profile.
|
|
$this->db->query('SELECT transcode_profile_id FROM streams WHERE id = ?;', 10);
|
|
$this->assertSame(0, (int) $this->db->get_col());
|
|
|
|
$this->db->query('SELECT transcode_profile_id FROM streams WHERE id = ?;', 11);
|
|
$this->assertSame(1, (int) $this->db->get_col());
|
|
|
|
$this->db->query('SELECT transcode_profile_id FROM watch_folders WHERE id = ?;', 5);
|
|
$this->assertSame(0, (int) $this->db->get_col());
|
|
}
|
|
|
|
public function testDeleteProfileReturnsFalseWhenMissing() {
|
|
$this->assertFalse(StreamConfigRepository::deleteProfile(999));
|
|
}
|
|
}
|