silverstripe-fulltextsearch/tests/SolrIndexVersionedTest.php

178 lines
6.2 KiB
PHP
Raw Normal View History

<?php
2017-04-21 02:23:27 +02:00
use SilverStripe\Dev\SapphireTest;
use SilverStripe\FullTextSearch\Tests\SolrVersionedTest\SolrDocumentMatcher;
use SilverStripe\FullTextSearch\Tests\SolrVersionedTest\SolrIndexVersionedTest_Object;
use SilverStripe\FullTextSearch\Tests\SolrVersionedTest\SolrVersionedTest_Index;
use SilverStripe\Versioned\Versioned;
2017-04-21 02:23:27 +02:00
2015-11-21 07:19:20 +01:00
if (class_exists('Phockito')) {
Phockito::include_hamcrest(false);
2015-11-21 07:19:20 +01:00
}
class SolrIndexVersionedTest extends SapphireTest
{
protected $oldMode = null;
2015-11-21 07:19:20 +01:00
protected static $index = null;
2015-11-21 07:19:20 +01:00
protected $extraDataObjects = array(
'SearchVariantVersionedTest_Item',
'SolrIndexVersionedTest_Object',
2015-11-21 07:19:20 +01:00
);
public function setUp()
{
parent::setUp();
2015-11-21 07:19:20 +01:00
if (!class_exists('Phockito')) {
$this->skipTest = true;
$this->markTestSkipped("These tests need the Phockito module installed to run");
return;
2015-11-21 07:19:20 +01:00
}
// Check versioned available
if (!class_exists('Versioned')) {
$this->skipTest = true;
$this->markTestSkipped('The versioned decorator is not installed');
return;
2015-11-21 07:19:20 +01:00
}
if (self::$index === null) {
self::$index = singleton('SolrVersionedTest_Index');
}
SearchUpdater::bind_manipulation_capture();
Config::modify()->set('Injector', 'SearchUpdateProcessor', array(
2015-11-21 07:19:20 +01:00
'class' => 'SearchUpdateImmediateProcessor'
));
FullTextSearch::force_index_list(self::$index);
SearchUpdater::clear_dirty_indexes();
2015-11-21 07:19:20 +01:00
$this->oldMode = Versioned::get_reading_mode();
Versioned::reading_stage('Stage');
}
2015-11-21 07:19:20 +01:00
public function tearDown()
{
Versioned::set_reading_mode($this->oldMode);
parent::tearDown();
}
protected function getServiceMock()
{
return Phockito::mock('Solr3Service');
}
/**
* @param DataObject $object Item being added
* @param string $stage
* @return string
*/
protected function getExpectedDocumentId($object, $stage)
2015-11-21 07:19:20 +01:00
{
$id = $object->ID;
$class = ClassInfo::baseDataClass($object);
2015-11-21 07:19:20 +01:00
// Prevent subsites from breaking tests
$subsites = '';
if(class_exists('Subsite') && DataObject::getSchema()->hasOneComponent($object->getClassName(), 'Subsite')) {
$subsites = '"SearchVariantSubsites":"0",';
}
return $id.'-'.$class.'-{'.$subsites.'"SearchVariantVersioned":"'.$stage.'"}';
2015-11-21 07:19:20 +01:00
}
2015-11-21 07:19:20 +01:00
public function testPublishing()
{
2015-11-21 07:19:20 +01:00
// Setup mocks
$serviceMock = $this->getServiceMock();
self::$index->setService($serviceMock);
2015-11-21 07:19:20 +01:00
// Check that write updates Stage
Versioned::reading_stage('Stage');
Phockito::reset($serviceMock);
$item = new SearchVariantVersionedTest_Item(array('TestText' => 'Foo'));
2015-11-21 07:19:20 +01:00
$item->write();
$object = new SolrIndexVersionedTest_Object(array('TestText' => 'Bar'));
$object->write();
2015-11-21 07:19:20 +01:00
SearchUpdater::flush_dirty_indexes();
$doc1 = new SolrDocumentMatcher(array(
'_documentid' => $this->getExpectedDocumentId($item, 'Stage'),
'ClassName' => 'SearchVariantVersionedTest_Item',
'SearchVariantVersionedTest_Item_TestText' => 'Foo',
'_versionedstage' => 'Stage'
2015-11-21 07:19:20 +01:00
));
$doc2 = new SolrDocumentMatcher(array(
'_documentid' => $this->getExpectedDocumentId($object, 'Stage'),
'ClassName' => 'SolrIndexVersionedTest_Object',
'SolrIndexVersionedTest_Object_TestText' => 'Bar',
'_versionedstage' => 'Stage'
));
Phockito::verify($serviceMock)->addDocument($doc1);
Phockito::verify($serviceMock)->addDocument($doc2);
2015-11-21 07:19:20 +01:00
// Check that write updates Live
Versioned::reading_stage('Stage');
Phockito::reset($serviceMock);
$item = new SearchVariantVersionedTest_Item(array('TestText' => 'Foo'));
2015-11-21 07:19:20 +01:00
$item->write();
$item->publish('Stage', 'Live');
$object = new SolrIndexVersionedTest_Object(array('TestText' => 'Bar'));
$object->write();
$object->publish('Stage', 'Live');
2015-11-21 07:19:20 +01:00
SearchUpdater::flush_dirty_indexes();
$doc = new SolrDocumentMatcher(array(
'_documentid' => $this->getExpectedDocumentId($item, 'Live'),
'ClassName' => 'SearchVariantVersionedTest_Item',
'SearchVariantVersionedTest_Item_TestText' => 'Foo',
'_versionedstage' => 'Live'
));
$doc2 = new SolrDocumentMatcher(array(
'_documentid' => $this->getExpectedDocumentId($object, 'Live'),
'ClassName' => 'SolrIndexVersionedTest_Object',
'SolrIndexVersionedTest_Object_TestText' => 'Bar',
'_versionedstage' => 'Live'
2015-11-21 07:19:20 +01:00
));
Phockito::verify($serviceMock)->addDocument($doc);
Phockito::verify($serviceMock)->addDocument($doc2);
2015-11-21 07:19:20 +01:00
}
2015-11-21 07:19:20 +01:00
public function testDelete()
{
// Setup mocks
$serviceMock = $this->getServiceMock();
self::$index->setService($serviceMock);
2015-11-21 07:19:20 +01:00
// Delete the live record (not the stage)
Versioned::reading_stage('Stage');
Phockito::reset($serviceMock);
$item = new SearchVariantVersionedTest_Item(array('TestText' => 'Too'));
2015-11-21 07:19:20 +01:00
$item->write();
$item->publish('Stage', 'Live');
Versioned::reading_stage('Live');
$id = clone $item;
2015-11-21 07:19:20 +01:00
$item->delete();
SearchUpdater::flush_dirty_indexes();
Phockito::verify($serviceMock, 1)
->deleteById($this->getExpectedDocumentId($id, 'Live'));
Phockito::verify($serviceMock, 0)
->deleteById($this->getExpectedDocumentId($id, 'Stage'));
2015-11-21 07:19:20 +01:00
// Delete the stage record
Versioned::reading_stage('Stage');
Phockito::reset($serviceMock);
$item = new SearchVariantVersionedTest_Item(array('TestText' => 'Too'));
2015-11-21 07:19:20 +01:00
$item->write();
$item->publish('Stage', 'Live');
$id = clone $item;
2015-11-21 07:19:20 +01:00
$item->delete();
SearchUpdater::flush_dirty_indexes();
Phockito::verify($serviceMock, 1)
->deleteById($this->getExpectedDocumentId($id, 'Stage'));
Phockito::verify($serviceMock, 0)
->deleteById($this->getExpectedDocumentId($id, 'Live'));
}
}