summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Bruederli <thomas@roundcube.net>2013-01-25 23:46:06 +0100
committerThomas Bruederli <thomas@roundcube.net>2013-01-25 23:46:34 +0100
commitbb6f4b2b5d0676ef0ed90f8050ad28e46f2dce35 (patch)
tree721b68c97b061b9429e3beb22e73052dd70a1cfa /tests
parentbd0daee7fd8d3e58433b0c394b1bc58b8b52e8e3 (diff)
Refactored blockquote quotion routine in html2text conversion: it now correctly converts multiple and/or nested blockquotes
Diffstat (limited to 'tests')
-rw-r--r--tests/Framework/Html2text.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/tests/Framework/Html2text.php b/tests/Framework/Html2text.php
index 1d8963878..3e0df48d9 100644
--- a/tests/Framework/Html2text.php
+++ b/tests/Framework/Html2text.php
@@ -56,4 +56,23 @@ class rc_html2text extends PHPUnit_Framework_TestCase
$this->assertEquals($out, $res, $title);
}
+
+ /**
+ *
+ */
+ function test_multiple_blockquotes()
+ {
+ $html = <<<EOF
+<br>Begin<br><blockquote>OUTER BEGIN<blockquote>INNER 1<br></blockquote><div><br></div><div>Par 1</div>
+<blockquote>INNER 2</blockquote><div><br></div><div>Par 2</div>
+<div><br></div><div>Par 3</div><div><br></div>
+<blockquote>INNER 3</blockquote>OUTER END</blockquote>
+EOF;
+ $ht = new rcube_html2text($html, false, false);
+ $res = $ht->get_text();
+
+ $this->assertContains('>> INNER 1', $res, 'Quote inner');
+ $this->assertContains('>> INNER 3', $res, 'Quote inner');
+ $this->assertContains('> OUTER END', $res, 'Quote outer');
+ }
}