home
/
zktecojo
/
public_html
/
vendor
/
swiftmailer
/
swiftmailer
/
tests
/
acceptance
/
Swift
/
Mime
➕ New
📤 Upload
✎ Editing:
EmbeddedFileAcceptanceTest.php
← Back
<?php class Swift_Mime_EmbeddedFileAcceptanceTest extends \PHPUnit_Framework_TestCase { private $_contentEncoder; private $_cache; private $_grammar; private $_headers; public function setUp() { $this->_cache = new Swift_KeyCache_ArrayKeyCache( new Swift_KeyCache_SimpleKeyCacheInputStream() ); $factory = new Swift_CharacterReaderFactory_SimpleCharacterReaderFactory(); $this->_contentEncoder = new Swift_Mime_ContentEncoder_Base64ContentEncoder(); $headerEncoder = new Swift_Mime_HeaderEncoder_QpHeaderEncoder( new Swift_CharacterStream_ArrayCharacterStream($factory, 'utf-8') ); $paramEncoder = new Swift_Encoder_Rfc2231Encoder( new Swift_CharacterStream_ArrayCharacterStream($factory, 'utf-8') ); $this->_grammar = new Swift_Mime_Grammar(); $this->_headers = new Swift_Mime_SimpleHeaderSet( new Swift_Mime_SimpleHeaderFactory($headerEncoder, $paramEncoder, $this->_grammar) ); } public function testContentIdIsSetInHeader() { $file = $this->_createEmbeddedFile(); $file->setContentType('application/pdf'); $file->setId('foo@bar'); $this->assertEquals( 'Content-Type: application/pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-Disposition: inline'."\r\n". 'Content-ID: <foo@bar>'."\r\n", $file->toString() ); } public function testDispositionIsSetInHeader() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setDisposition('attachment'); $this->assertEquals( 'Content-Type: application/pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-Disposition: attachment'."\r\n". 'Content-ID: <'.$id.'>'."\r\n", $file->toString() ); } public function testFilenameIsSetInHeader() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setFilename('foo.pdf'); $this->assertEquals( 'Content-Type: application/pdf; name=foo.pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-Disposition: inline; filename=foo.pdf'."\r\n". 'Content-ID: <'.$id.'>'."\r\n", $file->toString() ); } public function testSizeIsSetInHeader() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setSize(12340); $this->assertEquals( 'Content-Type: application/pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-Disposition: inline; size=12340'."\r\n". 'Content-ID: <'.$id.'>'."\r\n", $file->toString() ); } public function testMultipleParametersInHeader() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setFilename('foo.pdf'); $file->setSize(12340); $this->assertEquals( 'Content-Type: application/pdf; name=foo.pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-Disposition: inline; filename=foo.pdf; size=12340'."\r\n". 'Content-ID: <'.$id.'>'."\r\n", $file->toString() ); } public function testEndToEnd() { $file = $this->_createEmbeddedFile(); $id = $file->getId(); $file->setContentType('application/pdf'); $file->setFilename('foo.pdf'); $file->setSize(12340); $file->setBody('abcd'); $this->assertEquals( 'Content-Type: application/pdf; name=foo.pdf'."\r\n". 'Content-Transfer-Encoding: base64'."\r\n". 'Content-Disposition: inline; filename=foo.pdf; size=12340'."\r\n". 'Content-ID: <'.$id.'>'."\r\n". "\r\n". base64_encode('abcd'), $file->toString() ); } // -- Private helpers protected function _createEmbeddedFile() { $entity = new Swift_Mime_EmbeddedFile( $this->_headers, $this->_contentEncoder, $this->_cache, $this->_grammar ); return $entity; } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel