2008-04-06 05:52:14 +02:00
|
|
|
<?php
|
2008-06-15 15:33:53 +02:00
|
|
|
/**
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage tests
|
|
|
|
*/
|
2008-10-06 16:58:01 +02:00
|
|
|
class FormTest extends FunctionalTest {
|
2008-04-06 05:52:14 +02:00
|
|
|
|
2008-10-07 23:19:19 +02:00
|
|
|
static $fixture_file = 'sapphire/tests/forms/FormTest.yml';
|
2008-10-07 19:23:50 +02:00
|
|
|
|
2008-04-06 05:52:14 +02:00
|
|
|
public function testLoadDataFromRequest() {
|
|
|
|
$form = new Form(
|
|
|
|
new Controller(),
|
|
|
|
'Form',
|
|
|
|
new FieldSet(
|
|
|
|
new TextField('key1'),
|
|
|
|
new TextField('namespace[key2]'),
|
|
|
|
new TextField('namespace[key3][key4]'),
|
|
|
|
new TextField('othernamespace[key5][key6][key7]')
|
|
|
|
),
|
|
|
|
new FieldSet()
|
|
|
|
);
|
|
|
|
|
|
|
|
// url would be ?key1=val1&namespace[key2]=val2&namespace[key3][key4]=val4&othernamespace[key5][key6][key7]=val7
|
|
|
|
$requestData = array(
|
|
|
|
'key1' => 'val1',
|
|
|
|
'namespace' => array(
|
|
|
|
'key2' => 'val2',
|
|
|
|
'key3' => array(
|
|
|
|
'key4' => 'val4',
|
|
|
|
)
|
|
|
|
),
|
|
|
|
'othernamespace' => array(
|
|
|
|
'key5' => array(
|
|
|
|
'key6' =>array(
|
|
|
|
'key7' => 'val7'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
|
|
|
|
|
|
|
$form->loadDataFrom($requestData);
|
|
|
|
|
|
|
|
$fields = $form->Fields();
|
|
|
|
$this->assertEquals($fields->fieldByName('key1')->Value(), 'val1');
|
|
|
|
$this->assertEquals($fields->fieldByName('namespace[key2]')->Value(), 'val2');
|
|
|
|
$this->assertEquals($fields->fieldByName('namespace[key3][key4]')->Value(), 'val4');
|
|
|
|
$this->assertEquals($fields->fieldByName('othernamespace[key5][key6][key7]')->Value(), 'val7');
|
|
|
|
}
|
|
|
|
|
2008-10-07 19:44:12 +02:00
|
|
|
public function testLoadDataFromUnchangedHandling() {
|
|
|
|
$form = new Form(
|
|
|
|
new Controller(),
|
|
|
|
'Form',
|
|
|
|
new FieldSet(
|
|
|
|
new TextField('key1'),
|
|
|
|
new TextField('key2')
|
|
|
|
),
|
|
|
|
new FieldSet()
|
|
|
|
);
|
|
|
|
$form->loadDataFrom(array(
|
|
|
|
'key1' => 'save',
|
|
|
|
'key2' => 'dontsave',
|
|
|
|
'key2_unchanged' => '1'
|
|
|
|
));
|
|
|
|
$this->assertEquals(
|
|
|
|
$form->getData(),
|
|
|
|
array(
|
|
|
|
'key1' => 'save',
|
|
|
|
'key2' => null,
|
|
|
|
),
|
|
|
|
'loadDataFrom() doesnt save a field if a matching "<fieldname>_unchanged" flag is set'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-10-07 19:23:50 +02:00
|
|
|
public function testLoadDataFromObject() {
|
|
|
|
$form = new Form(
|
|
|
|
new Controller(),
|
|
|
|
'Form',
|
|
|
|
new FieldSet(
|
2008-10-16 15:26:50 +02:00
|
|
|
new HeaderField('MyPlayerHeader','My Player'),
|
2008-10-07 19:23:50 +02:00
|
|
|
new TextField('Name'), // appears in both Player and Team
|
|
|
|
new TextareaField('Biography'),
|
|
|
|
new DateField('Birthday'),
|
|
|
|
new NumericField('BirthdayYear') // dynamic property
|
|
|
|
),
|
|
|
|
new FieldSet()
|
|
|
|
);
|
|
|
|
|
2008-10-09 16:40:13 +02:00
|
|
|
$captainWithDetails = $this->objFromFixture('FormTest_Player', 'captainWithDetails');
|
|
|
|
$form->loadDataFrom($captainWithDetails);
|
2008-10-07 19:23:50 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
$form->getData(),
|
|
|
|
array(
|
2008-10-09 16:40:13 +02:00
|
|
|
'Name' => 'Captain Details',
|
2008-10-07 19:23:50 +02:00
|
|
|
'Biography' => 'Bio 1',
|
|
|
|
'Birthday' => '1982-01-01',
|
|
|
|
'BirthdayYear' => '1982',
|
|
|
|
),
|
|
|
|
'LoadDataFrom() loads simple fields and dynamic getters'
|
|
|
|
);
|
|
|
|
|
2008-10-09 16:40:13 +02:00
|
|
|
$captainNoDetails = $this->objFromFixture('FormTest_Player', 'captainNoDetails');
|
|
|
|
$form->loadDataFrom($captainNoDetails);
|
2008-10-07 19:23:50 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
$form->getData(),
|
|
|
|
array(
|
2008-10-09 16:40:13 +02:00
|
|
|
'Name' => 'Captain No Details',
|
|
|
|
'Biography' => null,
|
|
|
|
'Birthday' => null,
|
|
|
|
'BirthdayYear' => 0,
|
|
|
|
),
|
|
|
|
'LoadNonBlankDataFrom() loads only fields with values, and doesnt overwrite existing values'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testLoadDataFromClearMissingFields() {
|
|
|
|
$form = new Form(
|
|
|
|
new Controller(),
|
|
|
|
'Form',
|
|
|
|
new FieldSet(
|
2008-10-16 15:26:50 +02:00
|
|
|
new HeaderField('MyPlayerHeader','My Player'),
|
2008-10-09 16:40:13 +02:00
|
|
|
new TextField('Name'), // appears in both Player and Team
|
|
|
|
new TextareaField('Biography'),
|
|
|
|
new DateField('Birthday'),
|
|
|
|
new NumericField('BirthdayYear'), // dynamic property
|
|
|
|
$unrelatedField = new TextField('UnrelatedFormField')
|
|
|
|
//new CheckboxSetField('Teams') // relation editing
|
|
|
|
),
|
|
|
|
new FieldSet()
|
|
|
|
);
|
|
|
|
$unrelatedField->setValue("random value");
|
|
|
|
|
|
|
|
$captainWithDetails = $this->objFromFixture('FormTest_Player', 'captainWithDetails');
|
|
|
|
$captainNoDetails = $this->objFromFixture('FormTest_Player', 'captainNoDetails');
|
|
|
|
$form->loadDataFrom($captainWithDetails);
|
|
|
|
$this->assertEquals(
|
|
|
|
$form->getData(),
|
|
|
|
array(
|
|
|
|
'Name' => 'Captain Details',
|
2008-10-07 19:23:50 +02:00
|
|
|
'Biography' => 'Bio 1',
|
|
|
|
'Birthday' => '1982-01-01',
|
2008-10-09 16:40:13 +02:00
|
|
|
'BirthdayYear' => '1982',
|
|
|
|
'UnrelatedFormField' => 'random value',
|
2008-10-07 19:23:50 +02:00
|
|
|
),
|
2008-10-09 16:40:13 +02:00
|
|
|
'LoadDataFrom() doesnt overwrite fields not found in the object'
|
2008-10-07 19:23:50 +02:00
|
|
|
);
|
|
|
|
|
2008-10-09 16:40:13 +02:00
|
|
|
$captainWithDetails = $this->objFromFixture('FormTest_Player', 'captainNoDetails');
|
|
|
|
$team2 = $this->objFromFixture('FormTest_Team', 'team2');
|
|
|
|
$form->loadDataFrom($captainWithDetails);
|
|
|
|
$form->loadDataFrom($team2, true);
|
2008-10-07 19:23:50 +02:00
|
|
|
$this->assertEquals(
|
|
|
|
$form->getData(),
|
|
|
|
array(
|
2008-10-09 16:40:13 +02:00
|
|
|
'Name' => 'Team 2',
|
2008-10-07 19:23:50 +02:00
|
|
|
'Biography' => '',
|
|
|
|
'Birthday' => '',
|
|
|
|
'BirthdayYear' => 0,
|
2008-10-09 16:40:13 +02:00
|
|
|
'UnrelatedFormField' => null,
|
2008-10-07 19:23:50 +02:00
|
|
|
),
|
2008-10-09 16:40:13 +02:00
|
|
|
'LoadDataFrom() overwrites fields not found in the object with $clearMissingFields=true'
|
2008-10-07 19:23:50 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-10-06 16:58:01 +02:00
|
|
|
public function testFormMethodOverride() {
|
|
|
|
$form = $this->getStubForm();
|
|
|
|
$form->setFormMethod('GET');
|
|
|
|
$this->assertNull($form->dataFieldByName('_method'));
|
|
|
|
|
|
|
|
$form = $this->getStubForm();
|
|
|
|
$form->setFormMethod('PUT');
|
|
|
|
$this->assertEquals($form->dataFieldByName('_method')->Value(), 'put',
|
|
|
|
'PUT override in forms has PUT in hiddenfield'
|
|
|
|
);
|
|
|
|
$this->assertEquals($form->FormMethod(), 'post',
|
|
|
|
'PUT override in forms has POST in <form> tag'
|
|
|
|
);
|
|
|
|
|
|
|
|
$form = $this->getStubForm();
|
|
|
|
$form->setFormMethod('DELETE');
|
|
|
|
$this->assertEquals($form->dataFieldByName('_method')->Value(), 'delete',
|
|
|
|
'PUT override in forms has PUT in hiddenfield'
|
|
|
|
);
|
|
|
|
$this->assertEquals($form->FormMethod(), 'post',
|
|
|
|
'PUT override in forms has POST in <form> tag'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-10-14 23:37:51 +02:00
|
|
|
function testSessionValidationMessage() {
|
|
|
|
$this->get('FormTest_Controller');
|
|
|
|
|
|
|
|
$response = $this->submitForm(
|
|
|
|
'Form_Form',
|
|
|
|
null,
|
|
|
|
array(
|
|
|
|
'Email' => 'invalid',
|
|
|
|
// leaving out "Required" field
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$this->assertPartialMatchBySelector(
|
|
|
|
'#Email span.message',
|
|
|
|
array(
|
|
|
|
_t('EmailField.VALIDATION', "Please enter an email address.")
|
|
|
|
),
|
|
|
|
'Formfield validation shows note on field if invalid'
|
|
|
|
);
|
|
|
|
$this->assertPartialMatchBySelector(
|
|
|
|
'#SomeRequiredField span.required',
|
|
|
|
array(
|
2009-04-29 01:52:15 +02:00
|
|
|
sprintf(_t('Form.FIELDISREQUIRED').'.','"SomeRequiredField"')
|
2008-10-14 23:37:51 +02:00
|
|
|
),
|
|
|
|
'Required fields show a notification on field when left blank'
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function testSessionSuccessMessage() {
|
|
|
|
$this->get('FormTest_Controller');
|
|
|
|
|
|
|
|
$response = $this->submitForm(
|
|
|
|
'Form_Form',
|
|
|
|
null,
|
|
|
|
array(
|
|
|
|
'Email' => 'test@test.com',
|
|
|
|
'SomeRequiredField' => 'test',
|
|
|
|
)
|
|
|
|
);
|
|
|
|
$this->assertPartialMatchBySelector(
|
|
|
|
'#Form_Form_error',
|
|
|
|
array(
|
|
|
|
'Test save was successful'
|
|
|
|
),
|
|
|
|
'Form->sessionMessage() shows up after reloading the form'
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-10-06 16:58:01 +02:00
|
|
|
protected function getStubForm() {
|
|
|
|
return new Form(
|
|
|
|
new Controller(),
|
|
|
|
'Form',
|
|
|
|
new FieldSet(new TextField('key1')),
|
|
|
|
new FieldSet()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2008-04-06 05:52:14 +02:00
|
|
|
}
|
2008-10-07 19:23:50 +02:00
|
|
|
|
|
|
|
class FormTest_Player extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
|
|
'Name' => 'Varchar',
|
|
|
|
'Biography' => 'Text',
|
|
|
|
'Birthday' => 'Date'
|
|
|
|
);
|
|
|
|
|
|
|
|
static $belongs_many_many = array(
|
|
|
|
'Teams' => 'FormTest_Team'
|
|
|
|
);
|
|
|
|
|
|
|
|
static $has_one = array(
|
|
|
|
'FavouriteTeam' => 'FormTest_Team',
|
|
|
|
);
|
|
|
|
|
|
|
|
public function getBirthdayYear() {
|
|
|
|
return ($this->Birthday) ? date('Y', strtotime($this->Birthday)) : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
class FormTest_Team extends DataObject implements TestOnly {
|
|
|
|
static $db = array(
|
|
|
|
'Name' => 'Varchar',
|
|
|
|
'Region' => 'Varchar',
|
|
|
|
);
|
|
|
|
|
|
|
|
static $many_many = array(
|
|
|
|
'Players' => 'FormTest_Player'
|
|
|
|
);
|
|
|
|
}
|
2008-10-14 23:37:51 +02:00
|
|
|
|
|
|
|
class FormTest_Controller extends Controller {
|
|
|
|
static $url_handlers = array(
|
|
|
|
'$Action//$ID/$OtherID' => "handleAction",
|
|
|
|
);
|
|
|
|
|
|
|
|
protected $template = 'BlankPage';
|
|
|
|
|
|
|
|
function Link() {
|
|
|
|
return Controller::join_links('FormTest_Controller', $this->request->latestParam('Action'), $this->request->latestParam('ID'));
|
|
|
|
}
|
|
|
|
|
|
|
|
function Form() {
|
|
|
|
$form = new Form(
|
|
|
|
$this,
|
|
|
|
'Form',
|
|
|
|
new FieldSet(
|
|
|
|
new EmailField('Email'),
|
|
|
|
new TextField('SomeRequiredField'),
|
|
|
|
new CheckboxSetField('Boxes', null, array('1'=>'one','2'=>'two'))
|
|
|
|
),
|
|
|
|
new FieldSet(
|
|
|
|
new FormAction('doSubmit')
|
|
|
|
),
|
|
|
|
new RequiredFields(
|
|
|
|
'Email',
|
|
|
|
'SomeRequiredField'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
return $form;
|
|
|
|
}
|
|
|
|
|
|
|
|
function doSubmit($data, $form, $request) {
|
|
|
|
$form->sessionMessage('Test save was successful', 'good');
|
|
|
|
return $this->redirectBack();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Director::addRules(50, array(
|
|
|
|
'FormTest_Controller' => "FormTest_Controller",
|
|
|
|
));
|
2008-04-06 05:52:14 +02:00
|
|
|
?>
|