objFromFixture('EditableTextField', 'basic-text'); $this->logInWithPermission('ADMIN'); $this->assertTrue($text->canCreate()); $this->assertTrue($text->canView()); $this->assertTrue($text->canEdit()); $this->assertTrue($text->canDelete()); $text->setReadonly(true); $this->assertTrue($text->canView()); $this->assertFalse($text->canEdit()); $this->assertFalse($text->canDelete()); $text->setReadonly(false); $this->assertTrue($text->canView()); $this->assertTrue($text->canEdit()); $this->assertTrue($text->canDelete()); $member = Member::currentUser(); $member->logout(); $this->logInWithPermission('SITETREE_VIEW_ALL'); $this->assertFalse($text->canCreate()); $text->setReadonly(false); $this->assertTrue($text->canView()); $this->assertFalse($text->canEdit()); $this->assertFalse($text->canDelete()); $text->setReadonly(true); $this->assertTrue($text->canView()); $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'); $rules = $checkbox->DisplayRules(); // form has 2 fields - a checkbox and a text field // it has 1 rule - when ticked the checkbox hides the text field $this->assertEquals(1, $rules->Count()); $this->assertEquals($rules, $checkbox->EffectiveDisplayRules()); $checkboxRule = $rules->First(); $checkboxRule->ConditionFieldID = $field->ID; $this->assertEquals($checkboxRule->Display, 'Hide'); $this->assertEquals($checkboxRule->ConditionOption, 'HasValue'); $this->assertEquals($checkboxRule->FieldValue, '6'); // If field is required then all custom rules are disabled $checkbox->Required = true; $this->assertEquals(0, $checkbox->EffectiveDisplayRules()->count()); } /** * @covers EditableOption::getValue */ public function testEditableOptionEmptyValue() { $option = $this->objFromFixture('EditableOption', 'option-1'); $option->Value = ''; // Disallow empty values EditableOption::set_allow_empty_values(false); $this->assertEquals($option->Title, $option->Value); $option->Value = 'test'; $this->assertEquals('test', $option->Value); // Allow empty values EditableOption::set_allow_empty_values(true); $option->Value = ''; $this->assertEquals('', $option->Value); } 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'); $field = $radio->getFormField(); $this->assertThat($field, $this->isInstanceOf('OptionsetField')); $values = $field->getSource(); $this->assertEquals(array('Option 5' => 'Option 5', 'Option 6' => 'Option 6'), $values); } 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); } } public function testFileField() { $fileField = $this->objFromFixture('EditableFileField', 'file-field'); $formField = $fileField->getFormField(); $this->assertContains('jpg', $formField->getValidator()->getAllowedExtensions()); $this->assertNotContains('notallowedextension', $formField->getValidator()->getAllowedExtensions()); } 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()); } /** * Verify that unique names are automatically generated for each formfield */ public function testUniqueName() { $textfield1 = new EditableTextField(); $this->assertEmpty($textfield1->Name); // Write values $textfield1->write(); $textfield2 = new EditableTextField(); $textfield2->write(); $checkboxField = new EditableCheckbox(); $checkboxField->write(); // Test values are in the expected format $this->assertRegExp('/^EditableTextField_.+/', $textfield1->Name); $this->assertRegExp('/^EditableTextField_.+/', $textfield2->Name); $this->assertRegExp('/^EditableCheckbox_.+/', $checkboxField->Name); $this->assertNotEquals($textfield1->Name, $textfield2->Name); } }