sonarrradarrplexorganizrnginxdashboardlandingpagestartpagelandinghtpcserverhomepagesabnzbdheimdallembycouchpotatonzbgetbookmarkapplication-dashboardmuximux
		
		
		
		
			You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							42 lines
						
					
					
						
							1.6 KiB
						
					
					
				
			
		
		
		
			
			
			
				
					
				
				
					
				
			
		
		
	
	
							42 lines
						
					
					
						
							1.6 KiB
						
					
					
				| <?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\Part; | |
| 
 | |
| use PHPUnit\Framework\TestCase; | |
| use Symfony\Component\Mime\Email; | |
| use Symfony\Component\Mime\Header\Headers; | |
| use Symfony\Component\Mime\Header\ParameterizedHeader; | |
| use Symfony\Component\Mime\Header\UnstructuredHeader; | |
| use Symfony\Component\Mime\Part\MessagePart; | |
| 
 | |
| class MessagePartTest extends TestCase | |
| { | |
|     public function testConstructor() | |
|     { | |
|         $p = new MessagePart((new Email())->from('fabien@symfony.com')->text('content')); | |
|         $this->assertContains('content', $p->getBody()); | |
|         $this->assertContains('content', $p->bodyToString()); | |
|         $this->assertContains('content', implode('', iterator_to_array($p->bodyToIterable()))); | |
|         $this->assertEquals('message', $p->getMediaType()); | |
|         $this->assertEquals('rfc822', $p->getMediaSubType()); | |
|     } | |
| 
 | |
|     public function testHeaders() | |
|     { | |
|         $p = new MessagePart((new Email())->from('fabien@symfony.com')->text('content')->subject('Subject')); | |
|         $this->assertEquals(new Headers( | |
|             new ParameterizedHeader('Content-Type', 'message/rfc822', ['name' => 'Subject.eml']), | |
|             new UnstructuredHeader('Content-Transfer-Encoding', 'base64'), | |
|             new ParameterizedHeader('Content-Disposition', 'attachment', ['name' => 'Subject.eml', 'filename' => 'Subject.eml']) | |
|         ), $p->getPreparedHeaders()); | |
|     } | |
| }
 | |
| 
 |