silverstripe-framework/tests/php/ORM/Search/SearchContextTest.php

300 lines
7.8 KiB
PHP
Raw Normal View History

<?php
use SilverStripe\ORM\DataObject;
use SilverStripe\Dev\SapphireTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\Forms\TextField;
use SilverStripe\Forms\TextareaField;
use SilverStripe\Forms\NumericField;
use SilverStripe\Forms\FieldList;
use SilverStripe\ORM\Filters\PartialMatchFilter;
class SearchContextTest extends SapphireTest {
2014-08-15 08:53:05 +02:00
protected 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());
2014-08-15 08:53:05 +02:00
$results = $context->getResults(array('EyeColor'=>'green'));
$this->assertEquals(2, $results->Count());
2014-08-15 08:53:05 +02:00
$results = $context->getResults(array('EyeColor'=>'green', 'HairColor'=>'black'));
$this->assertEquals(1, $results->Count());
}
2014-08-15 08:53:05 +02:00
public function testSummaryIncludesDefaultFieldsIfNotDefined() {
$person = singleton('SearchContextTest_Person');
$this->assertContains('Name', $person->summaryFields());
2014-08-15 08:53:05 +02:00
$book = singleton('SearchContextTest_Book');
$this->assertContains('Title', $book->summaryFields());
}
2014-08-15 08:53:05 +02:00
public function testAccessDefinedSummaryFields() {
$company = singleton('SearchContextTest_Company');
$this->assertContains('Industry', $company->summaryFields());
}
2014-08-15 08:53:05 +02:00
public function testPartialMatchUsedByDefaultWhenNotExplicitlySet() {
$person = singleton('SearchContextTest_Person');
$context = $person->getDefaultSearchContext();
2014-08-15 08:53:05 +02:00
$this->assertEquals(
array(
"Name" => new PartialMatchFilter("Name"),
"HairColor" => new PartialMatchFilter("HairColor"),
"EyeColor" => new PartialMatchFilter("EyeColor")
),
$context->getFilters()
);
}
2014-08-15 08:53:05 +02:00
public function testDefaultFiltersDefinedWhenNotSetInDataObject() {
$book = singleton('SearchContextTest_Book');
$context = $book->getDefaultSearchContext();
2014-08-15 08:53:05 +02:00
$this->assertEquals(
array(
"Title" => new PartialMatchFilter("Title")
),
$context->getFilters()
);
}
2014-08-15 08:53:05 +02:00
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()
);
}
2014-08-15 08:53:05 +02:00
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()
);
}
2014-08-15 08:53:05 +02:00
public function testRelationshipObjectsLinkedInSearch() {
$action3 = $this->objFromFixture('SearchContextTest_Action', 'action3');
2014-08-15 08:53:05 +02:00
$project = singleton('SearchContextTest_Project');
$context = $project->getDefaultSearchContext();
2014-08-15 08:53:05 +02:00
$params = array("Name"=>"Blog Website", "Actions__SolutionArea"=>"technical");
2014-08-15 08:53:05 +02:00
$results = $context->getResults($params);
2014-08-15 08:53:05 +02:00
$this->assertEquals(1, $results->Count());
2014-08-15 08:53:05 +02:00
$project = $results->First();
2014-08-15 08:53:05 +02:00
$this->assertInstanceOf('SearchContextTest_Project', $project);
$this->assertEquals("Blog Website", $project->Name);
$this->assertEquals(2, $project->Actions()->Count());
2014-08-15 08:53:05 +02:00
$this->assertEquals(
2014-08-15 08:53:05 +02:00
"Get RSS feeds working",
$project->Actions()->find('ID', $action3->ID)->Description
);
}
2014-08-15 08:53:05 +02:00
public function testCanGenerateQueryUsingAllFilterTypes() {
$all = singleton("SearchContextTest_AllFilterTypes");
$context = $all->getDefaultSearchContext();
$params = array(
"ExactMatch" => "Match me exactly",
"PartialMatch" => "partially",
"CollectionMatch" => array("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);
}
2014-08-15 08:53:05 +02:00
}
class SearchContextTest_Person extends DataObject implements TestOnly {
2014-08-15 08:53:05 +02:00
private static $db = array(
"Name" => "Varchar",
"Email" => "Varchar",
"HairColor" => "Varchar",
"EyeColor" => "Varchar"
);
2014-08-15 08:53:05 +02:00
private static $searchable_fields = array(
"Name", "HairColor", "EyeColor"
);
2014-08-15 08:53:05 +02:00
}
class SearchContextTest_Book extends DataObject implements TestOnly {
2014-08-15 08:53:05 +02:00
private static $db = array(
"Title" => "Varchar",
"Summary" => "Varchar"
);
2014-08-15 08:53:05 +02:00
}
class SearchContextTest_Company extends DataObject implements TestOnly {
2014-08-15 08:53:05 +02:00
private static $db = array(
"Name" => "Varchar",
"Industry" => "Varchar",
"AnnualProfit" => "Int"
);
2014-08-15 08:53:05 +02:00
private static $summary_fields = array(
"Industry"
);
2014-08-15 08:53:05 +02:00
private static $searchable_fields = array(
"Name" => "PartialMatchFilter",
"Industry" => array(
'field' => "SilverStripe\\Forms\\TextareaField"
),
"AnnualProfit" => array(
'field' => "SilverStripe\\Forms\\NumericField",
'filter' => "PartialMatchFilter",
'title' => 'The Almighty Annual Profit'
)
);
2014-08-15 08:53:05 +02:00
}
class SearchContextTest_Project extends DataObject implements TestOnly {
2014-08-15 08:53:05 +02:00
private static $db = array(
"Name" => "Varchar"
);
2014-08-15 08:53:05 +02:00
private static $has_one = array(
2014-08-15 08:53:05 +02:00
"Deadline" => "SearchContextTest_Deadline"
);
2014-08-15 08:53:05 +02:00
private static $has_many = array(
"Actions" => "SearchContextTest_Action"
);
2014-08-15 08:53:05 +02:00
private static $searchable_fields = array(
"Name" => "PartialMatchFilter",
"Actions.SolutionArea" => "ExactMatchFilter",
"Actions.Description" => "PartialMatchFilter"
);
2014-08-15 08:53:05 +02:00
}
class SearchContextTest_Deadline extends DataObject implements TestOnly {
2014-08-15 08:53:05 +02:00
private static $db = array(
"CompletionDate" => "Datetime"
);
2014-08-15 08:53:05 +02:00
private static $has_one = array(
2014-08-15 08:53:05 +02:00
"Project" => "SearchContextTest_Project"
);
2014-08-15 08:53:05 +02:00
}
class SearchContextTest_Action extends DataObject implements TestOnly {
2014-08-15 08:53:05 +02:00
private static $db = array(
"Description" => "Text",
"SolutionArea" => "Varchar"
);
2014-08-15 08:53:05 +02:00
private static $has_one = array(
"Project" => "SearchContextTest_Project"
);
2014-08-15 08:53:05 +02:00
}
class SearchContextTest_AllFilterTypes extends DataObject implements TestOnly {
2014-08-15 08:53:05 +02:00
private static $db = array(
"ExactMatch" => "Varchar",
"PartialMatch" => "Varchar",
"SubstringMatch" => "Varchar",
"CollectionMatch" => "Varchar",
"StartsWith" => "Varchar",
"EndsWith" => "Varchar",
"HiddenValue" => "Varchar",
2014-08-15 08:53:05 +02:00
'FulltextField' => 'Text',
);
2014-08-15 08:53:05 +02:00
private static $searchable_fields = array(
"ExactMatch" => "ExactMatchFilter",
"PartialMatch" => "PartialMatchFilter",
"CollectionMatch" => "ExactMatchFilter",
"StartsWith" => "StartsWithFilter",
"EndsWith" => "EndsWithFilter",
"FulltextField" => "FulltextFilter",
);
2014-08-15 08:53:05 +02:00
}