summaryrefslogtreecommitdiff
path: root/modules/simpletest
diff options
context:
space:
mode:
authorDavid Rothstein <drothstein@gmail.com>2013-12-25 16:49:17 -0500
committerDavid Rothstein <drothstein@gmail.com>2013-12-25 16:49:17 -0500
commit58081593e9d37eb17c687e6ab8a0eb3ec3d36d8a (patch)
tree4d644c5b53913621be96d86f445f062d9380d568 /modules/simpletest
parent59b82ed9fae50d516c023369a9ffca94bccc9b6a (diff)
downloadbrdo-58081593e9d37eb17c687e6ab8a0eb3ec3d36d8a.tar.gz
brdo-58081593e9d37eb17c687e6ab8a0eb3ec3d36d8a.tar.bz2
Issue #310315 by superspring, justafish, naxoc, Waltemath | fonant: drupal_wrap_mail() strips trailing blanks from standard hyphen-hyphen-space-newline e-mail signature separator.
Diffstat (limited to 'modules/simpletest')
-rw-r--r--modules/simpletest/tests/mail.test25
1 files changed, 25 insertions, 0 deletions
diff --git a/modules/simpletest/tests/mail.test b/modules/simpletest/tests/mail.test
index 8024010ab..70a43cb45 100644
--- a/modules/simpletest/tests/mail.test
+++ b/modules/simpletest/tests/mail.test
@@ -268,6 +268,31 @@ class DrupalHtmlToTextTestCase extends DrupalWebTestCase {
}
/**
+ * Tests that drupal_wrap_mail() removes trailing whitespace before newlines.
+ */
+ function testDrupalHtmltoTextRemoveTrailingWhitespace() {
+ $text = "Hi there! \nHerp Derp";
+ $mail_lines = explode("\n", drupal_wrap_mail($text));
+ $this->assertNotEqual(" ", substr($mail_lines[0], -1), 'Trailing whitespace removed.');
+ }
+
+ /**
+ * Tests drupal_wrap_mail() retains whitespace from Usenet style signatures.
+ *
+ * RFC 3676 says, "This is a special case; an (optionally quoted or quoted and
+ * stuffed) line consisting of DASH DASH SP is neither fixed nor flowed."
+ */
+ function testDrupalHtmltoTextUsenetSignature() {
+ $text = "Hi there!\n-- \nHerp Derp";
+ $mail_lines = explode("\n", drupal_wrap_mail($text));
+ $this->assertEqual("-- ", $mail_lines[1], 'Trailing whitespace not removed for dash-dash-space signatures.');
+
+ $text = "Hi there!\n-- \nHerp Derp";
+ $mail_lines = explode("\n", drupal_wrap_mail($text));
+ $this->assertEqual("--", $mail_lines[1], 'Trailing whitespace removed for incorrect dash-dash-space signatures.');
+ }
+
+ /**
* Test that whitespace is collapsed.
*/
function testDrupalHtmltoTextCollapsesWhitespace() {