Mercurial > hg > isophonics-drupal-site
view core/modules/options/tests/src/Functional/OptionsSelectDynamicValuesTest.php @ 18:af1871eacc83
Update to Drupal core 8.7.1
author | Chris Cannam |
---|---|
date | Thu, 09 May 2019 15:33:08 +0100 |
parents | 129ea1e6d783 |
children |
line wrap: on
line source
<?php namespace Drupal\Tests\options\Functional; /** * Tests an options select with a dynamic allowed values function. * * @group options */ class OptionsSelectDynamicValuesTest extends OptionsDynamicValuesTestBase { /** * Tests the 'options_select' widget (single select). */ public function testSelectListDynamic() { // Create an entity. $this->entity->save(); // Create a web user. $web_user = $this->drupalCreateUser(['view test entity', 'administer entity_test content']); $this->drupalLogin($web_user); // Display form. $this->drupalGet('entity_test_rev/manage/' . $this->entity->id() . '/edit'); $options = $this->xpath('//select[@id="edit-test-options"]/option'); $this->assertEqual(count($options), count($this->test) + 1); foreach ($options as $option) { $value = $option->getValue(); if ($value != '_none') { $this->assertTrue(array_search($value, $this->test)); } } } }