Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,9 @@ public function preBind(FormEvent $event)
if (!isset($data[$this->fieldName]) || !$this->csrfProvider->isCsrfTokenValid($this->intention, $data[$this->fieldName])) {
$form->addError(new FormError('The CSRF token is invalid. Please try to resubmit the form.'));
}

unset($data[$this->fieldName]);
if (is_array($data)) {
unset($data[$this->fieldName]);
}
}

$event->setData($data);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,26 @@ public function testFailIfRootAndCompoundAndTokenMissing()
$this->assertFalse($form->isValid());
}

public function testFailIfRootAndCompoundAndBoundDataIsString()
{
$form = $this->factory
->createBuilder('form', null, array(
'csrf_field_name' => 'csrf',
'csrf_provider' => $this->csrfProvider,
'intention' => '%INTENTION%',
'compound' => true,
))
->add('child', 'text')
->getForm();

$form->bind('malformed request');

$this->assertSame(array('child' => null), $form->getData());

// Validate accordingly
$this->assertFalse($form->isValid());
}

public function testDontValidateTokenIfCompoundButNoRoot()
{
$this->csrfProvider->expects($this->never())
Expand Down