2010-09-03 07:06:13 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @package userforms
|
|
|
|
*/
|
|
|
|
|
|
|
|
class EditableFormFieldTest extends FunctionalTest {
|
|
|
|
|
2013-12-20 02:23:13 +01:00
|
|
|
static $fixture_file = 'userforms/tests/EditableFormFieldTest.yml';
|
2010-09-08 05:20:28 +02:00
|
|
|
|
|
|
|
function testFormFieldPermissions() {
|
|
|
|
$text = $this->objFromFixture('EditableTextField', 'basic-text');
|
|
|
|
|
|
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
$this->assertTrue($text->canEdit());
|
|
|
|
$this->assertTrue($text->canDelete());
|
|
|
|
|
|
|
|
$text->setReadonly(true);
|
|
|
|
$this->assertFalse($text->canEdit());
|
|
|
|
$this->assertFalse($text->canDelete());
|
|
|
|
|
|
|
|
$text->setReadonly(false);
|
|
|
|
$this->assertTrue($text->canEdit());
|
|
|
|
$this->assertTrue($text->canDelete());
|
|
|
|
|
|
|
|
$member = Member::currentUser();
|
|
|
|
$member->logout();
|
|
|
|
|
|
|
|
$this->logInWithPermission('SITETREE_VIEW_ALL');
|
|
|
|
$text->setReadonly(false);
|
|
|
|
$this->assertFalse($text->canEdit());
|
|
|
|
$this->assertFalse($text->canDelete());
|
|
|
|
|
|
|
|
$text->setReadonly(true);
|
|
|
|
$this->assertFalse($text->canEdit());
|
|
|
|
$this->assertFalse($text->canDelete());
|
|
|
|
}
|
|
|
|
|
|
|
|
function testCustomRules() {
|
|
|
|
$this->logInWithPermission('ADMIN');
|
|
|
|
$form = $this->objFromFixture('UserDefinedForm', 'custom-rules-form');
|
|
|
|
|
|
|
|
$checkbox = $form->Fields()->find('ClassName', 'EditableCheckbox');
|
|
|
|
$field = $form->Fields()->find('ClassName', 'EditableTextField');
|
|
|
|
|
2015-07-24 04:37:48 +02:00
|
|
|
$rules = $checkbox->DisplayRules();
|
2010-09-08 05:20:28 +02:00
|
|
|
|
|
|
|
// form has 2 fields - a checkbox and a text field
|
2012-07-17 06:09:31 +02:00
|
|
|
// it has 1 rule - when ticked the checkbox hides the text field
|
2010-09-08 05:20:28 +02:00
|
|
|
$this->assertEquals($rules->Count(), 1);
|
|
|
|
|
|
|
|
$checkboxRule = $rules->First();
|
2015-07-24 04:37:48 +02:00
|
|
|
$checkboxRule->ConditionFieldID = $field->ID;
|
|
|
|
|
2010-09-08 05:20:28 +02:00
|
|
|
$this->assertEquals($checkboxRule->Display, 'Hide');
|
|
|
|
$this->assertEquals($checkboxRule->ConditionOption, 'HasValue');
|
2015-07-24 04:37:48 +02:00
|
|
|
$this->assertEquals($checkboxRule->FieldValue, '6');
|
2010-09-08 05:20:28 +02:00
|
|
|
}
|
2010-09-03 07:06:13 +02:00
|
|
|
|
|
|
|
function testEditableDropdownField() {
|
|
|
|
$dropdown = $this->objFromFixture('EditableDropdown', 'basic-dropdown');
|
|
|
|
|
|
|
|
$field = $dropdown->getFormField();
|
|
|
|
|
|
|
|
|
|
|
|
$this->assertThat($field, $this->isInstanceOf('DropdownField'));
|
|
|
|
$values = $field->getSource();
|
|
|
|
|
|
|
|
$this->assertEquals(array('Option 1' => 'Option 1', 'Option 2' => 'Option 2'), $values);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testEditableRadioField() {
|
|
|
|
$radio = $this->objFromFixture('EditableRadioField', 'radio-field');
|
2010-09-08 12:35:43 +02:00
|
|
|
|
2010-09-03 07:06:13 +02:00
|
|
|
$field = $radio->getFormField();
|
|
|
|
|
|
|
|
$this->assertThat($field, $this->isInstanceOf('OptionsetField'));
|
|
|
|
$values = $field->getSource();
|
|
|
|
|
2010-09-08 12:35:43 +02:00
|
|
|
$this->assertEquals(array('Option 5' => 'Option 5', 'Option 6' => 'Option 6'), $values);
|
2010-09-03 07:06:13 +02:00
|
|
|
}
|
2010-09-08 05:20:28 +02:00
|
|
|
|
2010-09-08 12:35:43 +02:00
|
|
|
function testMultipleOptionDuplication() {
|
|
|
|
$dropdown = $this->objFromFixture('EditableDropdown','basic-dropdown');
|
|
|
|
|
|
|
|
$clone = $dropdown->duplicate();
|
|
|
|
|
|
|
|
$this->assertEquals($clone->Options()->Count(), $dropdown->Options()->Count());
|
|
|
|
|
|
|
|
foreach($clone->Options() as $option) {
|
|
|
|
$orginal = $dropdown->Options()->find('Title', $option->Title);
|
|
|
|
|
|
|
|
$this->assertEquals($orginal->Sort, $option->Sort);
|
|
|
|
}
|
|
|
|
}
|
2013-12-04 19:06:34 +01:00
|
|
|
|
2015-07-15 23:23:43 +02:00
|
|
|
public function testFileField() {
|
|
|
|
$fileField = $this->objFromFixture('EditableFileField', 'file-field');
|
|
|
|
$formField = $fileField->getFormField();
|
|
|
|
|
|
|
|
$this->assertContains('jpg', $formField->getValidator()->getAllowedExtensions());
|
|
|
|
$this->assertNotContains('notallowedextension', $formField->getValidator()->getAllowedExtensions());
|
|
|
|
}
|
|
|
|
|
2015-08-28 00:42:32 +02:00
|
|
|
public function testFileFieldAllowedExtensionsBlacklist() {
|
|
|
|
Config::inst()->update('EditableFileField', 'allowed_extensions_blacklist', array('jpg'));
|
|
|
|
$fileField = $this->objFromFixture('EditableFileField', 'file-field');
|
|
|
|
$formField = $fileField->getFormField();
|
|
|
|
|
|
|
|
$this->assertNotContains('jpg', $formField->getValidator()->getAllowedExtensions());
|
|
|
|
}
|
|
|
|
|
2013-12-04 19:06:34 +01:00
|
|
|
}
|