mirror of https://github.com/itflow-org/itflow
42 lines
1.0 KiB
PHP
42 lines
1.0 KiB
PHP
<?php
|
|
/*
|
|
* File: UndisclosedRecipientsTest.php
|
|
* Category: -
|
|
* Author: M.Goldenbaum
|
|
* Created: 09.03.23 02:24
|
|
* Updated: -
|
|
*
|
|
* Description:
|
|
* -
|
|
*/
|
|
|
|
namespace Tests\fixtures;
|
|
|
|
/**
|
|
* Class UndisclosedRecipientsTest
|
|
*
|
|
* @package Tests\fixtures
|
|
*/
|
|
class UndisclosedRecipientsTest extends FixtureTestCase {
|
|
|
|
/**
|
|
* Test the fixture undisclosed_recipients.eml
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testFixture() : void {
|
|
$message = $this->getFixture("undisclosed_recipients.eml");
|
|
|
|
self::assertEquals("test", $message->subject);
|
|
self::assertEquals("Hi!", $message->getTextBody());
|
|
self::assertFalse($message->hasHTMLBody());
|
|
self::assertEquals("2017-09-27 10:48:51", $message->date->first()->setTimezone('UTC')->format("Y-m-d H:i:s"));
|
|
self::assertEquals("from@there.com", $message->from);
|
|
self::assertEquals([
|
|
"Undisclosed Recipients",
|
|
""
|
|
], $message->to->map(function ($item) {
|
|
return $item->mailbox;
|
|
}));
|
|
}
|
|
} |