score([ 'title' => 'Some Other Title', 'author' => 'Unknown', 'isbn' => '9780321125217', 'publishdate' => '2020-01-01', 'publisher' => '', 'cover' => 0, ], $parsed); $this->assertSame(1.0, $score); } public function test_higher_score_for_better_title_author_match(): void { $parsed = new BookParseResult( rawName: 'Refactoring', title: 'Refactoring', author: 'Martin Fowler', year: 1999 ); $scorer = new BookMatchScorer; $good = $scorer->score([ 'title' => 'Refactoring: Improving the Design of Existing Code', 'author' => 'Martin Fowler', 'publishdate' => '1999-07-08', 'publisher' => 'Addison-Wesley', 'cover' => 1, ], $parsed); $bad = $scorer->score([ 'title' => 'Cooking for Beginners', 'author' => 'Random Author', 'publishdate' => '2018-01-01', 'publisher' => '', 'cover' => 0, ], $parsed); $this->assertGreaterThan($bad, $good); } public function test_unrelated_title_without_author_scores_below_threshold(): void { $parsed = new BookParseResult( rawName: 'El verano en que me enamore', title: 'El verano en que me enamore', ); $score = (new BookMatchScorer)->score([ 'title' => 'Aquellos veranos de pileta', 'author' => 'Ignacio Pomi & Lucas Enrique Sastre', 'publishdate' => '', 'publisher' => '', 'cover' => 1, ], $parsed); $this->assertLessThan(0.55, $score, 'Unrelated book with partial word overlap should not reach match threshold'); } public function test_diabetes_title_collision_scores_below_no_author_cutoff(): void { $parsed = new BookParseResult( rawName: 'Living With Diabetes - 1st Edition 2026', title: 'Living With Diabetes - 1st Edition 2026', year: 2026 ); $score = (new BookMatchScorer)->score([ 'title' => 'Healthy Lifestyle Against Diabetes 1st Edition', 'author' => 'Amie Armstrong', 'publishdate' => '2018-11-04', 'publisher' => 'Independently Published', 'cover' => 1, ], $parsed); $this->assertLessThan(0.68, $score, 'Ambiguous no-author title collision should stay below stricter cutoff'); } }