Вход Регистрация
Файл: gapps/vendor/swiftmailer/swiftmailer/tests/unit/Swift/Encoder/Rfc2231EncoderTest.php
Строк: 155
<?php

class Swift_Encoder_Rfc2231EncoderTest extends SwiftMailerTestCase
{
    private 
$_rfc2045Token '/^[x21x23-x27x2Ax2Bx2Dx2Ex30-x39x41-x5Ax5E-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->getMockery('Swift_CharacterStream');

        
$string '';
        foreach (
range(0x000x7F) as $octet) {
            
$char pack('C'$octet);
            
$string .= $char;
            
$charStream->shouldReceive('read')
                       ->
once()
                       ->
andReturn($char);
        }

        
$charStream->shouldReceive('flushContents')
                    ->
once();
        
$charStream->shouldReceive('importString')
                    ->
once()
                    ->
with($string);
        
$charStream->shouldReceive('read')
                    ->
atLeast()->times(1)
                    ->
andReturn(false);

        
$encoder = new Swift_Encoder_Rfc2231Encoder($charStream);
        
$encoded $encoder->encodeString($string);

        foreach (
explode("rn"$encoded) as $line) {
            
$this->assertRegExp($this->_rfc2045Token$line,
                
'%s: Encoder should always return a valid RFC 2045 token.');
        }
    }

    public function 
testEncodingNonAsciiCharactersProducesValidToken()
    {
        
$charStream $this->getMockery('Swift_CharacterStream');

        
$string '';
        foreach (
range(0x800xFF) as $octet) {
            
$char pack('C'$octet);
            
$string .= $char;
            
$charStream->shouldReceive('read')
                       ->
once()
                       ->
andReturn($char);
        }
        
$charStream->shouldReceive('flushContents')
                    ->
once();
        
$charStream->shouldReceive('importString')
                    ->
once()
                    ->
with($string);
        
$charStream->shouldReceive('read')
                    ->
atLeast()->times(1)
                    ->
andReturn(false);
        
$encoder = new Swift_Encoder_Rfc2231Encoder($charStream);

        
$encoded $encoder->encodeString($string);

        foreach (
explode("rn"$encoded) as $line) {
            
$this->assertRegExp($this->_rfc2045Token$line,
                
'%s: Encoder should always return a valid RFC 2045 token.');
        }
    }

    public function 
testMaximumLineLengthCanBeSet()
    {
        
$charStream $this->getMockery('Swift_CharacterStream');

        
$string '';
        for (
$x 0$x 200; ++$x) {
            
$char 'a';
            
$string .= $char;
            
$charStream->shouldReceive('read')
                       ->
once()
                       ->
andReturn($char);
        }
        
$charStream->shouldReceive('flushContents')
                    ->
once();
        
$charStream->shouldReceive('importString')
                    ->
once()
                    ->
with($string);
        
$charStream->shouldReceive('read')
                    ->
atLeast()->times(1)
                    ->
andReturn(false);
        
$encoder = new Swift_Encoder_Rfc2231Encoder($charStream);

        
$encoded $encoder->encodeString($string075);

        
$this->assertEquals(
            
str_repeat('a'75)."rn".
            
str_repeat('a'75)."rn".
            
str_repeat('a'50),
            
$encoded,
            
'%s: Lines should be wrapped at each 75 characters'
            
);
    }

    public function 
testFirstLineCanHaveShorterLength()
    {
        
$charStream $this->getMockery('Swift_CharacterStream');

        
$string '';
        for (
$x 0$x 200; ++$x) {
            
$char 'a';
            
$string .= $char;
            
$charStream->shouldReceive('read')
                       ->
once()
                       ->
andReturn($char);
        }
        
$charStream->shouldReceive('flushContents')
                    ->
once();
        
$charStream->shouldReceive('importString')
                    ->
once()
                    ->
with($string);
        
$charStream->shouldReceive('read')
                    ->
atLeast()->times(1)
                    ->
andReturn(false);
        
$encoder = new Swift_Encoder_Rfc2231Encoder($charStream);
        
$encoded $encoder->encodeString($string2575);

        
$this->assertEquals(
            
str_repeat('a'50)."rn".
            
str_repeat('a'75)."rn".
            
str_repeat('a'75),
            
$encoded,
            
'%s: First line should be 25 bytes shorter than the others.'
            
);
    }
}
Онлайн: 0
Реклама