You are here

protected function EntityFieldQueryViewsTermTest::setUp in EntityFieldQuery Views Backend 8

Sets up a Drupal site for running functional and integration tests.

Installs Drupal with the installation profile specified in \Drupal\simpletest\WebTestBase::$profile into the prefixed database.

Afterwards, installs any additional modules specified in the static \Drupal\simpletest\WebTestBase::$modules property of each class in the class hierarchy.

After installation all caches are flushed and several configuration values are reset to the values of the parent site executing the test, since the default values may be incompatible with the environment in which tests are being executed.

Overrides EntityFieldQueryViewsTestBase::setUp

File

src/Tests/EntityFieldQueryViewsTermTest.php, line 110
Tests for EntityFieldQuery Views query features.

Class

EntityFieldQueryViewsTermTest
Class EntityFieldQueryViewsTermTest

Namespace

Drupal\efq_views\Tests

Code

protected function setUp() {
  $this->postponeFields = TRUE;
  parent::setUp();
  $vocabulary = (object) array(
    'name' => 'Test vocabulary',
    'machine_name' => 'test_vocab',
  );
  taxonomy_vocabulary_save($vocabulary);
  for ($i = 0; $i < 2; $i++) {
    $term = (object) array(
      'name' => $this
        ->randomName(),
      'vid' => $vocabulary->vid,
    );
    taxonomy_term_save($term);
    $this->terms[] = $term;
  }
  foreach ($this->entities_array as $key => &$entity_array) {
    $delta = 0;
    foreach ($this->map[$key] as $term_key) {
      $entity_array['field_term'][LANGUAGE_NONE][$delta++]['tid'] = $this->terms[$term_key]->tid;
    }
  }
  $this
    ->saveFieldsEntities();
}