Kernel Test: Programmatically create a vocabulary and add a field to it

I want to add a taxonomy term and add field to it. My current code looks this way:

<?php  namespace DrupalTestspermissions_by_termKernel;  use DrupalKernelTestsKernelTestBase; use DrupalfieldEntityFieldStorageConfig; use DrupaltaxonomyEntityVocabulary;  /**  * Tests the ERR composite relationship upgrade path.  *  * @group permissions_by_term  */ class SelectTermTest extends KernelTestBase {    /**    * {@inheritdoc}    */   public static $modules = array('taxonomy', 'text');    /**    * List of taxonomy term names by language.    *    * @var array    */   public $termNames = [];    /**    * The vocabulary used for creating terms.    *    * @var DrupaltaxonomyVocabularyInterface    */   protected $vocabulary;    function setUp() {     parent::setUp();      $this->installEntitySchema('taxonomy_term');      // Create a vocabulary.     $this->vocabulary = Vocabulary::create([       'name' => 'Views testing tags',       'vid' => 'views_testing_tags',     ]);     $this->vocabulary->save();      // Add a translatable field to the vocabulary.     $field = FieldStorageConfig::create(array(       'field_name' => 'field_foo',       'entity_type' => 'taxonomy_term',       'type' => 'text',     ));     $field->save();     FieldConfig::create([       'field_name' => 'field_foo',       'entity_type' => 'taxonomy_term',       'label' => 'Foo',       'bundle' => 'views_testing_tags',     ])->save();   }    public function testSomething() {   }  } 

If I run the test by the following command:

vendor/bin/phpunit -c modules/permissions_by_term modules/permissions_by_term/tests/src/Kernel/SelectTermTest.php

I’m getting the following output:

PHPUnit 4.8.11 by Sebastian Bergmann and contributors.

E

Time: 882 ms, Memory: 6.00Mb

There was 1 error:

1) DrupalTestspermissions_by_termKernelSelectTermTest::testSomething DrupalCoreEntityExceptionNoCorrespondingEntityClassException: The DrupalfieldEntityFieldStorageConfig class does not correspond to an entity type.

/home/peter/Websites/pbt-d8/core/lib/Drupal/Core/Entity/EntityTypeRepository.php:98 /home/peter/Websites/pbt-d8/core/lib/Drupal/Core/Entity/EntityManager.php:375 /home/peter/Websites/pbt-d8/core/lib/Drupal/Core/Entity/Entity.php:509 /home/peter/Websites/pbt-d8/modules/permissions_by_term/tests/src/Kernel/SelectTermTest.php:49

FAILURES! Tests: 1, Assertions: 1, Errors: 1.

I do not understand this part:

DrupalCoreEntityExceptionNoCorrespondingEntityClassException: The DrupalfieldEntityFieldStorageConfig class does not correspond to an entity type.

As an example I have used the Drupal core taxonomy test from

core/modules/taxonomy/src/Tests/Views/TaxonomyFieldFilterTest.php

This test does what I want to do, but is not a Kernel test. It is a Simpletest, since it inherits from WebTestBase. If I use WebTestBase, it works. But the test is much slower then. Do you know what’s missing in my code for running it as a Kernel Test?

Sponsored by SupremePR
This article was republished from its original source.
Call Us: 1(800)730-2416

Pixeldust is a 20-year-old web development agency specializing in Drupal and WordPress and working with clients all over the country. With our best in class capabilities, we work with small businesses and fortune 500 companies alike. Give us a call at 1(800)730-2416 and let’s talk about your project.

FREE Drupal SEO Audit

Test your site below to see which issues need to be fixed. We will fix them and optimize your Drupal site 100% for Google and Bing. (Allow 30-60 seconds to gather data.)

Powered by

Kernel Test: Programmatically create a vocabulary and add a field to it

On-Site Drupal SEO Master Setup

We make sure your site is 100% optimized (and stays that way) for the best SEO results.

With Pixeldust On-site (or On-page) SEO we make changes to your site’s structure and performance to make it easier for search engines to see and understand your site’s content. Search engines use algorithms to rank sites by degrees of relevance. Our on-site optimization ensures your site is configured to provide information in a way that meets Google and Bing standards for optimal indexing.

This service includes:

  • Pathauto install and configuration for SEO-friendly URLs.
  • Meta Tags install and configuration with dynamic tokens for meta titles and descriptions for all content types.
  • Install and fix all issues on the SEO checklist module.
  • Install and configure XML sitemap module and submit sitemaps.
  • Install and configure Google Analytics Module.
  • Install and configure Yoast.
  • Install and configure the Advanced Aggregation module to improve performance by minifying and merging CSS and JS.
  • Install and configure Schema.org Metatag.
  • Configure robots.txt.
  • Google Search Console setup snd configuration.
  • Find & Fix H1 tags.
  • Find and fix duplicate/missing meta descriptions.
  • Find and fix duplicate title tags.
  • Improve title, meta tags, and site descriptions.
  • Optimize images for better search engine optimization. Automate where possible.
  • Find and fix the missing alt and title tag for all images. Automate where possible.
  • The project takes 1 week to complete.