diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2013-01-25 23:46:06 +0100 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2013-01-25 23:46:34 +0100 |
commit | bb6f4b2b5d0676ef0ed90f8050ad28e46f2dce35 (patch) | |
tree | 721b68c97b061b9429e3beb22e73052dd70a1cfa /tests/Framework/Html2text.php | |
parent | bd0daee7fd8d3e58433b0c394b1bc58b8b52e8e3 (diff) |
Refactored blockquote quotion routine in html2text conversion: it now correctly converts multiple and/or nested blockquotes
Diffstat (limited to 'tests/Framework/Html2text.php')
-rw-r--r-- | tests/Framework/Html2text.php | 19 |
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'); + } } |