Skip to content
Snippets Groups Projects
Commit ec3acb2a authored by Tim Plunkett's avatar Tim Plunkett
Browse files

The standard profile cannot be used by a module that provides a bundle.

parent 547fada2
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -14,8 +14,6 @@ ...@@ -14,8 +14,6 @@
*/ */
class RelationshipNodeTermDataTest extends ViewTestBase { class RelationshipNodeTermDataTest extends ViewTestBase {
protected $profile = 'standard';
/** /**
* Modules to enable. * Modules to enable.
* *
...@@ -23,6 +21,13 @@ class RelationshipNodeTermDataTest extends ViewTestBase { ...@@ -23,6 +21,13 @@ class RelationshipNodeTermDataTest extends ViewTestBase {
*/ */
public static $modules = array('taxonomy'); public static $modules = array('taxonomy');
/**
* The vocabulary for the test.
*
* @var Drupal\taxonomy\Vocabulary
*/
protected $vocabulary;
public static function getInfo() { public static function getInfo() {
return array( return array(
'name' => 'Taxonomy: Node term data Relationship', 'name' => 'Taxonomy: Node term data Relationship',
...@@ -34,13 +39,13 @@ public static function getInfo() { ...@@ -34,13 +39,13 @@ public static function getInfo() {
/** /**
* Returns a new term with random properties in vocabulary $vid. * Returns a new term with random properties in vocabulary $vid.
*/ */
function createTerm($vocabulary) { function createTerm() {
$term = entity_create('taxonomy_term', array( $term = entity_create('taxonomy_term', array(
'name' => $this->randomName(), 'name' => $this->randomName(),
'description' => $this->randomName(), 'description' => $this->randomName(),
// Use the first available text format. // Use the first available text format.
'format' => db_query_range('SELECT format FROM {filter_format}', 0, 1)->fetchField(), 'format' => db_query_range('SELECT format FROM {filter_format}', 0, 1)->fetchField(),
'vid' => $vocabulary->vid, 'vid' => $this->vocabulary->vid,
'langcode' => LANGUAGE_NOT_SPECIFIED, 'langcode' => LANGUAGE_NOT_SPECIFIED,
)); ));
taxonomy_term_save($term); taxonomy_term_save($term);
...@@ -49,18 +54,76 @@ function createTerm($vocabulary) { ...@@ -49,18 +54,76 @@ function createTerm($vocabulary) {
function setUp() { function setUp() {
parent::setUp(); parent::setUp();
$this->mockStandardInstall();
$vocabulary = taxonomy_vocabulary_machine_name_load('tags'); $this->term_1 = $this->createTerm();
$this->term_1 = $this->createTerm($vocabulary); $this->term_2 = $this->createTerm();
$this->term_2 = $this->createTerm($vocabulary);
$node = array(); $node = array();
$node['type'] = 'article'; $node['type'] = 'article';
$node['field_tags'][LANGUAGE_NOT_SPECIFIED][]['tid'] = $this->term_1->tid; $node['field_views_testing_tags'][LANGUAGE_NOT_SPECIFIED][]['tid'] = $this->term_1->tid;
$node['field_tags'][LANGUAGE_NOT_SPECIFIED][]['tid'] = $this->term_2->tid; $node['field_views_testing_tags'][LANGUAGE_NOT_SPECIFIED][]['tid'] = $this->term_2->tid;
$this->node = $this->drupalCreateNode($node); $this->node = $this->drupalCreateNode($node);
} }
/**
* Provides a workaround for the inability to use the standard profile.
*
* @see http://drupal.org/node/1708692
*/
protected function mockStandardInstall() {
$type = array(
'type' => 'article',
);
$type = node_type_set_defaults($type);
node_type_save($type);
node_add_body_field($type);
// Create the vocabulary for the tag field.
$this->vocabulary = entity_create('taxonomy_vocabulary', array(
'name' => 'Views testing tags',
'machine_name' => 'views_testing_tags',
));
$this->vocabulary->save();
$field = array(
'field_name' => 'field_' . $this->vocabulary->machine_name,
'type' => 'taxonomy_term_reference',
// Set cardinality to unlimited for tagging.
'cardinality' => FIELD_CARDINALITY_UNLIMITED,
'settings' => array(
'allowed_values' => array(
array(
'vocabulary' => $this->vocabulary->machine_name,
'parent' => 0,
),
),
),
);
field_create_field($field);
$instance = array(
'field_name' => 'field_' . $this->vocabulary->machine_name,
'entity_type' => 'node',
'label' => 'Tags',
'bundle' => 'article',
'widget' => array(
'type' => 'taxonomy_autocomplete',
'weight' => -4,
),
'display' => array(
'default' => array(
'type' => 'taxonomy_term_reference_link',
'weight' => 10,
),
'teaser' => array(
'type' => 'taxonomy_term_reference_link',
'weight' => 10,
),
),
);
field_create_instance($instance);
}
function testViewsHandlerRelationshipNodeTermData() { function testViewsHandlerRelationshipNodeTermData() {
$this->executeView($this->view, array($this->term_1->tid, $this->term_2->tid)); $this->executeView($this->view, array($this->term_1->tid, $this->term_2->tid));
$resultset = array( $resultset = array(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment