mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-06-02 23:56:56 +08:00
Converted search filters to not be vue based
This commit is contained in:
43
tests/Entity/SearchOptionsTest.php
Normal file
43
tests/Entity/SearchOptionsTest.php
Normal file
@ -0,0 +1,43 @@
|
||||
<?php namespace Tests\Entity;
|
||||
|
||||
use BookStack\Entities\SearchOptions;
|
||||
use Tests\TestCase;
|
||||
|
||||
class SearchOptionsTest extends TestCase
|
||||
{
|
||||
public function test_from_string_parses_a_search_string_properly()
|
||||
{
|
||||
$options = SearchOptions::fromString('cat "dog" [tag=good] {is_tree}');
|
||||
|
||||
$this->assertEquals(['cat'], $options->searches);
|
||||
$this->assertEquals(['dog'], $options->exacts);
|
||||
$this->assertEquals(['tag=good'], $options->tags);
|
||||
$this->assertEquals(['is_tree' => ''], $options->filters);
|
||||
}
|
||||
|
||||
public function test_to_string_includes_all_items_in_the_correct_format()
|
||||
{
|
||||
$expected = 'cat "dog" [tag=good] {is_tree}';
|
||||
$options = new SearchOptions;
|
||||
$options->searches = ['cat'];
|
||||
$options->exacts = ['dog'];
|
||||
$options->tags = ['tag=good'];
|
||||
$options->filters = ['is_tree' => ''];
|
||||
|
||||
$output = $options->toString();
|
||||
foreach (explode(' ', $expected) as $term) {
|
||||
$this->assertStringContainsString($term, $output);
|
||||
}
|
||||
}
|
||||
|
||||
public function test_correct_filter_values_are_set_from_string()
|
||||
{
|
||||
$opts = SearchOptions::fromString('{is_tree} {name:dan} {cat:happy}');
|
||||
|
||||
$this->assertEquals([
|
||||
'is_tree' => '',
|
||||
'name' => 'dan',
|
||||
'cat' => 'happy',
|
||||
], $opts->filters);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user