mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
108 lines
3.6 KiB
PHP
108 lines
3.6 KiB
PHP
<?php
|
|
|
|
use SilverStripe\ORM\Versioning\Versioned;
|
|
|
|
/**
|
|
* <h2>Fixture tree</h2>
|
|
* <code>
|
|
* parent1_published
|
|
* child1_1_published
|
|
* grandchild1_1_1
|
|
* grandchild1_1_2_published
|
|
* grandchild1_1_3_orphaned
|
|
* grandchild1_1_4_orphaned_published
|
|
* child1_2_published
|
|
* child1_3_orphaned
|
|
* child1_4_orphaned_published
|
|
* parent2
|
|
* child2_1_published_orphaned // is orphaned because parent is not published
|
|
* </code>
|
|
*
|
|
* <h2>Cleaned up tree</h2>
|
|
* <code>
|
|
* parent1_published
|
|
* child1_1_published
|
|
* grandchild1_1_1
|
|
* grandchild1_1_2_published
|
|
* child2_1_published_orphaned
|
|
* parent2
|
|
* </code>
|
|
*
|
|
* @author Ingo Schommer (<firstname>@silverstripe.com), SilverStripe Ltd.
|
|
*
|
|
* @package cms
|
|
* @subpackage tests
|
|
*/
|
|
class RemoveOrphanedPagesTaskTest extends FunctionalTest {
|
|
|
|
protected static $fixture_file = 'RemoveOrphanedPagesTaskTest.yml';
|
|
|
|
protected static $use_draft_site = false;
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
|
|
$parent1_published = $this->objFromFixture('Page', 'parent1_published');
|
|
$parent1_published->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
$child1_1_published = $this->objFromFixture('Page', 'child1_1_published');
|
|
$child1_1_published->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
$child1_2_published = $this->objFromFixture('Page', 'child1_2_published');
|
|
$child1_2_published->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
$child1_3_orphaned = $this->objFromFixture('Page', 'child1_3_orphaned');
|
|
$child1_3_orphaned->ParentID = 9999;
|
|
$child1_3_orphaned->write();
|
|
|
|
$child1_4_orphaned_published = $this->objFromFixture('Page', 'child1_4_orphaned_published');
|
|
$child1_4_orphaned_published->ParentID = 9999;
|
|
$child1_4_orphaned_published->write();
|
|
$child1_4_orphaned_published->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
$grandchild1_1_2_published = $this->objFromFixture('Page', 'grandchild1_1_2_published');
|
|
$grandchild1_1_2_published->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
$grandchild1_1_3_orphaned = $this->objFromFixture('Page', 'grandchild1_1_3_orphaned');
|
|
$grandchild1_1_3_orphaned->ParentID = 9999;
|
|
$grandchild1_1_3_orphaned->write();
|
|
|
|
$grandchild1_1_4_orphaned_published = $this->objFromFixture('Page',
|
|
'grandchild1_1_4_orphaned_published'
|
|
);
|
|
$grandchild1_1_4_orphaned_published->ParentID = 9999;
|
|
$grandchild1_1_4_orphaned_published->write();
|
|
$grandchild1_1_4_orphaned_published->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
|
|
$child2_1_published_orphaned = $this->objFromFixture('Page', 'child2_1_published_orphaned');
|
|
$child2_1_published_orphaned->copyVersionToStage(Versioned::DRAFT, Versioned::LIVE);
|
|
}
|
|
|
|
public function testGetOrphansByStage() {
|
|
// all orphans
|
|
$child1_3_orphaned = $this->objFromFixture('Page', 'child1_3_orphaned');
|
|
$child1_4_orphaned_published = $this->objFromFixture('Page', 'child1_4_orphaned_published');
|
|
$grandchild1_1_3_orphaned = $this->objFromFixture('Page', 'grandchild1_1_3_orphaned');
|
|
$grandchild1_1_4_orphaned_published = $this->objFromFixture('Page',
|
|
'grandchild1_1_4_orphaned_published'
|
|
);
|
|
$child2_1_published_orphaned = $this->objFromFixture('Page', 'child2_1_published_orphaned');
|
|
|
|
$task = singleton('RemoveOrphanedPagesTask');
|
|
$orphans = $task->getOrphanedPages();
|
|
$orphanIDs = $orphans->column('ID');
|
|
sort($orphanIDs);
|
|
$compareIDs = array(
|
|
$child1_3_orphaned->ID,
|
|
$child1_4_orphaned_published->ID,
|
|
$grandchild1_1_3_orphaned->ID,
|
|
$grandchild1_1_4_orphaned_published->ID,
|
|
$child2_1_published_orphaned->ID
|
|
);
|
|
sort($compareIDs);
|
|
|
|
$this->assertEquals($orphanIDs, $compareIDs);
|
|
}
|
|
|
|
}
|