1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
|
<?php
class Swift_Mime_Headers_PathHeaderTest extends \PHPUnit_Framework_TestCase
{
public function testTypeIsPathHeader()
{
$header = $this->_getHeader('Return-Path');
$this->assertEquals(Swift_Mime_Header::TYPE_PATH, $header->getFieldType());
}
public function testSingleAddressCanBeSetAndFetched()
{
$header = $this->_getHeader('Return-Path');
$header->setAddress('chris@swiftmailer.org');
$this->assertEquals('chris@swiftmailer.org', $header->getAddress());
}
public function testAddressMustComplyWithRfc2822()
{
try {
$header = $this->_getHeader('Return-Path');
$header->setAddress('chr is@swiftmailer.org');
$this->fail('Addresses not valid according to RFC 2822 addr-spec grammar must be rejected.');
} catch (Exception $e) {
}
}
public function testValueIsAngleAddrWithValidAddress()
{
/* -- RFC 2822, 3.6.7.
return = "Return-Path:" path CRLF
path = ([CFWS] "<" ([CFWS] / addr-spec) ">" [CFWS]) /
obs-path
*/
$header = $this->_getHeader('Return-Path');
$header->setAddress('chris@swiftmailer.org');
$this->assertEquals('<chris@swiftmailer.org>', $header->getFieldBody());
}
public function testValueIsEmptyAngleBracketsIfEmptyAddressSet()
{
$header = $this->_getHeader('Return-Path');
$header->setAddress('');
$this->assertEquals('<>', $header->getFieldBody());
}
public function testSetBodyModel()
{
$header = $this->_getHeader('Return-Path');
$header->setFieldBodyModel('foo@bar.tld');
$this->assertEquals('foo@bar.tld', $header->getAddress());
}
public function testGetBodyModel()
{
$header = $this->_getHeader('Return-Path');
$header->setAddress('foo@bar.tld');
$this->assertEquals('foo@bar.tld', $header->getFieldBodyModel());
}
public function testToString()
{
$header = $this->_getHeader('Return-Path');
$header->setAddress('chris@swiftmailer.org');
$this->assertEquals('Return-Path: <chris@swiftmailer.org>'."\r\n",
$header->toString()
);
}
private function _getHeader($name)
{
return new Swift_Mime_Headers_PathHeader($name, new Swift_Mime_Grammar());
}
}
|