123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153 |
- <?php
-
- require_once 'Swift/Encoder/Rfc2231Encoder.php';
- require_once 'Swift/CharacterStream.php';
- require_once 'Swift/Tests/SwiftUnitTestCase.php';
-
- class Swift_Encoder_Rfc2231EncoderTest extends Swift_Tests_SwiftUnitTestCase
- {
-
- private $_rfc2045Token = '/^[\x21\x23-\x27\x2A\x2B\x2D\x2E\x30-\x39\x41-\x5A\x5E-\x7E]+$/D';
-
- /* --
- This algorithm is described in RFC 2231, but is barely touched upon except
- for mentioning bytes can be represented as their octet values (e.g. %20 for
- the SPACE character).
-
- The tests here focus on how to use that representation to always generate text
- which matches RFC 2045's definition of "token".
- */
-
- public function testEncodingAsciiCharactersProducesValidToken()
- {
- $charStream = $this->_mock('Swift_CharacterStream');
- $seq = $this->_sequence('byte-sequence');
-
- $string = '';
- foreach (range(0x00, 0x7F) as $octet)
- {
- $char = pack('C', $octet);
- $string .= $char;
- $this->_checking(Expectations::create()
- -> one($charStream)->read(optional()) -> inSequence($seq) -> returns($char)
- );
- }
- $this->_checking(Expectations::create()
- -> atLeast(1)->of($charStream)->read(optional()) -> inSequence($seq) -> returns(false)
- -> one($charStream)->importString($string)
- -> ignoring($charStream)->flushContents()
- );
-
- $encoder = new Swift_Encoder_Rfc2231Encoder($charStream);
- $encoded = $encoder->encodeString($string);
-
- foreach (explode("\r\n", $encoded) as $line)
- {
- $this->assertPattern($this->_rfc2045Token, $line,
- '%s: Encoder should always return a valid RFC 2045 token.');
- }
-
-
- }
-
- public function testEncodingNonAsciiCharactersProducesValidToken()
- {
- $charStream = $this->_mock('Swift_CharacterStream');
- $seq = $this->_sequence('byte-sequence');
-
- $string = '';
- foreach (range(0x80, 0xFF) as $octet)
- {
- $char = pack('C', $octet);
- $string .= $char;
- $this->_checking(Expectations::create()
- -> one($charStream)->read(optional()) -> inSequence($seq) -> returns($char)
- );
- }
- $this->_checking(Expectations::create()
- -> atLeast(1)->of($charStream)->read(optional()) -> inSequence($seq) -> returns(false)
- -> one($charStream)->importString($string)
- -> ignoring($charStream)->flushContents()
- );
- $encoder = new Swift_Encoder_Rfc2231Encoder($charStream);
-
- $encoded = $encoder->encodeString($string);
-
- foreach (explode("\r\n", $encoded) as $line)
- {
- $this->assertPattern($this->_rfc2045Token, $line,
- '%s: Encoder should always return a valid RFC 2045 token.');
- }
-
-
- }
-
- public function testMaximumLineLengthCanBeSet()
- {
- $charStream = $this->_mock('Swift_CharacterStream');
- $seq = $this->_sequence('byte-sequence');
-
- $string = '';
- for ($x = 0; $x < 200; ++$x)
- {
- $char = 'a';
- $string .= $char;
- $this->_checking(Expectations::create()
- -> one($charStream)->read(optional()) -> inSequence($seq) -> returns($char)
- );
- }
- $this->_checking(Expectations::create()
- -> atLeast(1)->of($charStream)->read(optional()) -> inSequence($seq) -> returns(false)
- -> one($charStream)->importString($string)
- -> ignoring($charStream)->flushContents()
- );
- $encoder = new Swift_Encoder_Rfc2231Encoder($charStream);
-
- $encoded = $encoder->encodeString($string, 0, 75);
-
- $this->assertEqual(
- str_repeat('a', 75) . "\r\n" .
- str_repeat('a', 75) . "\r\n" .
- str_repeat('a', 50),
- $encoded,
- '%s: Lines should be wrapped at each 75 characters'
- );
-
-
- }
-
- public function testFirstLineCanHaveShorterLength()
- {
- $charStream = $this->_mock('Swift_CharacterStream');
- $seq = $this->_sequence('byte-sequence');
-
- $string = '';
- for ($x = 0; $x < 200; ++$x)
- {
- $char = 'a';
- $string .= $char;
- $this->_checking(Expectations::create()
- -> one($charStream)->read(optional()) -> inSequence($seq) -> returns($char)
- );
- }
- $this->_checking(Expectations::create()
- -> atLeast(1)->of($charStream)->read(optional()) -> inSequence($seq) -> returns(false)
- -> one($charStream)->importString($string)
- -> ignoring($charStream)->flushContents()
- );
- $encoder = new Swift_Encoder_Rfc2231Encoder($charStream);
- $encoded = $encoder->encodeString($string, 25, 75);
-
- $this->assertEqual(
- str_repeat('a', 50) . "\r\n" .
- str_repeat('a', 75) . "\r\n" .
- str_repeat('a', 75),
- $encoded,
- '%s: First line should be 25 bytes shorter than the others.'
- );
-
-
- }
-
- }
|