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'); } }