Files
newznab-tmux/tests/Unit/Services/NameFixing/PredbMatchSelectorTest.php
2026-04-14 11:31:49 +02:00

135 lines
4.7 KiB
PHP

<?php
declare(strict_types=1);
namespace Tests\Unit\Services\NameFixing;
use App\Services\NameFixing\PredbMatchSelector;
use PHPUnit\Framework\TestCase;
class PredbMatchSelectorTest extends TestCase
{
public function test_it_prefers_the_best_matching_predb_hit_over_the_first_hit(): void
{
$selector = new PredbMatchSelector;
$bestMatch = $selector->selectBestMatch('The.Fisher.King.1991.1080p.BluRay.x264-GRP', [
[
'id' => 1,
'title' => '1.vs.1.Suzu.Matsuoka.JAPANESE.XXX.720p.WEBRiP.MP4-MFPF',
'filename' => '1.vs.1.Suzu.Matsuoka.JAPANESE.XXX.720p.WEBRiP.MP4-MFPF.mp4',
],
[
'id' => 2,
'title' => 'The.Fisher.King.1991.1080p.BluRay.x264-GRP',
'filename' => 'The.Fisher.King.1991.1080p.BluRay.x264-GRP.mkv',
],
]);
$this->assertNotNull($bestMatch);
$this->assertSame(2, $bestMatch['id']);
}
public function test_it_rejects_numeric_only_queries(): void
{
$selector = new PredbMatchSelector;
$bestMatch = $selector->selectBestMatch('1', [
[
'id' => 1,
'title' => '1.vs.1.Suzu.Matsuoka.JAPANESE.XXX.720p.WEBRiP.MP4-MFPF',
'filename' => '1.vs.1.Suzu.Matsuoka.JAPANESE.XXX.720p.WEBRiP.MP4-MFPF.mp4',
],
]);
$this->assertNull($bestMatch);
}
public function test_it_rejects_generic_dvd_structure_queries(): void
{
$selector = new PredbMatchSelector;
$bestMatch = $selector->selectBestMatch('VTS_01_1', [
[
'id' => 1,
'title' => '1.vs.1.Suzu.Matsuoka.JAPANESE.XXX.720p.WEBRiP.MP4-MFPF',
'filename' => '1.vs.1.Suzu.Matsuoka.JAPANESE.XXX.720p.WEBRiP.MP4-MFPF.mp4',
],
]);
$this->assertNull($bestMatch);
}
public function test_it_can_match_cover_style_queries_when_the_title_tokens_line_up(): void
{
$selector = new PredbMatchSelector;
$bestMatch = $selector->selectBestMatch('cover the fisher king', [
[
'id' => 1,
'title' => '1.vs.1.Suzu.Matsuoka.JAPANESE.XXX.720p.WEBRiP.MP4-MFPF',
'filename' => '1.vs.1.Suzu.Matsuoka.JAPANESE.XXX.720p.WEBRiP.MP4-MFPF.mp4',
],
[
'id' => 2,
'title' => 'The.Fisher.King.1991.1080p.BluRay.x264-GRP',
'filename' => 'The.Fisher.King.1991.1080p.BluRay.x264-GRP.mkv',
],
]);
$this->assertNotNull($bestMatch);
$this->assertSame(2, $bestMatch['id']);
}
public function test_it_rejects_unrelated_release_sharing_only_date_and_resolution(): void
{
$selector = new PredbMatchSelector;
$bestMatch = $selector->selectBestMatch(
'NubileFilms.Molly.Little.My.Little.Seductress.S50E7.26.04.07.2160p',
[
[
'id' => 1,
'title' => 'Private.26.04.07.Alice.Ross.And.Nata.Gold.XXX.2160p.MP4-WRB',
'filename' => 'Private.26.04.07.Alice.Ross.And.Nata.Gold.XXX.2160p.MP4-WRB.mp4',
'source' => 'srrdb',
],
[
'id' => 2,
'title' => 'SomeOther.26.04.07.Random.Title.XXX.2160p.MP4-GRP',
'filename' => 'SomeOther.26.04.07.Random.Title.XXX.2160p.MP4-GRP.mp4',
'source' => 'srrdb',
],
]
);
$this->assertNull($bestMatch, 'Should reject all results when none share meaningful tokens with the query');
}
public function test_it_selects_correct_match_when_date_overlaps_with_unrelated_results(): void
{
$selector = new PredbMatchSelector;
$bestMatch = $selector->selectBestMatch(
'NubileFilms.Molly.Little.My.Little.Seductress.S50E7.26.04.07.2160p',
[
[
'id' => 1,
'title' => 'Private.26.04.07.Alice.Ross.And.Nata.Gold.XXX.2160p.MP4-WRB',
'filename' => 'Private.26.04.07.Alice.Ross.And.Nata.Gold.XXX.2160p.MP4-WRB.mp4',
'source' => 'srrdb',
],
[
'id' => 2,
'title' => 'NubileFilms.Molly.Little.My.Little.Seductress.S50E7.26.04.07.2160p-GRP',
'filename' => 'NubileFilms.Molly.Little.My.Little.Seductress.S50E7.26.04.07.2160p.mp4',
'source' => 'srrdb',
],
]
);
$this->assertNotNull($bestMatch);
$this->assertSame(2, $bestMatch['id'], 'Should select the result that shares meaningful tokens with the query');
}
}