reset(); } SearchUpdater::bind_manipulation_capture(); Config::modify()->set(Injector::class, SearchUpdateProcessor::class, array( 'class' => SearchUpdateImmediateProcessor::class )); FullTextSearch::force_index_list(self::$index); SearchUpdater::clear_dirty_indexes(); } public function testBasic() { $item = new SearchUpdaterTest_Container(); $item->write(); // TODO: Make sure changing field1 updates item. // TODO: Get updating just field2 to not update item (maybe not possible - variants complicate) } public function testHasOneHook() { $hasOne = new SearchUpdaterTest_HasOne(); $hasOne->write(); $alternateHasOne = new SearchUpdaterTest_HasOne(); $alternateHasOne->write(); $container1 = new SearchUpdaterTest_Container(); $container1->HasOneObjectID = $hasOne->ID; $container1->write(); $container2 = new SearchUpdaterTest_Container(); $container2->HasOneObjectID = $hasOne->ID; $container2->write(); $container3 = new SearchUpdaterTest_Container(); $container3->HasOneObjectID = $alternateHasOne->ID; $container3->write(); // Check the default "writing a document updates the document" SearchUpdater::flush_dirty_indexes(); $added = self::$index->getAdded(array('ID')); // Some databases don't output $added in a consistent order; that's okay usort($added, function ($a, $b) {return $a['ID']-$b['ID']; }); $this->assertEquals($added, array( array('ID' => $container1->ID), array('ID' => $container2->ID), array('ID' => $container3->ID) )); // Check writing a has_one tracks back to the origin documents self::$index->reset(); $hasOne->Field1 = "Updated"; $hasOne->write(); SearchUpdater::flush_dirty_indexes(); $added = self::$index->getAdded(array('ID')); // Some databases don't output $added in a consistent order; that's okay usort($added, function ($a, $b) {return $a['ID']-$b['ID']; }); $this->assertEquals($added, array( array('ID' => $container1->ID), array('ID' => $container2->ID) )); // Check updating an unrelated field doesn't track back self::$index->reset(); $hasOne->Field2 = "Updated"; $hasOne->write(); SearchUpdater::flush_dirty_indexes(); $this->assertEquals(self::$index->getAdded(array('ID')), array()); // Check writing a has_one tracks back to the origin documents self::$index->reset(); $alternateHasOne->Field1= "Updated"; $alternateHasOne->write(); SearchUpdater::flush_dirty_indexes(); $this->assertEquals(self::$index->getAdded(array('ID')), array( array('ID' => $container3->ID) )); } public function testHasManyHook() { $container1 = new SearchUpdaterTest_Container(); $container1->write(); $container2 = new SearchUpdaterTest_Container(); $container2->write(); //self::$index->reset(); //SearchUpdater::clear_dirty_indexes(); $hasMany1 = new SearchUpdaterTest_HasMany(); $hasMany1->HasManyContainerID = $container1->ID; $hasMany1->write(); $hasMany2 = new SearchUpdaterTest_HasMany(); $hasMany2->HasManyContainerID = $container1->ID; $hasMany2->write(); SearchUpdater::flush_dirty_indexes(); $this->assertEquals(self::$index->getAdded(array('ID')), array( array('ID' => $container1->ID), array('ID' => $container2->ID) )); self::$index->reset(); $hasMany1->Field1 = 'Updated'; $hasMany1->write(); $hasMany2->Field1 = 'Updated'; $hasMany2->write(); SearchUpdater::flush_dirty_indexes(); $this->assertEquals(self::$index->getAdded(array('ID')), array( array('ID' => $container1->ID) )); } }