mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
291 lines
7.5 KiB
PHP
291 lines
7.5 KiB
PHP
<?php
|
|
|
|
class SearchContextTest extends SapphireTest {
|
|
|
|
static $fixture_file = 'SearchContextTest.yml';
|
|
|
|
protected $extraDataObjects = array(
|
|
'SearchContextTest_Person',
|
|
'SearchContextTest_Book',
|
|
'SearchContextTest_Company',
|
|
'SearchContextTest_Project',
|
|
'SearchContextTest_Deadline',
|
|
'SearchContextTest_Action',
|
|
'SearchContextTest_AllFilterTypes',
|
|
);
|
|
|
|
public function testResultSetFilterReturnsExpectedCount() {
|
|
$person = singleton('SearchContextTest_Person');
|
|
$context = $person->getDefaultSearchContext();
|
|
$results = $context->getResults(array('Name'=>''));
|
|
$this->assertEquals(5, $results->Count());
|
|
|
|
$results = $context->getResults(array('EyeColor'=>'green'));
|
|
$this->assertEquals(2, $results->Count());
|
|
|
|
$results = $context->getResults(array('EyeColor'=>'green', 'HairColor'=>'black'));
|
|
$this->assertEquals(1, $results->Count());
|
|
}
|
|
|
|
public function testSummaryIncludesDefaultFieldsIfNotDefined() {
|
|
$person = singleton('SearchContextTest_Person');
|
|
$this->assertContains('Name', $person->summaryFields());
|
|
|
|
$book = singleton('SearchContextTest_Book');
|
|
$this->assertContains('Title', $book->summaryFields());
|
|
}
|
|
|
|
public function testAccessDefinedSummaryFields() {
|
|
$company = singleton('SearchContextTest_Company');
|
|
$this->assertContains('Industry', $company->summaryFields());
|
|
}
|
|
|
|
public function testPartialMatchUsedByDefaultWhenNotExplicitlySet() {
|
|
$person = singleton('SearchContextTest_Person');
|
|
$context = $person->getDefaultSearchContext();
|
|
|
|
$this->assertEquals(
|
|
array(
|
|
"Name" => new PartialMatchFilter("Name"),
|
|
"HairColor" => new PartialMatchFilter("HairColor"),
|
|
"EyeColor" => new PartialMatchFilter("EyeColor")
|
|
),
|
|
$context->getFilters()
|
|
);
|
|
}
|
|
|
|
public function testDefaultFiltersDefinedWhenNotSetInDataObject() {
|
|
$book = singleton('SearchContextTest_Book');
|
|
$context = $book->getDefaultSearchContext();
|
|
|
|
$this->assertEquals(
|
|
array(
|
|
"Title" => new PartialMatchFilter("Title")
|
|
),
|
|
$context->getFilters()
|
|
);
|
|
}
|
|
|
|
public function testUserDefinedFiltersAppearInSearchContext() {
|
|
$company = singleton('SearchContextTest_Company');
|
|
$context = $company->getDefaultSearchContext();
|
|
|
|
$this->assertEquals(
|
|
array(
|
|
"Name" => new PartialMatchFilter("Name"),
|
|
"Industry" => new PartialMatchFilter("Industry"),
|
|
"AnnualProfit" => new PartialMatchFilter("AnnualProfit")
|
|
),
|
|
$context->getFilters()
|
|
);
|
|
}
|
|
|
|
public function testUserDefinedFieldsAppearInSearchContext() {
|
|
$company = singleton('SearchContextTest_Company');
|
|
$context = $company->getDefaultSearchContext();
|
|
$fields = $context->getFields();
|
|
$this->assertEquals(
|
|
new FieldList(
|
|
new TextField("Name", 'Name'),
|
|
new TextareaField("Industry", 'Industry'),
|
|
new NumericField("AnnualProfit", 'The Almighty Annual Profit')
|
|
),
|
|
$context->getFields()
|
|
);
|
|
}
|
|
|
|
public function testRelationshipObjectsLinkedInSearch() {
|
|
$action3 = $this->objFromFixture('SearchContextTest_Action', 'action3');
|
|
|
|
$project = singleton('SearchContextTest_Project');
|
|
$context = $project->getDefaultSearchContext();
|
|
|
|
$params = array("Name"=>"Blog Website", "Actions__SolutionArea"=>"technical");
|
|
|
|
$results = $context->getResults($params);
|
|
|
|
$this->assertEquals(1, $results->Count());
|
|
|
|
$project = $results->First();
|
|
|
|
$this->assertInstanceOf('SearchContextTest_Project', $project);
|
|
$this->assertEquals("Blog Website", $project->Name);
|
|
$this->assertEquals(2, $project->Actions()->Count());
|
|
|
|
$this->assertEquals(
|
|
"Get RSS feeds working",
|
|
$project->Actions()->find('ID', $action3->ID)->Description
|
|
);
|
|
}
|
|
|
|
public function testCanGenerateQueryUsingAllFilterTypes() {
|
|
$all = singleton("SearchContextTest_AllFilterTypes");
|
|
$context = $all->getDefaultSearchContext();
|
|
$params = array(
|
|
"ExactMatch" => "Match me exactly",
|
|
"PartialMatch" => "partially",
|
|
"Negation" => "undisclosed",
|
|
"CollectionMatch" => "ExistingCollectionValue,NonExistingCollectionValue,4,Inline'Quotes'",
|
|
"StartsWith" => "12345",
|
|
"EndsWith" => "ijkl",
|
|
"Fulltext" => "two"
|
|
);
|
|
|
|
$results = $context->getResults($params);
|
|
$this->assertEquals(1, $results->Count());
|
|
$this->assertEquals("Filtered value", $results->First()->HiddenValue);
|
|
}
|
|
|
|
public function testStartsWithFilterCaseInsensitive() {
|
|
$all = singleton("SearchContextTest_AllFilterTypes");
|
|
$context = $all->getDefaultSearchContext();
|
|
$params = array(
|
|
"StartsWith" => "12345-6789 camelcase", // spelled lowercase
|
|
);
|
|
|
|
$results = $context->getResults($params);
|
|
$this->assertEquals(1, $results->Count());
|
|
$this->assertEquals("Filtered value", $results->First()->HiddenValue);
|
|
}
|
|
|
|
public function testEndsWithFilterCaseInsensitive() {
|
|
$all = singleton("SearchContextTest_AllFilterTypes");
|
|
$context = $all->getDefaultSearchContext();
|
|
$params = array(
|
|
"EndsWith" => "IJKL", // spelled uppercase
|
|
);
|
|
|
|
$results = $context->getResults($params);
|
|
$this->assertEquals(1, $results->Count());
|
|
$this->assertEquals("Filtered value", $results->First()->HiddenValue);
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
class SearchContextTest_Person extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
"Name" => "Varchar",
|
|
"Email" => "Varchar",
|
|
"HairColor" => "Varchar",
|
|
"EyeColor" => "Varchar"
|
|
);
|
|
|
|
static $searchable_fields = array(
|
|
"Name", "HairColor", "EyeColor"
|
|
);
|
|
|
|
}
|
|
|
|
class SearchContextTest_Book extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
"Title" => "Varchar",
|
|
"Summary" => "Varchar"
|
|
);
|
|
|
|
}
|
|
|
|
class SearchContextTest_Company extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
"Name" => "Varchar",
|
|
"Industry" => "Varchar",
|
|
"AnnualProfit" => "Int"
|
|
);
|
|
|
|
static $summary_fields = array(
|
|
"Industry"
|
|
);
|
|
|
|
static $searchable_fields = array(
|
|
"Name" => "PartialMatchFilter",
|
|
"Industry" => array(
|
|
'field' => "TextareaField"
|
|
),
|
|
"AnnualProfit" => array(
|
|
'field' => "NumericField",
|
|
'filter' => "PartialMatchFilter",
|
|
'title' => 'The Almighty Annual Profit'
|
|
)
|
|
);
|
|
|
|
}
|
|
|
|
class SearchContextTest_Project extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
"Name" => "Varchar"
|
|
);
|
|
|
|
static $has_one = array(
|
|
"Deadline" => "SearchContextTest_Deadline"
|
|
);
|
|
|
|
static $has_many = array(
|
|
"Actions" => "SearchContextTest_Action"
|
|
);
|
|
|
|
static $searchable_fields = array(
|
|
"Name" => "PartialMatchFilter",
|
|
"Actions.SolutionArea" => "ExactMatchFilter",
|
|
"Actions.Description" => "PartialMatchFilter"
|
|
);
|
|
|
|
}
|
|
|
|
class SearchContextTest_Deadline extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
"CompletionDate" => "SS_Datetime"
|
|
);
|
|
|
|
static $has_one = array(
|
|
"Project" => "SearchContextTest_Project"
|
|
);
|
|
|
|
}
|
|
|
|
class SearchContextTest_Action extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
"Description" => "Text",
|
|
"SolutionArea" => "Varchar"
|
|
);
|
|
|
|
static $has_one = array(
|
|
"Project" => "SearchContextTest_Project"
|
|
);
|
|
|
|
}
|
|
|
|
class SearchContextTest_AllFilterTypes extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
"ExactMatch" => "Varchar",
|
|
"PartialMatch" => "Varchar",
|
|
"Negation" => "Varchar",
|
|
"SubstringMatch" => "Varchar",
|
|
"CollectionMatch" => "Varchar",
|
|
"StartsWith" => "Varchar",
|
|
"EndsWith" => "Varchar",
|
|
"HiddenValue" => "Varchar",
|
|
'FulltextField' => 'Text',
|
|
);
|
|
|
|
static $searchable_fields = array(
|
|
"ExactMatch" => "ExactMatchFilter",
|
|
"PartialMatch" => "PartialMatchFilter",
|
|
"Negation" => "NegationFilter",
|
|
"CollectionMatch" => "ExactMatchMultiFilter",
|
|
"StartsWith" => "StartsWithFilter",
|
|
"EndsWith" => "EndsWithFilter",
|
|
"FulltextField" => "FulltextFilter",
|
|
);
|
|
|
|
}
|
|
|
|
|