View source  
  <?php
namespace Drupal\Tests\ds\Functional;
class LayoutClassesTest extends TestBase {
  
  protected function setup() {
    parent::setup();
    
    \Drupal::configFactory()
      ->getEditable('ds_extras.settings')
      ->set('fields_extra', TRUE)
      ->set('fields_extra_list', [
      'node|article|ds_extras_extra_test_field',
      'node|article|ds_extras_second_field',
    ])
      ->save();
    \Drupal::service('entity_field.manager')
      ->clearCachedFieldDefinitions();
  }
  
  public function testDsTestLayouts() {
    
    $this
      ->drupalGet('admin/structure/types/manage/article/display');
    $this
      ->assertSession()
      ->responseNotContains('ds_3col_stacked_equal_width');
    
    $this
      ->dsCreateTokenField();
    $this
      ->dsCreateBlockField();
    $layout = [
      'ds_layout' => 'ds_2col_stacked',
    ];
    $assert = [
      'regions' => [
        'header' => '<td colspan="8">' . t('Header') . '</td>',
        'left' => '<td colspan="8">' . t('Left') . '</td>',
        'right' => '<td colspan="8">' . t('Right') . '</td>',
        'footer' => '<td colspan="8">' . t('Footer') . '</td>',
      ],
    ];
    $fields = [
      'fields[node_post_date][region]' => 'header',
      'fields[node_author][region]' => 'left',
      'fields[node_links][region]' => 'left',
      'fields[body][region]' => 'right',
      'fields[dynamic_token_field:node-test_field][region]' => 'left',
      'fields[dynamic_block_field:node-test_block_field][region]' => 'left',
      'fields[node_submitted_by][region]' => 'left',
      'fields[ds_extras_extra_test_field][region]' => 'header',
    ];
    
    $this
      ->dsSelectLayout($layout, $assert);
    $this
      ->dsConfigureClasses();
    $this
      ->dsSelectClasses();
    $this
      ->dsConfigureUi($fields);
    
    $this
      ->drupalGet('admin/structure/types/manage/article/display');
    $this
      ->assertSession()
      ->responseContains('ds_extras_extra_test_field');
    $this
      ->assertSession()
      ->responseContains('ds_extras_second_field');
    
    $entity_manager = \Drupal::entityTypeManager();
    
    $entity_display = $entity_manager
      ->getStorage('entity_view_display')
      ->load('node.article.default');
    $data = $entity_display
      ->getThirdPartySettings('ds');
    $this
      ->assertNotEmpty($data, t('Configuration found for layout settings for node article'));
    $this
      ->assertNotEmpty(in_array('ds_extras_extra_test_field', $data['regions']['header']), t('Extra field is in header'));
    $this
      ->assertNotEmpty(in_array('node_post_date', $data['regions']['header']), t('Post date is in header'));
    $this
      ->assertNotEmpty(in_array('dynamic_token_field:node-test_field', $data['regions']['left']), t('Test field is in left'));
    $this
      ->assertNotEmpty(in_array('node_author', $data['regions']['left']), t('Author is in left'));
    $this
      ->assertNotEmpty(in_array('node_links', $data['regions']['left']), t('Links is in left'));
    $this
      ->assertNotEmpty(in_array('dynamic_block_field:node-test_block_field', $data['regions']['left']), t('Test block field is in left'));
    $this
      ->assertNotEmpty(in_array('body', $data['regions']['right']), t('Body is in right'));
    $this
      ->assertNotEmpty(in_array('class_name_1', $data['layout']['settings']['classes']['header']), t('Class name 1 is in header'));
    $this
      ->assertEmpty($data['layout']['settings']['classes']['left'], t('Left has no classes'));
    $this
      ->assertEmpty($data['layout']['settings']['classes']['right'], t('Right has classes'));
    $this
      ->assertNotEmpty(in_array('class_name_2', $data['layout']['settings']['classes']['footer']), t('Class name 2 is in header'));
    
    $settings = [
      'type' => 'article',
    ];
    $node = $this
      ->drupalCreateNode($settings);
    $this
      ->drupalGet('node/' . $node
      ->id());
    
    $this
      ->assertSession()
      ->responseContains('node node--type-article node--view-mode-full');
    
    $this
      ->assertSession()
      ->responseContains('group-header');
    $this
      ->assertSession()
      ->responseContains('class_name_1 group-header');
    $this
      ->assertSession()
      ->responseContains('group-left');
    $this
      ->assertSession()
      ->responseContains('group-right');
    $this
      ->assertSession()
      ->responseContains('group-footer');
    $this
      ->assertSession()
      ->responseContains('class_name_2 group-footer');
    
    $this
      ->assertSession()
      ->responseContains('field--name-dynamic-token-fieldnode-test-field');
    $this
      ->assertSession()
      ->responseContains('field--name-dynamic-block-fieldnode-test-block-field');
    $this
      ->assertSession()
      ->responseContains('Submitted by');
    $this
      ->assertSession()
      ->pageTextContains('This is an extra field made available through "Extra fields" functionality.');
    
    $this
      ->assertSession()
      ->responseNotContains('<header class="class_name_1 group-header');
    $this
      ->assertSession()
      ->responseNotContains('<footer class="group-right');
    $this
      ->assertSession()
      ->responseNotContains('<article');
    $wrappers = [
      'layout_configuration[region_wrapper][header]' => 'header',
      'layout_configuration[region_wrapper][right]' => 'footer',
      'layout_configuration[region_wrapper][outer_wrapper]' => 'article',
      'layout_configuration[region_wrapper][attributes]' => 'class|test-class,role|testing-role',
    ];
    $this
      ->dsConfigureUi($wrappers);
    $this
      ->drupalGet('node/' . $node
      ->id());
    $this
      ->assertSession()
      ->responseContains('<header class="class_name_1 group-header');
    $this
      ->assertSession()
      ->responseContains('<footer class="group-right');
    $this
      ->assertSession()
      ->responseContains('<article');
    $this
      ->assertSession()
      ->responseContains('test-class');
    $this
      ->assertSession()
      ->responseContains('testing-role');
    
    $edit = [
      'entity_classes' => 'no_classes',
    ];
    $this
      ->drupalGet('admin/structure/types/manage/article/display');
    $this
      ->submitForm($edit, 'Save');
    $this
      ->drupalGet('node/' . $node
      ->id());
    
    $this
      ->assertSession()
      ->responseNotContains('node node--type-article node--view-mode-full');
    
    $edit = [
      'entity_classes' => 'old_view_mode',
    ];
    $this
      ->drupalGet('admin/structure/types/manage/article/display');
    $this
      ->submitForm($edit, 'Save');
    $this
      ->drupalGet('node/' . $node
      ->id());
    
    $this
      ->assertSession()
      ->responseContains('view-mode-full');
    
    $edit = [
      'ds_layout' => '_none',
      'display_modes_custom[full]' => FALSE,
    ];
    $this
      ->drupalGet('admin/structure/types/manage/article/display');
    $this
      ->submitForm($edit, 'Save');
    $elements = $this
      ->xpath('//*[@id="edit-fields-body-region"]');
    $this
      ->assertNotEmpty($elements[0]
      ->find('xpath', '//option[@value = "content" and @selected = "selected"]'));
    $this
      ->drupalGet('node/' . $node
      ->id());
    $this
      ->assertSession()
      ->pageTextNotContains('Test code field on node 1');
  }
}