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

class Swift_Mime_Headers_UnstructuredHeaderTest extends SwiftMailerTestCase
{
    private 
$_charset 'utf-8';

    public function 
testTypeIsTextHeader()
    {
        
$header $this->_getHeader('Subject'$this->_getEncoder('Q'true));
        
$this->assertEquals(Swift_Mime_Header::TYPE_TEXT$header->getFieldType());
    }

    public function 
testGetNameReturnsNameVerbatim()
    {
        
$header $this->_getHeader('Subject'$this->_getEncoder('Q'true));
        
$this->assertEquals('Subject'$header->getFieldName());
    }

    public function 
testGetValueReturnsValueVerbatim()
    {
        
$header $this->_getHeader('Subject'$this->_getEncoder('Q'true));
        
$header->setValue('Test');
        
$this->assertEquals('Test'$header->getValue());
    }

    public function 
testBasicStructureIsKeyValuePair()
    {
        
/* -- RFC 2822, 2.2
        Header fields are lines composed of a field name, followed by a colon
        (":"), followed by a field body, and terminated by CRLF.
        */
        
$header $this->_getHeader('Subject'$this->_getEncoder('Q'true));
        
$header->setValue('Test');
        
$this->assertEquals('Subject: Test'."rn"$header->toString());
    }

    public function 
testLongHeadersAreFoldedAtWordBoundary()
    {
        
/* -- RFC 2822, 2.2.3
        Each header field is logically a single line of characters comprising
        the field name, the colon, and the field body.  For convenience
        however, and to deal with the 998/78 character limitations per line,
        the field body portion of a header field can be split into a multiple
        line representation; this is called "folding".  The general rule is
        that wherever this standard allows for folding white space (not
        simply WSP characters), a CRLF may be inserted before any WSP.
        */

        
$value 'The quick brown fox jumped over the fence, he was a very very '.
            
'scary brown fox with a bushy tail';
        
$header $this->_getHeader('X-Custom-Header',
            
$this->_getEncoder('Q'true)
            );
        
$header->setValue($value);
        
$header->setMaxLineLength(78); //A safe [RFC 2822, 2.2.3] default
        /*
        X-Custom-Header: The quick brown fox jumped over the fence, he was a very very
     scary brown fox with a bushy tail
        */
        
$this->assertEquals(
            
'X-Custom-Header: The quick brown fox jumped over the fence, he was a'.
            
' very very'."rn".//Folding
            
' scary brown fox with a bushy tail'."rn",
            
$header->toString(), '%s: The header should have been folded at 78th char'
            
);
    }

    public function 
testPrintableAsciiOnlyAppearsInHeaders()
    {
        
/* -- RFC 2822, 2.2.
        A field name MUST be composed of printable US-ASCII characters (i.e.,
        characters that have values between 33 and 126, inclusive), except
        colon.  A field body may be composed of any US-ASCII characters,
        except for CR and LF.
        */

        
$nonAsciiChar pack('C'0x8F);
        
$header $this->_getHeader('X-Test'$this->_getEncoder('Q'true));
        
$header->setValue($nonAsciiChar);
        
$this->assertRegExp(
            
'~^[^:x00-x20x80-xFF]+: [^x80-xFFrn]+rn$~s',
            
$header->toString()
            );
    }

    public function 
testEncodedWordsFollowGeneralStructure()
    {
        
/* -- RFC 2047, 1.
        Generally, an "encoded-word" is a sequence of printable ASCII
        characters that begins with "=?", ends with "?=", and has two "?"s in
        between.
        */

        
$nonAsciiChar pack('C'0x8F);
        
$header $this->_getHeader('X-Test'$this->_getEncoder('Q'true));
        
$header->setValue($nonAsciiChar);
        
$this->assertRegExp(
            
'~^X-Test: =?.*??.*??.*??=rn$~s',
            
$header->toString()
            );
    }

    public function 
testEncodedWordIncludesCharsetAndEncodingMethodAndText()
    {
        
/* -- RFC 2047, 2.
        An 'encoded-word' is defined by the following ABNF grammar.  The
        notation of RFC 822 is used, with the exception that white space
        characters MUST NOT appear between components of an 'encoded-word'.

        encoded-word = "=?" charset "?" encoding "?" encoded-text "?="
        */

        
$nonAsciiChar pack('C'0x8F);

        
$encoder $this->_getEncoder('Q');
        
$encoder->shouldReceive('encodeString')
                ->
once()
                ->
with($nonAsciiCharMockery::any(), Mockery::any(), Mockery::any())
                ->
andReturn('=8F');

        
$header $this->_getHeader('X-Test'$encoder);
        
$header->setValue($nonAsciiChar);
        
$this->assertEquals(
            
'X-Test: =?'.$this->_charset.'?Q?=8F?='."rn",
            
$header->toString()
            );
    }

    public function 
testEncodedWordsAreUsedToEncodedNonPrintableAscii()
    {
        
//SPACE and TAB permitted
        
$nonPrintableBytes array_merge(
            
range(0x000x08), range(0x100x19), array(0x7F)
            );

        foreach (
$nonPrintableBytes as $byte) {
            
$char pack('C'$byte);
            
$encodedChar sprintf('=%02X'$byte);

            
$encoder $this->_getEncoder('Q');
            
$encoder->shouldReceive('encodeString')
                ->
once()
                ->
with($charMockery::any(), Mockery::any(), Mockery::any())
                ->
andReturn($encodedChar);

            
$header $this->_getHeader('X-A'$encoder);
            
$header->setValue($char);

            
$this->assertEquals(
                
'X-A: =?'.$this->_charset.'?Q?'.$encodedChar.'?='."rn",
                
$header->toString(), '%s: Non-printable ascii should be encoded'
                
);
        }
    }

    public function 
testEncodedWordsAreUsedToEncode8BitOctets()
    {
        
$_8BitBytes range(0x800xFF);

        foreach (
$_8BitBytes as $byte) {
            
$char pack('C'$byte);
            
$encodedChar sprintf('=%02X'$byte);

            
$encoder $this->_getEncoder('Q');
            
$encoder->shouldReceive('encodeString')
                ->
once()
                ->
with($charMockery::any(), Mockery::any(), Mockery::any())
                ->
andReturn($encodedChar);

            
$header $this->_getHeader('X-A'$encoder);
            
$header->setValue($char);

            
$this->assertEquals(
                
'X-A: =?'.$this->_charset.'?Q?'.$encodedChar.'?='."rn",
                
$header->toString(), '%s: 8-bit octets should be encoded'
                
);
        }
    }

    public function 
testEncodedWordsAreNoMoreThan75CharsPerLine()
    {
        
/* -- RFC 2047, 2.
        An 'encoded-word' may not be more than 75 characters long, including
        'charset', 'encoding', 'encoded-text', and delimiters.

        ... SNIP ...

        While there is no limit to the length of a multiple-line header
        field, each line of a header field that contains one or more
        'encoded-word's is limited to 76 characters.
        */

        
$nonAsciiChar pack('C'0x8F);

        
$encoder $this->_getEncoder('Q');
        
$encoder->shouldReceive('encodeString')
                ->
once()
                ->
with($nonAsciiCharMockery::any(), Mockery::any(), Mockery::any())
                ->
andReturn('=8F');
        
//Note that multi-line headers begin with LWSP which makes 75 + 1 = 76
        //Note also that =?utf-8?q??= is 12 chars which makes 75 - 12 = 63

        //* X-Test: is 8 chars
        
$header $this->_getHeader('X-Test'$encoder);
        
$header->setValue($nonAsciiChar);

        
$this->assertEquals(
            
'X-Test: =?'.$this->_charset.'?Q?=8F?='."rn",
            
$header->toString()
            );
    }

    public function 
testFWSPIsUsedWhenEncoderReturnsMultipleLines()
    {
        
/* --RFC 2047, 2.
        If it is desirable to encode more text than will fit in an 'encoded-word' of
        75 characters, multiple 'encoded-word's (separated by CRLF SPACE) may
        be used.
        */

        //Note the Mock does NOT return 8F encoded, the 8F merely triggers
        // encoding for the sake of testing
        
$nonAsciiChar pack('C'0x8F);

        
$encoder $this->_getEncoder('Q');
        
$encoder->shouldReceive('encodeString')
                ->
once()
                ->
with($nonAsciiChar863Mockery::any())
                ->
andReturn('line_one_here'."rn".'line_two_here');

        
//Note that multi-line headers begin with LWSP which makes 75 + 1 = 76
        //Note also that =?utf-8?q??= is 12 chars which makes 75 - 12 = 63

        //* X-Test: is 8 chars
        
$header $this->_getHeader('X-Test'$encoder);
        
$header->setValue($nonAsciiChar);

        
$this->assertEquals(
            
'X-Test: =?'.$this->_charset.'?Q?line_one_here?='."rn".
            
' =?'.$this->_charset.'?Q?line_two_here?='."rn",
            
$header->toString()
            );
    }

    public function 
testAdjacentWordsAreEncodedTogether()
    {
        
/* -- RFC 2047, 5 (1)
     Ordinary ASCII text and 'encoded-word's may appear together in the
     same header field.  However, an 'encoded-word' that appears in a
     header field defined as '*text' MUST be separated from any adjacent
     'encoded-word' or 'text' by 'linear-white-space'.

     -- RFC 2047, 2.
     IMPORTANT: 'encoded-word's are designed to be recognized as 'atom's
     by an RFC 822 parser.  As a consequence, unencoded white space
     characters (such as SPACE and HTAB) are FORBIDDEN within an
     'encoded-word'.
     */

        //It would be valid to encode all words needed, however it's probably
        // easiest to encode the longest amount required at a time

        
$word 'w'.pack('C'0x8F).'rd';
        
$text 'start '.$word.' '.$word.' then end '.$word;
        
// 'start', ' word word', ' and end', ' word'

        
$encoder $this->_getEncoder('Q');
        
$encoder->shouldReceive('encodeString')
                ->
once()
                ->
with($word.' '.$wordMockery::any(), Mockery::any(), Mockery::any())
                ->
andReturn('w=8Frd_w=8Frd');
        
$encoder->shouldReceive('encodeString')
                ->
once()
                ->
with($wordMockery::any(), Mockery::any(), Mockery::any())
                ->
andReturn('w=8Frd');

        
$header $this->_getHeader('X-Test'$encoder);
        
$header->setValue($text);

        
$headerString $header->toString();

        
$this->assertEquals('X-Test: start =?'.$this->_charset.'?Q?'.
            
'w=8Frd_w=8Frd?= then end =?'.$this->_charset.'?Q?'.
            
'w=8Frd?='."rn"$headerString,
            
'%s: Adjacent encoded words should appear grouped with WSP encoded'
            
);
    }

    public function 
testLanguageInformationAppearsInEncodedWords()
    {
        
/* -- RFC 2231, 5.
        5.  Language specification in Encoded Words

        RFC 2047 provides support for non-US-ASCII character sets in RFC 822
        message header comments, phrases, and any unstructured text field.
        This is done by defining an encoded word construct which can appear
        in any of these places.  Given that these are fields intended for
        display, it is sometimes necessary to associate language information
        with encoded words as well as just the character set.  This
        specification extends the definition of an encoded word to allow the
        inclusion of such information.  This is simply done by suffixing the
        character set specification with an asterisk followed by the language
        tag.  For example:

                    From: =?US-ASCII*EN?Q?Keith_Moore?= <moore@cs.utk.edu>
        */

        
$value 'fo'.pack('C'0x8F).'bar';

        
$encoder $this->_getEncoder('Q');
        
$encoder->shouldReceive('encodeString')
                ->
once()
                ->
with($valueMockery::any(), Mockery::any(), Mockery::any())
                ->
andReturn('fo=8Fbar');

        
$header $this->_getHeader('Subject'$encoder);
        
$header->setLanguage('en');
        
$header->setValue($value);
        
$this->assertEquals("Subject: =?utf-8*en?Q?fo=8Fbar?=rn",
            
$header->toString()
            );
    }

    public function 
testSetBodyModel()
    {
        
$header $this->_getHeader('Subject'$this->_getEncoder('Q'true));
        
$header->setFieldBodyModel('test');
        
$this->assertEquals('test'$header->getValue());
    }

    public function 
testGetBodyModel()
    {
        
$header $this->_getHeader('Subject'$this->_getEncoder('Q'true));
        
$header->setValue('test');
        
$this->assertEquals('test'$header->getFieldBodyModel());
    }

    private function 
_getHeader($name$encoder)
    {
        
$header = new Swift_Mime_Headers_UnstructuredHeader($name$encoder, new Swift_Mime_Grammar());
        
$header->setCharset($this->_charset);

        return 
$header;
    }

    private function 
_getEncoder($type$stub false)
    {
        
$encoder $this->getMockery('Swift_Mime_HeaderEncoder')->shouldIgnoreMissing();
        
$encoder->shouldReceive('getName')
                ->
zeroOrMoreTimes()
                ->
andReturn($type);

        return 
$encoder;
    }
}
Онлайн: 0
Реклама