mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
Merge pull request #1599 from open-sausages/pulls/4.0/create-correct-changedclass
BUG Ensure changes in class write to an instance of the new class
This commit is contained in:
commit
1cc1aa8dae
@ -1006,12 +1006,8 @@ class CMSMain extends LeftAndMain implements CurrentPageIdentifier, PermissionPr
|
||||
|
||||
// Update the class instance if necessary
|
||||
if(isset($data['ClassName']) && $data['ClassName'] != $record->ClassName) {
|
||||
$newClassName = $record->ClassName;
|
||||
// The records originally saved attribute was overwritten by $form->saveInto($record) before.
|
||||
// This is necessary for newClassInstance() to work as expected, and trigger change detection
|
||||
// on the ClassName attribute
|
||||
$record->setClassName($data['ClassName']);
|
||||
// Replace $record with a new instance
|
||||
// Replace $record with a new instance of the new class
|
||||
$newClassName = $data['ClassName'];
|
||||
$record = $record->newClassInstance($newClassName);
|
||||
}
|
||||
|
||||
|
@ -2,6 +2,7 @@
|
||||
|
||||
use SilverStripe\ORM\DB;
|
||||
use SilverStripe\ORM\DataObject;
|
||||
use SilverStripe\ORM\ValidationException;
|
||||
use SilverStripe\ORM\Versioning\Versioned;
|
||||
use SilverStripe\ORM\HiddenClass;
|
||||
use SilverStripe\CMS\Controllers\CMSMain;
|
||||
@ -540,14 +541,58 @@ class CMSMainTest extends FunctionalTest {
|
||||
$this->assertContains("delete", $exemptActions);
|
||||
$this->assertContains("unpublish", $exemptActions);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test that changed classes save with the correct class name
|
||||
*/
|
||||
public function testChangeClass() {
|
||||
$this->logInWithPermission('ADMIN');
|
||||
$cms = new CMSMain();
|
||||
$page = new CMSMainTest_ClassA();
|
||||
$page->Title = 'Class A';
|
||||
$page->write();
|
||||
|
||||
$form = $cms->getEditForm($page->ID);
|
||||
$form->loadDataFrom(['ClassName' => 'CMSMainTest_ClassB']);
|
||||
$result = $cms->save([
|
||||
'ID' => $page->ID,
|
||||
'ClassName' => 'CMSMainTest_ClassB'
|
||||
], $form);
|
||||
$this->assertEquals(200, $result->getStatusCode());
|
||||
|
||||
$newPage = SiteTree::get()->byID($page->ID);
|
||||
|
||||
$this->assertInstanceOf('CMSMainTest_ClassB', $newPage);
|
||||
$this->assertEquals('CMSMainTest_ClassB', $newPage->ClassName);
|
||||
$this->assertEquals('Class A', $newPage->Title);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
class CMSMainTest_ClassA extends Page implements TestOnly {
|
||||
private static $allowed_children = array('CMSMainTest_ClassB');
|
||||
|
||||
protected function onBeforeWrite()
|
||||
{
|
||||
parent::onBeforeWrite();
|
||||
|
||||
if ($this->ClassName !== __CLASS__) {
|
||||
throw new ValidationException("Class saved with incorrect ClassName");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
class CMSMainTest_ClassB extends Page implements TestOnly {
|
||||
|
||||
protected function onBeforeWrite()
|
||||
{
|
||||
parent::onBeforeWrite();
|
||||
|
||||
if ($this->ClassName !== __CLASS__) {
|
||||
throw new ValidationException("Class saved with incorrect ClassName");
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
class CMSMainTest_NotRoot extends Page implements TestOnly {
|
||||
|
Loading…
Reference in New Issue
Block a user