0
0
Fork 0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-04-04 04:45:23 +00:00

Searching: Added test for guillemets

To cover 
This commit is contained in:
Dan Brown 2025-02-14 19:30:25 +00:00
parent c291d27c19
commit f1b8e857bf
No known key found for this signature in database
GPG key ID: 46D9F943C24A2EF9

View file

@ -75,6 +75,22 @@ class SearchIndexingTest extends TestCase
$this->assertEquals(3, $scoreByTerm->get('SuperImportant'));
}
public function test_terms_containing_guillemets_handled()
{
$page = $this->entities->newPage(['html' => '<p>«Hello there» and « there »</p>']);
$scoreByTerm = $page->searchTerms()->pluck('score', 'term');
$expected = ['Hello', 'there', 'and'];
foreach ($expected as $term) {
$this->assertNotNull($scoreByTerm->get($term), "Failed asserting that \"$term\" is indexed");
}
$nonExpected = ['«', '»'];
foreach ($nonExpected as $term) {
$this->assertNull($scoreByTerm->get($term), "Failed asserting that \"$term\" is not indexed");
}
}
public function test_terms_containing_punctuation_within_retain_original_form_and_split_form_in_index()
{
$page = $this->entities->newPage(['html' => '<p>super.duper awesome-beans big- barry cheese.</p><p>biscuits</p><p>a-bs</p>']);