You are here

ds.entities.test in Display Suite 7

Same filename and directory in other branches
  1. 7.2 tests/ds.entities.test

Entities tests

File

tests/ds.entities.test
View source
<?php

/**
 * @file
 * Entities tests
 */
class dsNodeTests extends dsBaseTest {

  /**
   * Implements getInfo().
   */
  public static function getInfo() {
    return array(
      'name' => t('Node display'),
      'description' => t('Tests for display of nodes and fields.'),
      'group' => t('Display suite'),
    );
  }

  /**
   * Utility function to setup for all kinds of tests.
   *
   * @param $label
   *   How the body label must be set.
   */
  function entitiesTestSetup($label = 'above') {

    // Create a node.
    $settings = array(
      'type' => 'article',
      'promote' => 1,
    );
    $node = $this
      ->drupalCreateNode($settings);

    // Create field styles.
    $edit = array(
      'ds_styles_fields' => "test_field_class\ntest_field_class_2|Field class 2",
    );
    $this
      ->drupalPost('admin/structure/ds/styles', $edit, t('Save configuration'));

    // Create a token and php field.
    $token_field = array(
      'name' => 'Token field',
      'field' => 'token_field',
      'entities[node]' => '1',
      'code[value]' => '<div class="token-class">[node:title]</span>',
      'use_token' => '1',
    );
    $php_field = array(
      'name' => 'PHP field',
      'field' => 'php_field',
      'entities[node]' => '1',
      'code[value]' => "<?php echo 'I am a PHP field'; ?>",
      'use_token' => '0',
    );
    $this
      ->dsCreateCodeField($token_field);
    $this
      ->dsCreateCodeField($php_field);

    // Select layout.
    $this
      ->dsSelectLayout();

    // Configure fields.
    $fields = array(
      'fields[token_field][region]' => 'header',
      'fields[php_field][region]' => 'left',
      'fields[body][region]' => 'right',
      'fields[links][region]' => 'footer',
      'fields[body][label]' => $label,
    );
    $this
      ->dsConfigureUI($fields);
    return $node;
  }

  /**
   * Utility function to clear field settings.
   */
  function entitiesClearFieldSettings() {
    db_query('TRUNCATE {ds_field_settings}');
    cache_clear_all('ds_fields:', 'cache', TRUE);
    cache_clear_all('ds_field_settings', 'cache');
  }

  /**
   * Set the label.
   */
  function entitiesSetLabelClass($label, $text = '', $class = '', $hide_colon = FALSE) {
    $edit = array(
      'fields[body][label]' => $label,
    );
    if (!empty($text)) {
      $edit['fields[body][format][ft][lb]'] = $text;
    }
    if (!empty($class)) {
      $edit['fields[body][format][ft][styles][]'] = $class;
    }
    if ($hide_colon) {
      $edit['fields[body][format][ft][lb-col]'] = '1';
    }
    $this
      ->dsConfigureUI($edit);
  }

  /**
   * Test basic node display fields.
   */
  function testDSNodeEntity() {
    $node = $this
      ->entitiesTestSetup();

    // Look at node and verify token and block field.
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw('view-mode-full', 'Template file found (in full view mode)');
    $this
      ->assertRaw('<div class="token-class">' . $node->title . '</span>', t('Token field found'));
    $this
      ->assertRaw('I am a PHP field', t('PHP field found'));
    $this
      ->assertRaw('group-header', 'Template found (region header)');
    $this
      ->assertRaw('group-footer', 'Template found (region footer)');
    $this
      ->assertRaw('group-left', 'Template found (region left)');
    $this
      ->assertRaw('group-right', 'Template found (region right)');

    // Configure teaser layout.
    $teaser = array(
      'additional_settings[layout]' => 'ds_2col',
    );
    $teaser_assert = array(
      'regions' => array(
        'left' => '<td colspan="8">' . t('Left') . '</td>',
        'right' => '<td colspan="8">' . t('Right') . '</td>',
      ),
    );
    $this
      ->dsSelectLayout($teaser, $teaser_assert, 'admin/structure/types/manage/article/display/teaser');
    $fields = array(
      'fields[token_field][region]' => 'left',
      'fields[php_field][region]' => 'left',
      'fields[body][region]' => 'right',
      'fields[links][region]' => 'right',
    );
    $this
      ->dsConfigureUI($fields, 'admin/structure/types/manage/article/display/teaser');

    // Switch view mode on full node page.
    $edit = array(
      'ds_switch' => 'teaser',
    );
    $this
      ->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
    $this
      ->assertRaw('view-mode-teaser', 'Switched to teaser mode');
    $this
      ->assertRaw('group-left', 'Template found (region left)');
    $this
      ->assertRaw('group-right', 'Template found (region right)');
    $this
      ->assertNoRaw('group-header', 'Template found (no region header)');
    $this
      ->assertNoRaw('group-footer', 'Template found (no region footer)');
    $edit = array(
      'ds_switch' => '',
    );
    $this
      ->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
    $this
      ->assertRaw('view-mode-full', 'Switched to full mode again');

    // Test all options of a block field.
    $block = array(
      'name' => 'Test block field',
      'field' => 'test_block_field',
      'entities[node]' => '1',
      'block' => 'node|recent',
      'block_render' => DS_BLOCK_TEMPLATE,
    );
    $this
      ->dsCreateBlockField($block);
    $fields = array(
      'fields[test_block_field][region]' => 'left',
      'fields[token_field][region]' => 'hidden',
      'fields[php_field][region]' => 'hidden',
      'fields[body][region]' => 'hidden',
      'fields[links][region]' => 'hidden',
    );
    $this
      ->dsConfigureUI($fields);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw('<h2>Recent content</h2>');
    $block = array(
      'block_render' => DS_BLOCK_TITLE_CONTENT,
    );
    $this
      ->dsCreateBlockField($block, 'admin/structure/ds/fields/manage_block/test_block_field', FALSE);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertNoRaw('<h2>Recent content</h2>');
    $this
      ->assertRaw('Recent content');
    $block = array(
      'block_render' => DS_BLOCK_CONTENT,
    );
    $this
      ->dsCreateBlockField($block, 'admin/structure/ds/fields/manage_block/test_block_field', FALSE);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertNoRaw('<h2>Recent content</h2>');
    $this
      ->assertNoRaw('Recent content');

    // Remove the page title (we'll use the switch view mode functionality too for this).
    $edit = array(
      'additional_settings[ds_page_title_options][page_option_type]' => '1',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display/teaser');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw('<h1 class="title" id="page-title">
          ' . $node->title . '        </h1>');
    $edit = array(
      'ds_switch' => 'teaser',
    );
    $this
      ->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertNoRaw('<h1 class="title" id="page-title">
          ' . $node->title . '        </h1>');

    // Use page title substitutions.
    $edit = array(
      'additional_settings[ds_page_title_options][page_option_type]' => '2',
      'additional_settings[ds_page_title_options][page_option_title]' => 'Change title: %node:type',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display/teaser');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw('<h1 class="title" id="page-title">
          Change title: ' . $node->type . '        </h1>');
    $edit = array(
      'additional_settings[ds_page_title_options][page_option_type]' => '0',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display/teaser');

    // Go to home page, page title shouldn't bleed here
    // see http://drupal.org/node/1446554.
    $edit = array(
      'ds_switch' => '',
    );
    $this
      ->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
    $edit = array(
      'additional_settings[ds_page_title_options][page_option_type]' => '2',
      'additional_settings[ds_page_title_options][page_option_title]' => 'Bleed title: %node:type',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw('<h1 class="title" id="page-title">
          Bleed title: ' . $node->type . '        </h1>');
    $this
      ->drupalGet('node');
    $this
      ->assertNoText('Bleed title');

    // Test revisions. Enable the revision view mode
    $edit = array(
      'additional_settings[modes][view_modes_custom][revision]' => '1',
    );
    $this
      ->drupalPost('admin/structure/types/manage/article/display', $edit, t('Save'));

    // Select layout and configure fields.
    $edit = array(
      'additional_settings[layout]' => 'ds_2col',
    );
    $assert = array(
      'regions' => array(
        'left' => '<td colspan="8">' . t('Left') . '</td>',
        'right' => '<td colspan="8">' . t('Right') . '</td>',
      ),
    );
    $this
      ->dsSelectLayout($edit, $assert, 'admin/structure/types/manage/article/display/revision');
    $edit = array(
      'fields[body][region]' => 'left',
      'fields[links][region]' => 'right',
      'fields[author][region]' => 'right',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display/revision');

    // Create revision of the node.
    $edit = array(
      'revision' => TRUE,
      'log' => 'Test revision',
    );
    $this
      ->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
    $this
      ->assertText('Revisions');

    // Assert revision is using 2 col template.
    $this
      ->drupalGet('node/' . $node->nid . '/revisions/1/view');
    $this
      ->assertText('Body:', 'Body label');

    // Change title of revision.
    $edit = array(
      'additional_settings[ds_page_title_options][page_option_type]' => '2',
      'additional_settings[ds_page_title_options][page_option_title]' => 'Custom revision title',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display/revision');
    $this
      ->drupalGet('node/' . $node->nid . '/revisions/1/view');
    $this
      ->assertText('Custom revision title', 'Custom title on revision view mode');

    // Assert full view is using stacked template.
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertNoText('Body:', 'Body label');

    // Test formatter limit on article with tags.
    $edit = array(
      'ds_switch' => '',
      'field_tags[und]' => 'Tag 1, Tag 2',
    );
    $this
      ->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
    $edit = array(
      'fields[field_tags][region]' => 'right',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertText('Tag 1');
    $this
      ->assertText('Tag 2');
    $edit = array(
      'fields[field_tags][format][limit]' => '1',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertText('Tag 1');
    $this
      ->assertNoText('Tag 2');

    // Test check_plain() on ds_render_field() with the title field.
    $edit = array(
      'fields[title][region]' => 'right',
    );
    $this
      ->dsConfigureUI($edit, 'admin/structure/types/manage/article/display');
    $edit = array(
      'title' => 'Hi, I am an article <script>alert(\'with a javascript tag in the title\');</script>',
    );
    $this
      ->drupalPost('node/' . $node->nid . '/edit', $edit, t('Save'));
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw('<h2>Hi, I am an article &lt;script&gt;alert(&#039;with a javascript tag in the title&#039;);&lt;/script&gt;</h2>');
  }

  /**
   * Tests on field templates.
   */
  function testDSFieldTemplate() {

    // Get a node.
    $node = $this
      ->entitiesTestSetup('hidden');
    $body_field = $node->body[$node->language][0]['value'];

    // -------------------------
    // Default theming function.
    // -------------------------
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"field field-name-body field-type-text-with-summary field-label-hidden\"><div class=\"field-items\"><div class=\"field-item even\" property=\"content:encoded\"><p>" . $body_field . "</p>\n</div></div></div>");
    $this
      ->entitiesSetLabelClass('above');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"field field-name-body field-type-text-with-summary field-label-above\"><div class=\"field-label\">Body:&nbsp;</div><div class=\"field-items\"><div class=\"field-item even\" property=\"content:encoded\"><p>" . $body_field . "</p>\n</div></div></div>");
    $this
      ->entitiesSetLabelClass('above', 'My body');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"field field-name-body field-type-text-with-summary field-label-above\"><div class=\"field-label\">My body:&nbsp;</div><div class=\"field-items\"><div class=\"field-item even\" property=\"content:encoded\"><p>" . $body_field . "</p>\n</div></div></div>");
    $this
      ->entitiesSetLabelClass('hidden', '', 'test_field_class');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"field field-name-body field-type-text-with-summary field-label-hidden test_field_class\"><div class=\"field-items\"><div class=\"field-item even\" property=\"content:encoded\"><p>" . $body_field . "</p>\n</div></div></div>");
    $this
      ->entitiesClearFieldSettings();

    // -----------------------
    // Reset theming function.
    // -----------------------
    $edit = array(
      'additional_settings[fs1][ft-default]' => 'theme_ds_field_reset',
    );
    $this
      ->drupalPost('admin/structure/ds/extras', $edit, t('Save configuration'));
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <p>" . $body_field . "</p>");
    $this
      ->entitiesSetLabelClass('above');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"label-above\">Body:&nbsp;</div><p>" . $body_field . "</p>");
    $this
      ->entitiesSetLabelClass('inline');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"label-inline\">Body:&nbsp;</div><p>" . $body_field . "</p>");
    $this
      ->entitiesSetLabelClass('above', 'My body');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"label-above\">My body:&nbsp;</div><p>" . $body_field . "</p>");
    $this
      ->entitiesSetLabelClass('inline', 'My body');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"label-inline\">My body:&nbsp;</div><p>" . $body_field . "</p>");
    variable_set('ft-kill-colon', TRUE);
    $this
      ->refreshVariables();
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"label-inline\">My body</div><p>" . $body_field . "</p>");
    $this
      ->entitiesSetLabelClass('hidden');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <p>" . $body_field . "</p>");
    $this
      ->entitiesClearFieldSettings();

    // ----------------------
    // Custom field function.
    // ----------------------
    // With outer wrapper.
    $edit = array(
      'fields[body][format][ft][function]' => 'theme_ds_field_expert',
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'div',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div><p>" . $body_field . "</p>\n</div>    </div>");

    // With outer div wrapper and class.
    $edit = array(
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'div',
      'fields[body][format][ft][ow-cl]' => 'ow-class',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><p>" . $body_field . "</p>\n</div>    </div>");

    // With outer span wrapper and class.
    $edit = array(
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'span',
      'fields[body][format][ft][ow-cl]' => 'ow-class-2',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <span class=\"ow-class-2\"><p>" . $body_field . "</p>\n</span>    </div>");

    // Clear field settings.
    $this
      ->entitiesClearFieldSettings();

    // With outer wrapper and field items wrapper.
    $edit = array(
      'fields[body][format][ft][function]' => 'theme_ds_field_expert',
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'div',
      'fields[body][format][ft][fis]' => '1',
      'fields[body][format][ft][fis-el]' => 'div',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div><div><p>" . $body_field . "</p>\n</div></div>    </div>");

    // With outer wrapper and field items div wrapper with class.
    $edit = array(
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'div',
      'fields[body][format][ft][ow-el]' => 'div',
      'fields[body][format][ft][fis]' => '1',
      'fields[body][format][ft][fis-el]' => 'div',
      'fields[body][format][ft][fis-cl]' => 'fi-class',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div><div class=\"fi-class\"><p>" . $body_field . "</p>\n</div></div>    </div>");

    // With outer wrapper and field items span wrapper and class.
    $edit = array(
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'div',
      'fields[body][format][ft][fis]' => '1',
      'fields[body][format][ft][fis-el]' => 'span',
      'fields[body][format][ft][fis-cl]' => 'fi-class',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div><span class=\"fi-class\"><p>" . $body_field . "</p>\n</span></div>    </div>");

    // With outer wrapper class and field items span wrapper and class.
    $edit = array(
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'div',
      'fields[body][format][ft][ow-cl]' => 'ow-class',
      'fields[body][format][ft][fis]' => '1',
      'fields[body][format][ft][fis-el]' => 'span',
      'fields[body][format][ft][fis-cl]' => 'fi-class',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><span class=\"fi-class\"><p>" . $body_field . "</p>\n</span></div>    </div>");

    // With outer wrapper span class and field items span wrapper and class.
    $edit = array(
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'span',
      'fields[body][format][ft][ow-cl]' => 'ow-class',
      'fields[body][format][ft][fis]' => '1',
      'fields[body][format][ft][fis-el]' => 'span',
      'fields[body][format][ft][fis-cl]' => 'fi-class-2',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <span class=\"ow-class\"><span class=\"fi-class-2\"><p>" . $body_field . "</p>\n</span></span>    </div>");

    // Clear field settings.
    $this
      ->entitiesClearFieldSettings();

    // With field item div wrapper.
    $edit = array(
      'fields[body][format][ft][function]' => 'theme_ds_field_expert',
      'fields[body][format][ft][fi]' => '1',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"even\"><p>" . $body_field . "</p>\n</div>    </div>");

    // With field item span wrapper.
    $edit = array(
      'fields[body][format][ft][fi]' => '1',
      'fields[body][format][ft][fi-el]' => 'span',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <span class=\"even\"><p>" . $body_field . "</p>\n</span>    </div>");

    // With field item span wrapper and class.
    $edit = array(
      'fields[body][format][ft][fi]' => '1',
      'fields[body][format][ft][fi-el]' => 'span',
      'fields[body][format][ft][fi-cl]' => 'fi-class',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <span class=\"even fi-class\"><p>" . $body_field . "</p>\n</span>    </div>");

    // With fis and fi.
    $edit = array(
      'fields[body][format][ft][fis]' => '1',
      'fields[body][format][ft][fis-el]' => 'div',
      'fields[body][format][ft][fis-cl]' => 'fi-class-2',
      'fields[body][format][ft][fi]' => '1',
      'fields[body][format][ft][fi-el]' => 'div',
      'fields[body][format][ft][fi-cl]' => 'fi-class',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"fi-class-2\"><div class=\"even fi-class\"><p>" . $body_field . "</p>\n</div></div>    </div>");

    // With all
    $edit = array(
      'fields[body][format][ft][ow]' => '1',
      'fields[body][format][ft][ow-el]' => 'div',
      'fields[body][format][ft][ow-cl]' => 'ow-class',
      'fields[body][format][ft][fis]' => '1',
      'fields[body][format][ft][fis-el]' => 'div',
      'fields[body][format][ft][fis-cl]' => 'fi-class-2',
      'fields[body][format][ft][fi]' => '1',
      'fields[body][format][ft][fi-el]' => 'span',
      'fields[body][format][ft][fi-cl]' => 'fi-class',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><div class=\"fi-class-2\"><span class=\"even fi-class\"><p>" . $body_field . "</p>\n</span></div></div>    </div>");

    // Label tests with custom function.
    $this
      ->entitiesSetLabelClass('above');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><div class=\"label-above\">Body:&nbsp;</div><div class=\"fi-class-2\"><span class=\"even fi-class\"><p>" . $body_field . "</p>\n</span></div></div>    </div>");
    $this
      ->entitiesSetLabelClass('inline');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><div class=\"label-inline\">Body:&nbsp;</div><div class=\"fi-class-2\"><span class=\"even fi-class\"><p>" . $body_field . "</p>\n</span></div></div>    </div>");
    $this
      ->entitiesSetLabelClass('above', 'My body');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><div class=\"label-above\">My body:&nbsp;</div><div class=\"fi-class-2\"><span class=\"even fi-class\"><p>" . $body_field . "</p>\n</span></div></div>    </div>");
    $this
      ->entitiesSetLabelClass('inline', 'My body');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><div class=\"label-inline\">My body:&nbsp;</div><div class=\"fi-class-2\"><span class=\"even fi-class\"><p>" . $body_field . "</p>\n</span></div></div>    </div>");
    $this
      ->entitiesSetLabelClass('inline', 'My body', '', TRUE);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><div class=\"label-inline\">My body</div><div class=\"fi-class-2\"><span class=\"even fi-class\"><p>" . $body_field . "</p>\n</span></div></div>    </div>");
    $this
      ->entitiesSetLabelClass('hidden');
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      <div class=\"ow-class\"><div class=\"fi-class-2\"><span class=\"even fi-class\"><p>" . $body_field . "</p>\n</span></div></div>    </div>");

    // Use the test field theming function to test that this function is
    // registered in the theme registry through ds_extras_theme().
    $edit = array(
      'fields[body][format][ft][function]' => 'ds_test_theming_function',
    );
    $this
      ->dsConfigureUI($edit);
    $this
      ->drupalGet('node/' . $node->nid);
    $this
      ->assertRaw("<div class=\"group-right\">\n      Testing field output through custom function    </div>");
  }

}

Classes

Namesort descending Description
dsNodeTests @file Entities tests