2011-05-02 06:33:05 +02:00
|
|
|
<?php
|
|
|
|
|
2017-11-14 21:48:52 +01:00
|
|
|
namespace SilverStripe\FullTextSearch\Tests;
|
|
|
|
|
2017-04-21 06:34:04 +02:00
|
|
|
use SilverStripe\Core\Config\Config;
|
2017-04-26 12:52:20 +02:00
|
|
|
use SilverStripe\Core\Injector\Injector;
|
2017-11-14 21:48:52 +01:00
|
|
|
use SilverStripe\Dev\SapphireTest;
|
2017-04-21 06:34:04 +02:00
|
|
|
use SilverStripe\FullTextSearch\Search\FullTextSearch;
|
2017-11-14 21:48:52 +01:00
|
|
|
use SilverStripe\FullTextSearch\Search\Processors\SearchUpdateProcessor;
|
|
|
|
use SilverStripe\FullTextSearch\Search\Processors\SearchUpdateImmediateProcessor;
|
2020-06-10 07:22:20 +02:00
|
|
|
use SilverStripe\FullTextSearch\Search\Services\SearchableService;
|
2017-11-14 21:48:52 +01:00
|
|
|
use SilverStripe\FullTextSearch\Search\Updaters\SearchUpdater;
|
2017-04-21 06:34:04 +02:00
|
|
|
use SilverStripe\FullTextSearch\Tests\SearchUpdaterTest\SearchUpdaterTest_Container;
|
|
|
|
use SilverStripe\FullTextSearch\Tests\SearchUpdaterTest\SearchUpdaterTest_HasOne;
|
|
|
|
use SilverStripe\FullTextSearch\Tests\SearchUpdaterTest\SearchUpdaterTest_HasMany;
|
|
|
|
use SilverStripe\FullTextSearch\Tests\SearchUpdaterTest\SearchUpdaterTest_Index;
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
class SearchUpdaterTest extends SapphireTest
|
|
|
|
{
|
|
|
|
protected $usesDatabase = true;
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
private static $index = null;
|
2016-04-15 05:46:19 +02:00
|
|
|
|
2021-11-02 02:48:12 +01:00
|
|
|
protected function setUp(): void
|
2015-11-21 07:19:20 +01:00
|
|
|
{
|
|
|
|
parent::setUp();
|
2013-09-02 00:10:14 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
if (self::$index === null) {
|
2017-04-21 06:34:04 +02:00
|
|
|
self::$index = SearchUpdaterTest_Index::singleton();
|
2015-11-21 07:19:20 +01:00
|
|
|
} else {
|
|
|
|
self::$index->reset();
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2017-04-26 12:52:20 +02:00
|
|
|
Config::modify()->set(Injector::class, SearchUpdateProcessor::class, array(
|
|
|
|
'class' => SearchUpdateImmediateProcessor::class
|
2015-11-21 07:19:20 +01:00
|
|
|
));
|
2013-07-25 04:27:09 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
FullTextSearch::force_index_list(self::$index);
|
|
|
|
SearchUpdater::clear_dirty_indexes();
|
|
|
|
}
|
2013-07-25 04:27:09 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
public function testBasic()
|
|
|
|
{
|
|
|
|
$item = new SearchUpdaterTest_Container();
|
|
|
|
$item->write();
|
2021-11-02 02:48:12 +01:00
|
|
|
$this->assertTrue(true);
|
2013-07-25 04:27:09 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// TODO: Make sure changing field1 updates item.
|
|
|
|
// TODO: Get updating just field2 to not update item (maybe not possible - variants complicate)
|
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
public function testHasOneHook()
|
|
|
|
{
|
2020-06-10 07:22:20 +02:00
|
|
|
$classesToSkip = [SearchUpdaterTest_Container::class];
|
|
|
|
Config::modify()->set(SearchableService::class, 'indexing_canview_exclude_classes', $classesToSkip);
|
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$hasOne = new SearchUpdaterTest_HasOne();
|
|
|
|
$hasOne->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$alternateHasOne = new SearchUpdaterTest_HasOne();
|
|
|
|
$alternateHasOne->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$container1 = new SearchUpdaterTest_Container();
|
|
|
|
$container1->HasOneObjectID = $hasOne->ID;
|
|
|
|
$container1->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$container2 = new SearchUpdaterTest_Container();
|
|
|
|
$container2->HasOneObjectID = $hasOne->ID;
|
|
|
|
$container2->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$container3 = new SearchUpdaterTest_Container();
|
|
|
|
$container3->HasOneObjectID = $alternateHasOne->ID;
|
|
|
|
$container3->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// Check the default "writing a document updates the document"
|
|
|
|
SearchUpdater::flush_dirty_indexes();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2017-12-03 23:53:37 +01:00
|
|
|
$added = self::$index->getAdded(['ID']);
|
2015-11-21 07:19:20 +01:00
|
|
|
// Some databases don't output $added in a consistent order; that's okay
|
2017-11-14 21:48:52 +01:00
|
|
|
usort($added, function ($a, $b) {
|
|
|
|
return $a['ID']-$b['ID'];
|
|
|
|
});
|
2014-02-13 23:32:20 +01:00
|
|
|
|
2017-12-03 23:53:37 +01:00
|
|
|
$this->assertEquals([
|
|
|
|
['ID' => $container1->ID],
|
|
|
|
['ID' => $container2->ID],
|
|
|
|
['ID' => $container3->ID],
|
|
|
|
], $added);
|
2014-02-13 23:32:20 +01:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// Check writing a has_one tracks back to the origin documents
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
self::$index->reset();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$hasOne->Field1 = "Updated";
|
|
|
|
$hasOne->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
SearchUpdater::flush_dirty_indexes();
|
2017-12-03 23:53:37 +01:00
|
|
|
$added = self::$index->getAdded(['ID']);
|
2017-04-22 11:31:34 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// Some databases don't output $added in a consistent order; that's okay
|
2017-11-14 21:48:52 +01:00
|
|
|
usort($added, function ($a, $b) {
|
|
|
|
return $a['ID']-$b['ID'];
|
|
|
|
});
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2017-12-03 23:53:37 +01:00
|
|
|
$this->assertEquals([
|
|
|
|
['ID' => $container1->ID],
|
|
|
|
['ID' => $container2->ID],
|
|
|
|
], $added);
|
2014-02-13 23:32:20 +01:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// Check updating an unrelated field doesn't track back
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
self::$index->reset();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$hasOne->Field2 = "Updated";
|
|
|
|
$hasOne->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
SearchUpdater::flush_dirty_indexes();
|
2017-12-03 23:53:37 +01:00
|
|
|
$this->assertEquals([], self::$index->getAdded(['ID']));
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
// Check writing a has_one tracks back to the origin documents
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
self::$index->reset();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$alternateHasOne->Field1= "Updated";
|
|
|
|
$alternateHasOne->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
SearchUpdater::flush_dirty_indexes();
|
2017-12-03 23:53:37 +01:00
|
|
|
$this->assertEquals([
|
|
|
|
['ID' => $container3->ID],
|
|
|
|
], self::$index->getAdded(['ID']));
|
2015-11-21 07:19:20 +01:00
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
public function testHasManyHook()
|
|
|
|
{
|
2020-06-10 07:22:20 +02:00
|
|
|
$classesToSkip = [SearchUpdaterTest_Container::class];
|
|
|
|
Config::modify()->set(SearchableService::class, 'indexing_canview_exclude_classes', $classesToSkip);
|
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$container1 = new SearchUpdaterTest_Container();
|
|
|
|
$container1->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$container2 = new SearchUpdaterTest_Container();
|
|
|
|
$container2->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
//self::$index->reset();
|
|
|
|
//SearchUpdater::clear_dirty_indexes();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$hasMany1 = new SearchUpdaterTest_HasMany();
|
|
|
|
$hasMany1->HasManyContainerID = $container1->ID;
|
|
|
|
$hasMany1->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$hasMany2 = new SearchUpdaterTest_HasMany();
|
|
|
|
$hasMany2->HasManyContainerID = $container1->ID;
|
|
|
|
$hasMany2->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
SearchUpdater::flush_dirty_indexes();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2017-12-03 23:53:37 +01:00
|
|
|
$this->assertEquals([
|
|
|
|
['ID' => $container1->ID],
|
|
|
|
['ID' => $container2->ID],
|
|
|
|
], self::$index->getAdded(['ID']));
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
self::$index->reset();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$hasMany1->Field1 = 'Updated';
|
|
|
|
$hasMany1->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
$hasMany2->Field1 = 'Updated';
|
|
|
|
$hasMany2->write();
|
2011-05-02 06:33:05 +02:00
|
|
|
|
2015-11-21 07:19:20 +01:00
|
|
|
SearchUpdater::flush_dirty_indexes();
|
2017-12-03 23:53:37 +01:00
|
|
|
$this->assertEquals([
|
|
|
|
['ID' => $container1->ID],
|
|
|
|
], self::$index->getAdded(['ID']));
|
2015-11-21 07:19:20 +01:00
|
|
|
}
|
2011-05-02 06:33:05 +02:00
|
|
|
}
|