diff --git a/src/Fetch/Message.php b/src/Fetch/Message.php index 3644c91..cab27f8 100644 --- a/src/Fetch/Message.php +++ b/src/Fetch/Message.php @@ -481,16 +481,17 @@ class Message */ public static function decode($data, $encoding) { - if (!is_numeric($encoding)) + if (!is_numeric($encoding)) { $encoding = strtolower($encoding); + } - switch ($encoding) { - case 'quoted-printable': - case 4: + switch (true) { + case $encoding === 'quoted-printable': + case $encoding === 4: return quoted_printable_decode($data); - case 'base64': - case 3: + case $encoding === 'base64': + case $encoding === 3: return base64_decode($data); default: diff --git a/tests/Fetch/Test/MessageTest.php b/tests/Fetch/Test/MessageTest.php index de9ce25..970cd30 100644 --- a/tests/Fetch/Test/MessageTest.php +++ b/tests/Fetch/Test/MessageTest.php @@ -206,16 +206,24 @@ class MessageTest extends \PHPUnit_Framework_TestCase $this->assertEquals($sentFolderNumStart + 1, $server->numMessages(), 'Message moved into Sent Folder.'); } - public function testDecode() { + $quotedPrintableDecoded = "Now's the time for all folk to come to the aid of their country."; + $quotedPrintable = <<<'ENCODE' +Now's the time = +for all folk to come= + to the aid of their country. +ENCODE; + $this->assertEquals($quotedPrintableDecoded, Message::decode($quotedPrintable, 'quoted-printable'), 'Decodes quoted printable'); + $this->assertEquals($quotedPrintableDecoded, Message::decode($quotedPrintable, 4), 'Decodes quoted printable'); + $testString = 'This is a test string'; - - $quotedPrintable = quoted_printable_encode($testString); - $this->assertEquals($testString, Message::decode($quotedPrintable, 'quoted-printable'), 'Decodes quoted printable'); - $base64 = base64_encode($testString); $this->assertEquals($testString, Message::decode($base64, 'base64'), 'Decodes quoted base64'); + $this->assertEquals($testString, Message::decode($base64, 3), 'Decodes quoted base64'); + + $notEncoded = '> w - www.somesite.com.au'; + $this->assertEquals($notEncoded, Message::decode($notEncoded, 0), 'Nothing to decode'); } public function testTypeIdToString()