Skip to content
Snippets Groups Projects
Commit 0db61d15 authored by Gábor Hojtsy's avatar Gábor Hojtsy
Browse files

Issue #3022137 by quietone, heddn: Update migrate fixtures for remaining active issues

parent fdce8067
No related branches found
No related tags found
No related merge requests found
......@@ -29,7 +29,7 @@ public function testLanguageTypes() {
$config = $this->config('language.types');
$this->assertSame(['language_content', 'language_url', 'language_interface'], $config->get('all'));
$this->assertSame(['language_interface'], $config->get('configurable'));
$this->assertSame(['language_content', 'language_interface'], $config->get('configurable'));
$this->assertSame(['enabled' => ['language-interface' => 0]], $config->get('negotiation.language_content'));
$this->assertSame(['enabled' => ['language-url' => 0, 'language-url-fallback' => 1]], $config->get('negotiation.language_url'));
$expected_language_interface = [
......
This diff is collapsed.
......@@ -195,6 +195,7 @@ public function addAllFieldProcessesAltersData() {
'map' => [
'taxonomy_term_reference' => [
'taxonomy_term_reference_link' => 'entity_reference_label',
'i18n_taxonomy_term_reference_link' => 'entity_reference_label',
],
'link_field' => [
'link_default' => 'link',
......
......@@ -140,8 +140,12 @@ protected function getAvailablePaths() {
*/
protected function getMissingPaths() {
return [
'breakpoints',
'entity_translation_i18n_menu',
'entity_translation_upgrade',
// Flexslider_picture is a sub module of Picture module. Only the
// styles from picture are migrated.
'flexslider_picture',
'i18n',
'i18n_contact',
'i18n_field',
......@@ -157,6 +161,7 @@ protected function getMissingPaths() {
'i18n_translation',
'i18n_user',
'i18n_variable',
'picture',
'profile',
'variable',
'variable_admin',
......
......@@ -72,13 +72,13 @@ protected function getEntityCounts() {
'contact_form' => 3,
'contact_message' => 0,
'editor' => 2,
'field_config' => 67,
'field_storage_config' => 50,
'field_config' => 72,
'field_storage_config' => 55,
'file' => 3,
'filter_format' => 7,
'image_style' => 6,
'language_content_settings' => 6,
'node' => 5,
'node' => 6,
'node_type' => 6,
'rdf_mapping' => 8,
'search_page' => 2,
......@@ -86,8 +86,8 @@ protected function getEntityCounts() {
'shortcut_set' => 2,
'action' => 17,
'menu' => 6,
'taxonomy_term' => 18,
'taxonomy_vocabulary' => 4,
'taxonomy_term' => 24,
'taxonomy_vocabulary' => 7,
'tour' => 5,
'user' => 4,
'user_role' => 3,
......@@ -111,8 +111,8 @@ protected function getEntityCountsIncremental() {
$counts['comment'] = 4;
$counts['file'] = 4;
$counts['menu_link_content'] = 13;
$counts['node'] = 6;
$counts['taxonomy_term'] = 19;
$counts['node'] = 7;
$counts['taxonomy_term'] = 25;
$counts['user'] = 5;
return $counts;
}
......
......@@ -24,6 +24,7 @@ class TaxonomyTermReference extends FieldPluginBase {
public function getFieldFormatterMap() {
return [
'taxonomy_term_reference_link' => 'entity_reference_label',
'i18n_taxonomy_term_reference_link' => 'entity_reference_label',
];
}
......
......@@ -125,7 +125,7 @@ public function testTaxonomyTerms() {
// Reset the forums tree data so this new term is included in the tree.
unset($this->treeData['forums']);
$this->assertEntity(19, 'Forum Container', 'forums', '', NULL, 0, [], NULL, NULL, 1);
$this->assertEntity(25, 'Forum Container', 'forums', '', NULL, 0, [], NULL, NULL, 1);
}
/**
......
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