<?php
namespace Drupal\entity_reference\Tests;
use Drupal\simpletest\WebTestBase;
class EntityReferenceAdminTest extends WebTestBase {
public static function getInfo() {
return array(
'name' => 'Entity Reference UI',
'description' => 'Tests for the administrative UI.',
'group' => 'Entity Reference',
);
}
public static $modules = array(
'field_ui',
'entity_reference',
);
public function setUp() {
parent::setUp();
$this->admin_user = $this
->drupalCreateUser(array(
'access content',
'administer node fields',
));
$this
->drupalLogin($this->admin_user);
$type_name = strtolower($this
->randomName(8)) . '_test';
$type = $this
->drupalCreateContentType(array(
'name' => $type_name,
'type' => $type_name,
));
$this->type = $type->type;
}
protected function assertFieldSelectOptions($name, $expected_options) {
$xpath = $this
->buildXPathQuery('//select[@name=:name]', array(
':name' => $name,
));
$fields = $this
->xpath($xpath);
if ($fields) {
$field = $fields[0];
$options = $this
->getAllOptionsList($field);
return $this
->assertIdentical($options, $expected_options);
}
else {
return $this
->fail(t('Unable to find field @name', array(
'@name' => $name,
)));
}
}
protected function getAllOptionsList($element) {
$options = array();
foreach ($element->option as $option) {
$options[] = (string) $option['value'];
}
return $options;
}
public function testFieldAdminHandler() {
$bundle_path = 'admin/structure/types/manage/' . $this->type;
$this
->drupalPost($bundle_path . '/fields', array(
'fields[_add_new_field][label]' => 'Test label',
'fields[_add_new_field][field_name]' => 'test',
'fields[_add_new_field][type]' => 'entity_reference',
'fields[_add_new_field][widget_type]' => 'entity_reference_autocomplete',
), t('Save'));
$this
->assertFieldByName('field[settings][target_type]', 'node');
$this
->drupalPost(NULL, array(), t('Save field settings'));
$this
->assertFieldByName('instance[settings][handler]', 'default');
$entity_type = 'node';
$bundles = entity_get_bundles($entity_type);
foreach ($bundles as $bundle_name => $bundle_info) {
$this
->assertFieldByName('instance[settings][handler_settings][target_bundles][' . $bundle_name . ']');
}
$this
->assertFieldByName('instance[settings][handler_settings][sort][field]', '_none');
$this
->assertNoFieldByName('instance[settings][handler_settings][sort][direction]');
$this
->drupalPostAJAX(NULL, array(
'instance[settings][handler_settings][sort][field]' => 'nid',
), 'instance[settings][handler_settings][sort][field]');
$this
->assertFieldByName('instance[settings][handler_settings][sort][direction]', 'ASC');
$this
->drupalPostAJAX(NULL, array(
'instance[settings][handler_settings][sort][field]' => '_none',
), 'instance[settings][handler_settings][sort][field]');
$this
->drupalPost(NULL, array(
'instance[settings][handler_settings][target_bundles][' . key($bundles) . ']' => key($bundles),
), t('Save settings'));
$this
->assertFieldByXPath('//table[@id="field-overview"]//td[1]', 'Test label', t('Field was created and appears in the overview page.'));
}
}