2008-08-09 05:54:55 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
class SearchContextTest extends SapphireTest {
|
|
|
|
|
2011-03-30 08:49:11 +02:00
|
|
|
static $fixture_file = 'SearchContextTest.yml';
|
2008-08-11 01:29:30 +02:00
|
|
|
|
2010-04-12 04:03:16 +02:00
|
|
|
protected $extraDataObjects = array(
|
|
|
|
'SearchContextTest_Person',
|
|
|
|
'SearchContextTest_Book',
|
|
|
|
'SearchContextTest_Company',
|
|
|
|
'SearchContextTest_Project',
|
|
|
|
'SearchContextTest_Deadline',
|
|
|
|
'SearchContextTest_Action',
|
|
|
|
'SearchContextTest_AllFilterTypes',
|
|
|
|
);
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testResultSetFilterReturnsExpectedCount() {
|
2008-08-09 06:06:52 +02:00
|
|
|
$person = singleton('SearchContextTest_Person');
|
2008-08-09 05:54:55 +02:00
|
|
|
$context = $person->getDefaultSearchContext();
|
2008-08-09 06:38:44 +02:00
|
|
|
$results = $context->getResults(array('Name'=>''));
|
2008-08-09 05:54:55 +02:00
|
|
|
$this->assertEquals(5, $results->Count());
|
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
$results = $context->getResults(array('EyeColor'=>'green'));
|
2008-08-09 05:54:55 +02:00
|
|
|
$this->assertEquals(2, $results->Count());
|
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
$results = $context->getResults(array('EyeColor'=>'green', 'HairColor'=>'black'));
|
2008-08-09 05:54:55 +02:00
|
|
|
$this->assertEquals(1, $results->Count());
|
2008-08-09 06:06:52 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testSummaryIncludesDefaultFieldsIfNotDefined() {
|
2008-08-09 06:06:52 +02:00
|
|
|
$person = singleton('SearchContextTest_Person');
|
2008-08-09 08:29:50 +02:00
|
|
|
$this->assertContains('Name', $person->summaryFields());
|
2008-08-09 06:06:52 +02:00
|
|
|
|
|
|
|
$book = singleton('SearchContextTest_Book');
|
2008-08-09 08:29:50 +02:00
|
|
|
$this->assertContains('Title', $book->summaryFields());
|
2008-08-09 06:06:52 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testAccessDefinedSummaryFields() {
|
2008-08-09 06:06:52 +02:00
|
|
|
$company = singleton('SearchContextTest_Company');
|
2008-08-09 08:29:50 +02:00
|
|
|
$this->assertContains('Industry', $company->summaryFields());
|
2008-08-09 06:06:52 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testPartialMatchUsedByDefaultWhenNotExplicitlySet() {
|
2008-08-09 06:06:52 +02:00
|
|
|
$person = singleton('SearchContextTest_Person');
|
|
|
|
$context = $person->getDefaultSearchContext();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array(
|
2008-08-09 07:57:44 +02:00
|
|
|
"Name" => new PartialMatchFilter("Name"),
|
|
|
|
"HairColor" => new PartialMatchFilter("HairColor"),
|
|
|
|
"EyeColor" => new PartialMatchFilter("EyeColor")
|
2008-08-09 06:06:52 +02:00
|
|
|
),
|
|
|
|
$context->getFilters()
|
|
|
|
);
|
|
|
|
}
|
2009-10-02 02:05:19 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testDefaultFiltersDefinedWhenNotSetInDataObject() {
|
2008-08-09 06:06:52 +02:00
|
|
|
$book = singleton('SearchContextTest_Book');
|
|
|
|
$context = $book->getDefaultSearchContext();
|
|
|
|
|
|
|
|
$this->assertEquals(
|
|
|
|
array(
|
2008-08-09 07:57:44 +02:00
|
|
|
"Title" => new PartialMatchFilter("Title")
|
2008-08-09 06:06:52 +02:00
|
|
|
),
|
|
|
|
$context->getFilters()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testUserDefinedFiltersAppearInSearchContext() {
|
2008-08-09 06:38:44 +02:00
|
|
|
$company = singleton('SearchContextTest_Company');
|
|
|
|
$context = $company->getDefaultSearchContext();
|
2008-08-09 06:06:52 +02:00
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
$this->assertEquals(
|
2008-08-09 06:06:52 +02:00
|
|
|
array(
|
|
|
|
"Name" => new PartialMatchFilter("Name"),
|
2008-08-09 07:57:44 +02:00
|
|
|
"Industry" => new PartialMatchFilter("Industry"),
|
2008-08-09 06:06:52 +02:00
|
|
|
"AnnualProfit" => new PartialMatchFilter("AnnualProfit")
|
|
|
|
),
|
|
|
|
$context->getFilters()
|
2008-08-09 06:38:44 +02:00
|
|
|
);
|
2008-08-09 05:54:55 +02:00
|
|
|
}
|
2009-10-02 02:05:19 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testUserDefinedFieldsAppearInSearchContext() {
|
2008-08-11 01:29:30 +02:00
|
|
|
$company = singleton('SearchContextTest_Company');
|
|
|
|
$context = $company->getDefaultSearchContext();
|
|
|
|
$fields = $context->getFields();
|
|
|
|
$this->assertEquals(
|
2011-05-11 09:51:54 +02:00
|
|
|
new FieldList(
|
2008-11-02 22:24:56 +01:00
|
|
|
new TextField("Name", 'Name'),
|
2008-08-11 01:29:30 +02:00
|
|
|
new TextareaField("Industry", 'Industry'),
|
|
|
|
new NumericField("AnnualProfit", 'The Almighty Annual Profit')
|
|
|
|
),
|
|
|
|
$context->getFields()
|
|
|
|
);
|
|
|
|
}
|
2008-08-09 05:54:55 +02:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testRelationshipObjectsLinkedInSearch() {
|
2009-10-02 02:05:19 +02:00
|
|
|
$action3 = $this->objFromFixture('SearchContextTest_Action', 'action3');
|
|
|
|
|
2008-08-09 06:38:44 +02:00
|
|
|
$project = singleton('SearchContextTest_Project');
|
|
|
|
$context = $project->getDefaultSearchContext();
|
2008-08-09 06:06:52 +02:00
|
|
|
|
2008-08-09 06:53:34 +02:00
|
|
|
$params = array("Name"=>"Blog Website", "Actions__SolutionArea"=>"technical");
|
2008-08-09 06:06:52 +02:00
|
|
|
|
2008-08-09 06:53:34 +02:00
|
|
|
$results = $context->getResults($params);
|
|
|
|
|
|
|
|
$this->assertEquals(1, $results->Count());
|
|
|
|
|
|
|
|
$project = $results->First();
|
|
|
|
|
2012-05-09 12:43:22 +02:00
|
|
|
$this->assertInstanceOf('SearchContextTest_Project', $project);
|
2008-08-09 06:53:34 +02:00
|
|
|
$this->assertEquals("Blog Website", $project->Name);
|
|
|
|
$this->assertEquals(2, $project->Actions()->Count());
|
2009-09-30 23:24:53 +02:00
|
|
|
|
2009-10-02 02:05:19 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
"Get RSS feeds working",
|
|
|
|
$project->Actions()->find('ID', $action3->ID)->Description
|
|
|
|
);
|
2008-08-09 06:06:52 +02:00
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testCanGenerateQueryUsingAllFilterTypes() {
|
2008-08-09 06:06:52 +02:00
|
|
|
$all = singleton("SearchContextTest_AllFilterTypes");
|
|
|
|
$context = $all->getDefaultSearchContext();
|
|
|
|
$params = array(
|
2009-10-02 02:05:19 +02:00
|
|
|
"ExactMatch" => "Match me exactly",
|
2008-08-09 06:06:52 +02:00
|
|
|
"PartialMatch" => "partially",
|
2008-08-09 08:18:32 +02:00
|
|
|
"Negation" => "undisclosed",
|
|
|
|
"CollectionMatch" => "ExistingCollectionValue,NonExistingCollectionValue,4,Inline'Quotes'",
|
2008-08-09 08:40:50 +02:00
|
|
|
"StartsWith" => "12345",
|
2009-05-24 23:27:48 +02:00
|
|
|
"EndsWith" => "ijkl",
|
|
|
|
"Fulltext" => "two"
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
2009-10-02 02:05:19 +02:00
|
|
|
|
2008-08-09 06:06:52 +02:00
|
|
|
$results = $context->getResults($params);
|
|
|
|
$this->assertEquals(1, $results->Count());
|
|
|
|
$this->assertEquals("Filtered value", $results->First()->HiddenValue);
|
|
|
|
}
|
2012-03-14 16:05:28 +01:00
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testStartsWithFilterCaseInsensitive() {
|
2012-03-14 16:05:28 +01:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
2012-09-19 12:07:39 +02:00
|
|
|
public function testEndsWithFilterCaseInsensitive() {
|
2012-03-14 16:05:28 +01:00
|
|
|
$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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-08-09 05:54:55 +02:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2008-08-09 06:06:52 +02:00
|
|
|
class SearchContextTest_Person extends DataObject implements TestOnly {
|
2008-08-09 05:54:55 +02:00
|
|
|
|
|
|
|
static $db = array(
|
2009-05-07 08:00:50 +02:00
|
|
|
"Name" => "Varchar",
|
|
|
|
"Email" => "Varchar",
|
|
|
|
"HairColor" => "Varchar",
|
|
|
|
"EyeColor" => "Varchar"
|
2008-08-09 05:54:55 +02:00
|
|
|
);
|
|
|
|
|
2008-08-09 06:06:52 +02:00
|
|
|
static $searchable_fields = array(
|
|
|
|
"Name", "HairColor", "EyeColor"
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class SearchContextTest_Book extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
2009-05-07 08:00:50 +02:00
|
|
|
"Title" => "Varchar",
|
|
|
|
"Summary" => "Varchar"
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class SearchContextTest_Company extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
2009-05-07 08:00:50 +02:00
|
|
|
"Name" => "Varchar",
|
|
|
|
"Industry" => "Varchar",
|
2008-08-09 06:06:52 +02:00
|
|
|
"AnnualProfit" => "Int"
|
|
|
|
);
|
|
|
|
|
|
|
|
static $summary_fields = array(
|
|
|
|
"Industry"
|
|
|
|
);
|
|
|
|
|
|
|
|
static $searchable_fields = array(
|
|
|
|
"Name" => "PartialMatchFilter",
|
2008-08-11 01:29:30 +02:00
|
|
|
"Industry" => array(
|
|
|
|
'field' => "TextareaField"
|
|
|
|
),
|
|
|
|
"AnnualProfit" => array(
|
|
|
|
'field' => "NumericField",
|
|
|
|
'filter' => "PartialMatchFilter",
|
|
|
|
'title' => 'The Almighty Annual Profit'
|
|
|
|
)
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class SearchContextTest_Project extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
2009-05-07 08:00:50 +02:00
|
|
|
"Name" => "Varchar"
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
static $has_one = array(
|
|
|
|
"Deadline" => "SearchContextTest_Deadline"
|
|
|
|
);
|
|
|
|
|
|
|
|
static $has_many = array(
|
|
|
|
"Actions" => "SearchContextTest_Action"
|
|
|
|
);
|
|
|
|
|
|
|
|
static $searchable_fields = array(
|
|
|
|
"Name" => "PartialMatchFilter",
|
2008-08-09 06:53:34 +02:00
|
|
|
"Actions.SolutionArea" => "ExactMatchFilter",
|
|
|
|
"Actions.Description" => "PartialMatchFilter"
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class SearchContextTest_Deadline extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
API CHANGE: Renamed conflicting classes to have an "SS_" namespace, and renamed existing "SS" namespace to "SS_". The affected classes are: HTTPRequest, HTTPResponse, Query, Database, SSBacktrace, SSCli, SSDatetime, SSDatetimeTest, SSLog, SSLogTest, SSLogEmailWriter, SSLogErrorEmailFormatter, SSLogErrorFileFormatter, SSLogFileWriter and SSZendLog.
MINOR: Replaced usage of renamed classes with the new namespaced name.
From: Andrew Short <andrewjshort@gmail.com>
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90075 467b73ca-7a2a-4603-9d3b-597d59a354a9
2009-10-26 04:06:31 +01:00
|
|
|
"CompletionDate" => "SS_Datetime"
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
static $has_one = array(
|
|
|
|
"Project" => "SearchContextTest_Project"
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class SearchContextTest_Action extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
|
|
|
"Description" => "Text",
|
2009-05-07 08:00:50 +02:00
|
|
|
"SolutionArea" => "Varchar"
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
static $has_one = array(
|
2008-08-09 06:53:34 +02:00
|
|
|
"Project" => "SearchContextTest_Project"
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class SearchContextTest_AllFilterTypes extends DataObject implements TestOnly {
|
|
|
|
|
|
|
|
static $db = array(
|
2009-05-07 08:00:50 +02:00
|
|
|
"ExactMatch" => "Varchar",
|
|
|
|
"PartialMatch" => "Varchar",
|
|
|
|
"Negation" => "Varchar",
|
|
|
|
"SubstringMatch" => "Varchar",
|
|
|
|
"CollectionMatch" => "Varchar",
|
|
|
|
"StartsWith" => "Varchar",
|
|
|
|
"EndsWith" => "Varchar",
|
2009-05-24 23:27:48 +02:00
|
|
|
"HiddenValue" => "Varchar",
|
|
|
|
'FulltextField' => 'Text',
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
|
|
|
static $searchable_fields = array(
|
|
|
|
"ExactMatch" => "ExactMatchFilter",
|
|
|
|
"PartialMatch" => "PartialMatchFilter",
|
2008-08-09 06:38:44 +02:00
|
|
|
"Negation" => "NegationFilter",
|
2008-08-11 01:29:30 +02:00
|
|
|
"CollectionMatch" => "ExactMatchMultiFilter",
|
2008-08-09 08:40:50 +02:00
|
|
|
"StartsWith" => "StartsWithFilter",
|
2009-05-24 23:27:48 +02:00
|
|
|
"EndsWith" => "EndsWithFilter",
|
|
|
|
"FulltextField" => "FulltextFilter",
|
2008-08-09 06:06:52 +02:00
|
|
|
);
|
|
|
|
|
2008-08-09 05:54:55 +02:00
|
|
|
}
|
|
|
|
|
2012-02-12 21:22:11 +01:00
|
|
|
|