mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
164 lines
5.9 KiB
PHP
164 lines
5.9 KiB
PHP
<?php
|
|
|
|
|
|
/**
|
|
* Tests CMS Specific subclasses of {@see CMSBatchAction}
|
|
*/
|
|
class CMSBatchActionsTest extends SapphireTest {
|
|
|
|
protected static $fixture_file = 'CMSBatchActionsTest.yml';
|
|
|
|
public function setUp() {
|
|
parent::setUp();
|
|
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
// published page
|
|
$published = $this->objFromFixture('SiteTree', 'published');
|
|
$published->publishSingle();
|
|
|
|
// Deleted / archived page
|
|
$archived = $this->objFromFixture('SiteTree', 'archived');
|
|
$archived->doArchive(); // should archive all children
|
|
|
|
// Unpublished
|
|
$unpublished = $this->objFromFixture('SiteTree', 'unpublished');
|
|
$unpublished->publishSingle();
|
|
$unpublished->doUnpublish();
|
|
|
|
// Modified
|
|
$modified = $this->objFromFixture('SiteTree', 'modified');
|
|
$modified->publishSingle();
|
|
$modified->Title = 'modified2';
|
|
$modified->write();
|
|
}
|
|
|
|
/**
|
|
* Test which pages can be published via batch actions
|
|
*/
|
|
public function testBatchPublishApplicable() {
|
|
$this->logInWithPermission('ADMIN');
|
|
$pages = Versioned::get_including_deleted('SiteTree');
|
|
$ids = $pages->column('ID');
|
|
$action = new CMSBatchAction_Publish();
|
|
|
|
// Test applicable pages
|
|
$applicable = $action->applicablePages($ids);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'published'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'archived'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'archivedx'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'archivedy'), $applicable);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'unpublished'), $applicable);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'modified'), $applicable);
|
|
}
|
|
|
|
|
|
/**
|
|
* Test which pages can be unpublished via batch actions
|
|
*/
|
|
public function testBatchUnpublishApplicable() {
|
|
$this->logInWithPermission('ADMIN');
|
|
$pages = Versioned::get_including_deleted('SiteTree');
|
|
$ids = $pages->column('ID');
|
|
$action = new CMSBatchAction_Unpublish();
|
|
|
|
// Test applicable page
|
|
$applicable = $action->applicablePages($ids);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'published'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'archived'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'archivedx'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'archivedy'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'unpublished'), $applicable);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'modified'), $applicable);
|
|
}
|
|
|
|
/**
|
|
* Test which pages can be archived via batch actions
|
|
*/
|
|
public function testBatchArchiveApplicable() {
|
|
$this->logInWithPermission('ADMIN');
|
|
$pages = Versioned::get_including_deleted('SiteTree');
|
|
$ids = $pages->column('ID');
|
|
$action = new CMSBatchAction_Archive();
|
|
|
|
// Test applicable pages
|
|
$applicable = $action->applicablePages($ids);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'published'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'archived'), $applicable);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'unpublished'), $applicable);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'modified'), $applicable);
|
|
}
|
|
|
|
/**
|
|
* Test restore batch actions
|
|
*/
|
|
public function testBatchRestoreApplicable() {
|
|
$this->logInWithPermission('ADMIN');
|
|
$pages = Versioned::get_including_deleted('SiteTree');
|
|
$ids = $pages->column('ID');
|
|
$action = new CMSBatchAction_Restore();
|
|
|
|
// Test applicable pages
|
|
$applicable = $action->applicablePages($ids);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'published'), $applicable);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'archived'), $applicable);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'archivedx'), $applicable);
|
|
$this->assertContains($this->idFromFixture('SiteTree', 'archivedy'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'unpublished'), $applicable);
|
|
$this->assertNotContains($this->idFromFixture('SiteTree', 'modified'), $applicable);
|
|
}
|
|
|
|
public function testBatchRestore() {
|
|
$this->logInWithPermission('ADMIN');
|
|
$pages = Versioned::get_including_deleted('SiteTree');
|
|
$action = new CMSBatchAction_Restore();
|
|
$archivedID = $this->idFromFixture('SiteTree', 'archived');
|
|
$archivedxID = $this->idFromFixture('SiteTree', 'archivedx');
|
|
$archivedyID = $this->idFromFixture('SiteTree', 'archivedy');
|
|
|
|
// Just restore one child
|
|
$list = $pages->filter('RecordID', $archivedxID);
|
|
$this->assertEquals(1, $list->count());
|
|
$this->assertEquals($archivedID, $list->first()->ParentID);
|
|
|
|
// Run restore
|
|
$result = json_decode($action->run($list), true);
|
|
$this->assertEquals(
|
|
array(
|
|
$archivedxID => $archivedxID
|
|
),
|
|
$result['success']
|
|
);
|
|
$archivedx = SiteTree::get()->byID($archivedxID);
|
|
$this->assertNotNull($archivedx);
|
|
$this->assertEquals(0, $archivedx->ParentID); // Restore to root because parent is unrestored
|
|
|
|
// Restore both remaining pages
|
|
$list = $pages
|
|
->filter('RecordID', array($archivedID, $archivedyID))
|
|
->sort('Title');
|
|
$this->assertEquals(2, $list->count());
|
|
$this->assertEquals($archivedID, $list->first()->ParentID); // archivedy
|
|
$this->assertEquals(0, $list->last()->ParentID); // archived (parent)
|
|
|
|
// Run restore
|
|
$result = json_decode($action->run($list), true);
|
|
$this->assertEquals(
|
|
array(
|
|
// Order of archived is opposite to order items are passed in, as
|
|
// these are sorted by level first
|
|
$archivedID => $archivedID,
|
|
$archivedyID => $archivedyID
|
|
),
|
|
$result['success']
|
|
);
|
|
$archived = SiteTree::get()->byID($archivedID);
|
|
$archivedy = SiteTree::get()->byID($archivedyID);
|
|
$this->assertNotNull($archived);
|
|
$this->assertNotNull($archivedy);
|
|
$this->assertEquals($archivedID, $archivedy->ParentID); // Not restored to root, but to the parent
|
|
$this->assertEquals(0, $archived->ParentID); // Root stays root
|
|
}
|
|
|
|
}
|