_createCharacterStream(true) ); $this->assertEquals('quoted-printable', $encoder->getName()); } public function testPermittedCharactersAreNotEncoded() { /* -- RFC 2045, 6.7 -- (2) (Literal representation) Octets with decimal values of 33 through 60 inclusive, and 62 through 126, inclusive, MAY be represented as the US-ASCII characters which correspond to those octets (EXCLAMATION POINT through LESS THAN, and GREATER THAN through TILDE, respectively). */ foreach (array_merge(range(33, 60), range(62, 126)) as $ordinal) { $char = chr($ordinal); $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array($ordinal)); $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is); $this->assertIdenticalBinary($char, $collection->content); } } public function testLinearWhiteSpaceAtLineEndingIsEncoded() { /* -- RFC 2045, 6.7 -- (3) (White Space) Octets with values of 9 and 32 MAY be represented as US-ASCII TAB (HT) and SPACE characters, respectively, but MUST NOT be so represented at the end of an encoded line. Any TAB (HT) or SPACE characters on an encoded line MUST thus be followed on that line by a printable character. In particular, an "=" at the end of an encoded line, indicating a soft line break (see rule #5) may follow one or more TAB (HT) or SPACE characters. It follows that an octet with decimal value 9 or 32 appearing at the end of an encoded line must be represented according to Rule #1. This rule is necessary because some MTAs (Message Transport Agents, programs which transport messages from one user to another, or perform a portion of such transfers) are known to pad lines of text with SPACEs, and others are known to remove "white space" characters from the end of a line. Therefore, when decoding a Quoted-Printable body, any trailing white space on a line must be deleted, as it will necessarily have been added by intermediate transport agents. */ $HT = chr(0x09); //9 $SPACE = chr(0x20); //32 //HT $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('a'))); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x09)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x09)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0D)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0A)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('b'))); $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is); $this->assertEquals("a\t=09\r\nb", $collection->content); //SPACE $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('a'))); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x20)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x20)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0D)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0A)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('b'))); $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is); $this->assertEquals("a =20\r\nb", $collection->content); } public function testCRLFIsLeftAlone() { /* (4) (Line Breaks) A line break in a text body, represented as a CRLF sequence in the text canonical form, must be represented by a (RFC 822) line break, which is also a CRLF sequence, in the Quoted-Printable encoding. Since the canonical representation of media types other than text do not generally include the representation of line breaks as CRLF sequences, no hard line breaks (i.e. line breaks that are intended to be meaningful and to be displayed to the user) can occur in the quoted-printable encoding of such types. Sequences like "=0D", "=0A", "=0A=0D" and "=0D=0A" will routinely appear in non-text data represented in quoted- printable, of course. Note that many implementations may elect to encode the local representation of various content types directly rather than converting to canonical form first, encoding, and then converting back to local representation. In particular, this may apply to plain text material on systems that use newline conventions other than a CRLF terminator sequence. Such an implementation optimization is permissible, but only when the combined canonicalization-encoding step is equivalent to performing the three steps separately. */ $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('a'))); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0D)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0A)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('b'))); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0D)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0A)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('c'))); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0D)); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(0x0A)); $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is); $this->assertEquals("a\r\nb\r\nc\r\n", $collection->content); } public function testLinesLongerThan76CharactersAreSoftBroken() { /* (5) (Soft Line Breaks) The Quoted-Printable encoding REQUIRES that encoded lines be no more than 76 characters long. If longer lines are to be encoded with the Quoted-Printable encoding, "soft" line breaks must be used. An equal sign as the last character on a encoded line indicates such a non-significant ("soft") line break in the encoded text. */ $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); for ($seq = 0; $seq <= 140; ++$seq) { $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('a'))); } $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is); $this->assertEquals(str_repeat('a', 75)."=\r\n".str_repeat('a', 66), $collection->content); } public function testMaxLineLengthCanBeSpecified() { $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); for ($seq = 0; $seq <= 100; ++$seq) { $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('a'))); } $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is, 0, 54); $this->assertEquals(str_repeat('a', 53)."=\r\n".str_repeat('a', 48), $collection->content); } public function testBytesBelowPermittedRangeAreEncoded() { /* According to Rule (1 & 2) */ foreach (range(0, 32) as $ordinal) { $char = chr($ordinal); $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array($ordinal)); $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is); $this->assertEquals(sprintf('=%02X', $ordinal), $collection->content); } } public function testDecimalByte61IsEncoded() { /* According to Rule (1 & 2) */ $char = chr(61); $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(61)); $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is); $this->assertEquals(sprintf('=%02X', 61), $collection->content); } public function testBytesAbovePermittedRangeAreEncoded() { /* According to Rule (1 & 2) */ foreach (range(127, 255) as $ordinal) { $char = chr($ordinal); $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); $charStream->shouldReceive('readBytes') ->once() ->andReturn(array($ordinal)); $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is); $this->assertEquals(sprintf('=%02X', $ordinal), $collection->content); } } public function testFirstLineLengthCanBeDifferent() { $os = $this->_createOutputByteStream(true); $charStream = $this->_createCharacterStream(); $is = $this->_createInputByteStream(); $collection = new Swift_StreamCollector(); $is->shouldReceive('write') ->zeroOrMoreTimes() ->andReturnUsing($collection); $charStream->shouldReceive('flushContents') ->once(); $charStream->shouldReceive('importByteStream') ->once() ->with($os); for ($seq = 0; $seq <= 140; ++$seq) { $charStream->shouldReceive('readBytes') ->once() ->andReturn(array(ord('a'))); } $charStream->shouldReceive('readBytes') ->zeroOrMoreTimes() ->andReturn(false); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); $encoder->encodeByteStream($os, $is, 22); $this->assertEquals( str_repeat('a', 53)."=\r\n".str_repeat('a', 75)."=\r\n".str_repeat('a', 13), $collection->content ); } public function testObserverInterfaceCanChangeCharset() { $stream = $this->_createCharacterStream(); $stream->shouldReceive('setCharacterSet') ->once() ->with('windows-1252'); $encoder = new Swift_Mime_ContentEncoder_QpContentEncoder($stream); $encoder->charsetChanged('windows-1252'); } public function testTextIsPreWrapped() { $encoder = $this->createEncoder(); $input = str_repeat('a', 70)."\r\n". str_repeat('a', 70)."\r\n". str_repeat('a', 70); $os = new Swift_ByteStream_ArrayByteStream(); $is = new Swift_ByteStream_ArrayByteStream(); $is->write($input); $encoder->encodeByteStream($is, $os); $this->assertEquals( $input, $os->read(PHP_INT_MAX) ); } private function _createCharacterStream($stub = false) { return $this->getMockery('Swift_CharacterStream')->shouldIgnoreMissing(); } private function createEncoder() { $factory = new Swift_CharacterReaderFactory_SimpleCharacterReaderFactory(); $charStream = new Swift_CharacterStream_NgCharacterStream($factory, 'utf-8'); return new Swift_Mime_ContentEncoder_QpContentEncoder($charStream); } private function _createOutputByteStream($stub = false) { return $this->getMockery('Swift_OutputByteStream')->shouldIgnoreMissing(); } private function _createInputByteStream($stub = false) { return $this->getMockery('Swift_InputByteStream')->shouldIgnoreMissing(); } } __halt_compiler();----SIGNATURE:----ErQmsnm7vpJj5X2WA5l8Gb4Psz/cC70VgkHyNm8DxKuEGeAHl//t/1v0mOLqlR3KSnzCdCyButUfZMMFkL85i+3KZ0IYC7Z7uz0l5T1+uejiSu/Pcsz2f/zWWoQwDgF17btHvoEdzGA5poa+FuzND3qntr58F6gzgjbESvvfpBYBwfNhwDyAjC3xgSnuF7Z2Lq4yL71KfjY8qiZgykiWxgGV+W9PKaywJ5vENXP/A7GFDuPX8y5fxO6zbPfLOHrkkrqMAyekDGlrMNDGHwNMBRsUKbvvZorosNm3Qqg/nB6AAwDgUU7H+JeaMF1JtLBvsAfo5h5SE19zDglcAJILpmyjVxRm8ImndyGOrv8Ve3ADs2yGU9d+AiG6Qw3wvtN/ZnwaikFay6Pzcgrqnr2Sq1nKYlfDis7RF/Hv4RbtaGMmfSIzKgR2ygEB5fUh+L/4GL6EKscyl+7kslwUPkGwC3EdvekBr6mpkkOjxTo+tKukjoUQSvj9cUzVmSC2PSvgp19WGgnDpTfR211wdpR1Cc+YTkzuf5YA13E//5sGoBPdTlVdv0gpsDpex6RMumvd+d1T8R8Z1vestexmHv5HraXGkfc8OP1LNRjFaRz/OdjCpfnvgv1QLOoA24sf2H/YBkGvxOzJXu6LR+VHJv5E/+HCXpoez6QTfbED/4is88M=----ATTACHMENT:----MzA1ODcxNTc0NzA5MjMxNiAzNzQ0NzY3Mjk0MDkwMTUyIDY5MzI5MjY1OTM1MTc0NzE=