From 13e0a6556ffa9e0b3257f08d78042a8133055ea3 Mon Sep 17 00:00:00 2001 From: Aleksander Machniak Date: Thu, 19 Feb 2015 16:39:48 +0100 Subject: Fix handling of some improper constructs in format=flowed text as per the RFC3676[4.5] (#1490284) --- tests/Framework/Mime.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'tests') diff --git a/tests/Framework/Mime.php b/tests/Framework/Mime.php index 43773f1a5..4cf84cbb0 100644 --- a/tests/Framework/Mime.php +++ b/tests/Framework/Mime.php @@ -155,6 +155,21 @@ class Framework_Mime extends PHPUnit_Framework_TestCase $this->assertEquals($unfolded, rcube_mime::unfold_flowed($flowed), "Test correct unfolding of quoted lines"); } + /** + * Test format=flowed unfolding (#1490284) + */ + function test_unfold_flowed2() + { + $flowed = "> culpa qui officia deserunt mollit anim id est laborum.\r\n" + ."> \r\n" + ."Sed ut perspiciatis unde omnis iste natus error \r\nsit voluptatem"; + $unfolded = "> culpa qui officia deserunt mollit anim id est laborum.\r\n" + ."> \r\n" + ."Sed ut perspiciatis unde omnis iste natus error sit voluptatem"; + + $this->assertEquals($unfolded, rcube_mime::unfold_flowed($flowed), "Test correct unfolding of quoted lines [2]"); + } + /** * Test wordwrap() */ -- cgit v1.2.3