function DrupalHtmlToTextTestCase::testHeaderSeparation

7.x mail.test DrupalHtmlToTextTestCase::testHeaderSeparation()

Test that headers are properly separated from surrounding text.

File

drupal-7.x/modules/simpletest/tests/mail.test, line 364
Test the Drupal mailing system.

Class

DrupalHtmlToTextTestCase
Unit tests for drupal_html_to_text().

Code

function testHeaderSeparation() {
  $html = 'Drupal<h1>Drupal</h1>Drupal';
  // @todo There should be more space above the header than below it.
  $text = "Drupal\n======== DRUPAL ==============================================================\n\nDrupal\n";
  $this->assertHtmlToText($html, $text, 
  'Text before and after <h1> tag');
  $html = '<p>Drupal</p><h1>Drupal</h1>Drupal';
  // @todo There should be more space above the header than below it.
  $text = "Drupal\n\n======== DRUPAL ==============================================================\n\nDrupal\n";
  $this->assertHtmlToText($html, $text, 
  'Paragraph before and text after <h1> tag');
  $html = 'Drupal<h1>Drupal</h1><p>Drupal</p>';
  // @todo There should be more space above the header than below it.
  $text = "Drupal\n======== DRUPAL ==============================================================\n\nDrupal\n\n";
  $this->assertHtmlToText($html, $text, 
  'Text before and paragraph after <h1> tag');
  $html = '<p>Drupal</p><h1>Drupal</h1><p>Drupal</p>';
  $text = "Drupal\n\n======== DRUPAL ==============================================================\n\nDrupal\n\n";
  $this->assertHtmlToText($html, $text, 
  'Paragraph before and after <h1> tag');
}