mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
129 lines
3.7 KiB
PHP
129 lines
3.7 KiB
PHP
<?php
|
|
|
|
use SilverStripe\Dev\SapphireTest;
|
|
use SilverStripe\CMS\Model\SiteTree;
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\FullTextSearch\Search\Indexes\SearchIndex_Recording;
|
|
|
|
class SearchVariantVersionedTest extends SapphireTest
|
|
{
|
|
/**
|
|
* @var SearchVariantVersionedTest_Index
|
|
*/
|
|
private static $index = null;
|
|
|
|
protected $extraDataObjects = array(
|
|
'SearchVariantVersionedTest_Item'
|
|
);
|
|
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
|
|
// Check versioned available
|
|
if (!class_exists('Versioned')) {
|
|
return $this->markTestSkipped('The versioned decorator is not installed');
|
|
}
|
|
|
|
if (self::$index === null) {
|
|
self::$index = singleton('SearchVariantVersionedTest_Index');
|
|
}
|
|
|
|
SearchUpdater::bind_manipulation_capture();
|
|
|
|
Config::inst()->update('Injector', 'SearchUpdateProcessor', array(
|
|
'class' => 'SearchUpdateImmediateProcessor'
|
|
));
|
|
|
|
FullTextSearch::force_index_list(self::$index);
|
|
SearchUpdater::clear_dirty_indexes();
|
|
}
|
|
|
|
public function testPublishing()
|
|
{
|
|
// Check that write updates Stage
|
|
|
|
$item = new SearchVariantVersionedTest_Item(array('TestText' => 'Foo'));
|
|
$item->write();
|
|
|
|
SearchUpdater::flush_dirty_indexes();
|
|
$this->assertEquals(self::$index->getAdded(array('ID', '_versionedstage')), array(
|
|
array('ID' => $item->ID, '_versionedstage' => 'Stage')
|
|
));
|
|
|
|
// Check that publish updates Live
|
|
|
|
self::$index->reset();
|
|
|
|
$item->publish("Stage", "Live");
|
|
|
|
SearchUpdater::flush_dirty_indexes();
|
|
$this->assertEquals(self::$index->getAdded(array('ID', '_versionedstage')), array(
|
|
array('ID' => $item->ID, '_versionedstage' => 'Live')
|
|
));
|
|
|
|
// Just update a SiteTree field, and check it updates Stage
|
|
|
|
self::$index->reset();
|
|
|
|
$item->Title = "Pow!";
|
|
$item->write();
|
|
|
|
SearchUpdater::flush_dirty_indexes();
|
|
|
|
$expected = array(array(
|
|
'ID' => $item->ID,
|
|
'_versionedstage' => 'Stage'
|
|
));
|
|
$added = self::$index->getAdded(array('ID', '_versionedstage'));
|
|
$this->assertEquals($expected, $added);
|
|
}
|
|
|
|
public function testExcludeVariantState()
|
|
{
|
|
$index = singleton('SearchVariantVersionedTest_IndexNoStage');
|
|
FullTextSearch::force_index_list($index);
|
|
|
|
// Check that write doesn't update stage
|
|
$item = new SearchVariantVersionedTest_Item(array('TestText' => 'Foo'));
|
|
$item->write();
|
|
SearchUpdater::flush_dirty_indexes();
|
|
$this->assertEquals($index->getAdded(array('ID', '_versionedstage')), array());
|
|
|
|
// Check that publish updates Live
|
|
$index->reset();
|
|
$item->publish("Stage", "Live");
|
|
SearchUpdater::flush_dirty_indexes();
|
|
$this->assertEquals($index->getAdded(array('ID', '_versionedstage')), array(
|
|
array('ID' => $item->ID, '_versionedstage' => 'Live')
|
|
));
|
|
}
|
|
}
|
|
|
|
class SearchVariantVersionedTest_Item extends SiteTree implements TestOnly
|
|
{
|
|
// TODO: Currently theres a failure if you addClass a non-table class
|
|
private static $db = array(
|
|
'TestText' => 'Varchar'
|
|
);
|
|
}
|
|
|
|
class SearchVariantVersionedTest_Index extends SearchIndex_Recording
|
|
{
|
|
public function init()
|
|
{
|
|
$this->addClass('SearchVariantVersionedTest_Item');
|
|
$this->addFilterField('TestText');
|
|
}
|
|
}
|
|
|
|
class SearchVariantVersionedTest_IndexNoStage extends SearchIndex_Recording
|
|
{
|
|
public function init()
|
|
{
|
|
$this->addClass('SearchVariantVersionedTest_Item');
|
|
$this->addFilterField('TestText');
|
|
$this->excludeVariantState(array('SearchVariantVersioned' => 'Stage'));
|
|
}
|
|
}
|