<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Mime\Tests; use PHPUnit\Framework\TestCase; use Symfony\Component\Mime\RawMessage; class RawMessageTest extends TestCase { /** * @dataProvider provideMessages */ public function testToString($messageParameter) { $message = new RawMessage($messageParameter); $this->assertEquals('some string', $message->toString()); $this->assertEquals('some string', implode('', iterator_to_array($message->toIterable()))); // calling methods more than once work $this->assertEquals('some string', $message->toString()); $this->assertEquals('some string', implode('', iterator_to_array($message->toIterable()))); } public static function provideMessages(): array { return [ 'string' => ['some string'], 'traversable' => [new \ArrayObject(['some', ' ', 'string'])], 'array' => [['some', ' ', 'string']], ]; } public function testSerialization() { $message = new RawMessage('string'); $this->assertEquals('string', unserialize(serialize($message))->toString()); // calling methods more than once work $this->assertEquals('string', unserialize(serialize($message))->toString()); $message = new RawMessage(new \ArrayObject(['some', ' ', 'string'])); $message = new RawMessage($message->toIterable()); $this->assertEquals('some string', unserialize(serialize($message))->toString()); // calling methods more than once work $this->assertEquals('some string', unserialize(serialize($message))->toString()); } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Crypto | Folder | 0755 |
|
|
DependencyInjection | Folder | 0755 |
|
|
Encoder | Folder | 0755 |
|
|
Fixtures | Folder | 0755 |
|
|
Header | Folder | 0755 |
|
|
HtmlToTextConverter | Folder | 0755 |
|
|
Part | Folder | 0755 |
|
|
_data | Folder | 0755 |
|
|
AbstractMimeTypeGuesserTestCase.php | File | 4.15 KB | 0644 |
|
AddressTest.php | File | 4.92 KB | 0644 |
|
CharacterStreamTest.php | File | 3.33 KB | 0644 |
|
DraftEmailTest.php | File | 1.53 KB | 0644 |
|
EmailTest.php | File | 25.54 KB | 0644 |
|
FileBinaryMimeTypeGuesserTest.php | File | 753 B | 0644 |
|
FileinfoMimeTypeGuesserTest.php | File | 649 B | 0644 |
|
MessageConverterTest.php | File | 3.43 KB | 0644 |
|
MessageTest.php | File | 10.24 KB | 0644 |
|
MimeTypesTest.php | File | 2.92 KB | 0644 |
|
RawMessageTest.php | File | 1.89 KB | 0644 |
|