2008-10-14 00:20:41 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Tests for DataObject FormField scaffolding
|
|
|
|
*
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage tests
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
class FormScaffolderTest extends SapphireTest {
|
|
|
|
|
|
|
|
static $fixture_file = 'sapphire/tests/forms/FormScaffolderTest.yml';
|
2010-01-13 00:16:14 +01:00
|
|
|
|
|
|
|
protected $extraDataObjects = array(
|
|
|
|
'FormScaffolderTest_Article',
|
|
|
|
'FormScaffolderTest_Tag',
|
|
|
|
'FormScaffolderTest_Author',
|
|
|
|
);
|
|
|
|
|
2008-10-14 00:20:41 +02:00
|
|
|
|
|
|
|
function testGetCMSFieldsSingleton() {
|
|
|
|
$fields = singleton('FormScaffolderTest_Article')->getCMSFields();
|
|
|
|
$this->assertTrue($fields->hasTabSet(), 'getCMSFields() produces a TabSet');
|
|
|
|
$this->assertNotNull($fields->dataFieldByName('Title'), 'getCMSFields() includes db fields');
|
|
|
|
$this->assertNotNull($fields->dataFieldByName('Content'), 'getCMSFields() includes db fields');
|
|
|
|
$this->assertNotNull($fields->dataFieldByName('AuthorID'), 'getCMSFields() includes has_one fields on singletons');
|
|
|
|
$this->assertNull($fields->dataFieldByName('Tags'), 'getCMSFields() doesnt include many_many fields if no ID is present');
|
|
|
|
}
|
|
|
|
|
|
|
|
function testGetCMSFieldsInstance() {
|
|
|
|
$article1 = $this->objFromFixture('FormScaffolderTest_Article', 'article1');
|
|
|
|
$fields = $article1->getCMSFields();
|
|
|
|
$this->assertNotNull($fields->dataFieldByName('AuthorID'), 'getCMSFields() includes has_one fields on instances');
|
|
|
|
$this->assertNotNull($fields->dataFieldByName('Tags'), 'getCMSFields() includes many_many fields if ID is present on instances');
|
|
|
|
}
|
|
|
|
|
|
|
|
function testUpdateCMSFields() {
|
|
|
|
$article1 = $this->objFromFixture('FormScaffolderTest_Article', 'article1');
|
|
|
|
$fields = $article1->getCMSFields();
|
|
|
|
$this->assertNotNull(
|
|
|
|
$fields->dataFieldByName('AddedDecoratorField'),
|
|
|
|
'getCMSFields() includes decorated fields'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testRestrictCMSFields() {
|
|
|
|
$article1 = $this->objFromFixture('FormScaffolderTest_Article', 'article1');
|
|
|
|
$fields = $article1->scaffoldFormFields(array(
|
|
|
|
'restrictFields' => array('Title')
|
|
|
|
));
|
|
|
|
$this->assertNotNull($fields->dataFieldByName('Title'), 'scaffoldCMSFields() includes explitly defined "restrictFields"');
|
|
|
|
$this->assertNull($fields->dataFieldByName('Content'), 'getCMSFields() doesnt include fields left out in a "restrictFields" definition');
|
|
|
|
}
|
|
|
|
|
|
|
|
function testFieldClassesOnGetCMSFields() {
|
|
|
|
$article1 = $this->objFromFixture('FormScaffolderTest_Article', 'article1');
|
|
|
|
$fields = $article1->scaffoldFormFields(array(
|
|
|
|
'fieldClasses' => array('Title' => 'HtmlEditorField')
|
|
|
|
));
|
|
|
|
$this->assertNotNull(
|
|
|
|
$fields->dataFieldByName('Title')
|
|
|
|
);
|
|
|
|
$this->assertEquals(
|
|
|
|
get_class($fields->dataFieldByName('Title')),
|
|
|
|
'HtmlEditorField',
|
|
|
|
'getCMSFields() doesnt include fields left out in a "restrictFields" definition'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testGetFormFields() {
|
|
|
|
$fields = singleton('FormScaffolderTest_Article')->getFrontEndFields();
|
|
|
|
$this->assertFalse($fields->hasTabSet(), 'getFrontEndFields() doesnt produce a TabSet by default');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class FormScaffolderTest_Article extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
|
|
'Title' => 'Varchar',
|
|
|
|
'Content' => 'HTMLText'
|
|
|
|
);
|
|
|
|
static $has_one = array(
|
|
|
|
'Author' => 'FormScaffolderTest_Author'
|
|
|
|
);
|
|
|
|
static $many_many = array(
|
|
|
|
'Tags' => 'FormScaffolderTest_Tag',
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
class FormScaffolderTest_Author extends Member implements TestOnly {
|
|
|
|
static $has_one = array(
|
|
|
|
'ProfileImage' => 'Image'
|
|
|
|
);
|
|
|
|
static $has_many = array(
|
|
|
|
'Articles' => 'FormScaffolderTest_Article'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
class FormScaffolderTest_Tag extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
|
|
'Title' => 'Varchar',
|
|
|
|
);
|
|
|
|
static $belongs_many_many = array(
|
|
|
|
'Articles' => 'FormScaffolderTest_Article'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
class FormScaffolderTest_ArticleDecorator extends DataObjectDecorator implements TestOnly {
|
|
|
|
static $db = array(
|
|
|
|
'DecoratedField' => 'Varchar'
|
|
|
|
);
|
|
|
|
function updateCMSFields(&$fields) {
|
|
|
|
$fields->addFieldToTab('Root.Main',
|
|
|
|
new TextField('AddedDecoratorField')
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DataObject::add_extension('FormScaffolderTest_Article', 'FormScaffolderTest_ArticleDecorator');
|
|
|
|
?>
|