Skip to content

Commit

Permalink
ChoiceFormField of type "select" could be "disabled"
Browse files Browse the repository at this point in the history
  • Loading branch information
bouland authored and fabpot committed Feb 26, 2016
1 parent be30748 commit 576c4b9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/Symfony/Component/DomCrawler/Field/ChoiceFormField.php
Expand Up @@ -55,6 +55,10 @@ public function hasValue()
*/
public function isDisabled()
{
if (parent::isDisabled() && 'select' === $this->type) {
return true;
}

foreach ($this->options as $option) {
if ($option['value'] == $this->value && $option['disabled']) {
return true;
Expand Down
Expand Up @@ -120,6 +120,14 @@ public function testSelectWithEmptyBooleanAttribute()
$this->assertEquals('bar', $field->getValue());
}

public function testSelectIsDisabled()
{
$node = $this->createSelectNode(array('foo' => false, 'bar' => true), array('disabled' => 'disabled'));
$field = new ChoiceFormField($node);

$this->assertTrue($field->isDisabled(), '->isDisabled() returns true for selects with a disabled attribute');
}

public function testMultipleSelects()
{
$node = $this->createSelectNode(array('foo' => false, 'bar' => false), array('multiple' => 'multiple'));
Expand Down

0 comments on commit 576c4b9

Please sign in to comment.