Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php namespace Illuminate\Tests\Mail; use Illuminate\Mail\Attachment; use Illuminate\Ma..
Decoded Output download
<?php
namespace Illuminate\Tests\Mail;
use Illuminate\Mail\Attachment;
use Illuminate\Mail\Message;
use Illuminate\Mail\Transport\LogTransport;
use Monolog\Handler\StreamHandler;
use Monolog\Logger;
use Orchestra\Testbench\TestCase;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use Symfony\Component\Mime\Email;
class MailLogTransportTest extends TestCase
{
public function testGetLogTransportWithConfiguredChannel()
{
$this->app['config']->set('mail.driver', 'log');
$this->app['config']->set('mail.log_channel', 'mail');
$this->app['config']->set('logging.channels.mail', [
'driver' => 'single',
'path' => 'mail.log',
]);
$transport = app('mailer')->getSymfonyTransport();
$this->assertInstanceOf(LogTransport::class, $transport);
$logger = $transport->logger();
$this->assertInstanceOf(LoggerInterface::class, $logger);
$this->assertInstanceOf(Logger::class, $monolog = $logger->getLogger());
$this->assertCount(1, $handlers = $monolog->getHandlers());
$this->assertInstanceOf(StreamHandler::class, $handlers[0]);
}
public function testItDecodesTheMessageBeforeLogging()
{
$message = (new Message(new Email))
->from('[email protected]', 'no-reply')
->to('[email protected]', 'Taylor')
->html(<<<'BODY'
Hi,
<a href="https://example.com/reset-password=5e113c71a4c210aff04b3fa66f1b1299">Click here to reset your password</a>.
All the best,
Burt & Irving
BODY)
->text('A text part');
$actualLoggedValue = $this->getLoggedEmailMessage($message);
$this->assertStringNotContainsString("=\r\n", $actualLoggedValue);
$this->assertStringContainsString('href=', $actualLoggedValue);
$this->assertStringContainsString('Burt & Irving', $actualLoggedValue);
$this->assertStringContainsString('https://example.com/reset-password=5e113c71a4c210aff04b3fa66f1b1299', $actualLoggedValue);
}
public function testItOnlyDecodesQuotedPrintablePartsOfTheMessageBeforeLogging()
{
$message = (new Message(new Email))
->from('[email protected]', 'no-reply')
->to('[email protected]', 'Taylor')
->html(<<<'BODY'
Hi,
<a href="https://example.com/reset-password=5e113c71a4c210aff04b3fa66f1b1299">Click here to reset your password</a>.
All the best,
Burt & Irving
BODY)
->text('A text part')
->attach(Attachment::fromData(fn () => 'My attachment', 'attachment.txt'));
$actualLoggedValue = $this->getLoggedEmailMessage($message);
$this->assertStringContainsString('href=', $actualLoggedValue);
$this->assertStringContainsString('Burt & Irving', $actualLoggedValue);
$this->assertStringContainsString('https://example.com/reset-password=5e113c71a4c210aff04b3fa66f1b1299', $actualLoggedValue);
$this->assertStringContainsString('name=attachment.txt', $actualLoggedValue);
$this->assertStringContainsString('filename=attachment.txt', $actualLoggedValue);
}
public function testGetLogTransportWithPsrLogger()
{
$this->app['config']->set('mail.driver', 'log');
$logger = $this->app->instance('log', new NullLogger);
$transportLogger = app('mailer')->getSymfonyTransport()->logger();
$this->assertEquals($logger, $transportLogger);
}
private function getLoggedEmailMessage(Message $message): string
{
$logger = new class extends NullLogger
{
public string $loggedValue = '';
public function log($level, string|\Stringable $message, array $context = []): void
{
$this->loggedValue = (string) $message;
}
};
(new LogTransport($logger))->send(
$message->getSymfonyMessage()
);
return $logger->loggedValue;
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Tests\Mail;
use Illuminate\Mail\Attachment;
use Illuminate\Mail\Message;
use Illuminate\Mail\Transport\LogTransport;
use Monolog\Handler\StreamHandler;
use Monolog\Logger;
use Orchestra\Testbench\TestCase;
use Psr\Log\LoggerInterface;
use Psr\Log\NullLogger;
use Symfony\Component\Mime\Email;
class MailLogTransportTest extends TestCase
{
public function testGetLogTransportWithConfiguredChannel()
{
$this->app['config']->set('mail.driver', 'log');
$this->app['config']->set('mail.log_channel', 'mail');
$this->app['config']->set('logging.channels.mail', [
'driver' => 'single',
'path' => 'mail.log',
]);
$transport = app('mailer')->getSymfonyTransport();
$this->assertInstanceOf(LogTransport::class, $transport);
$logger = $transport->logger();
$this->assertInstanceOf(LoggerInterface::class, $logger);
$this->assertInstanceOf(Logger::class, $monolog = $logger->getLogger());
$this->assertCount(1, $handlers = $monolog->getHandlers());
$this->assertInstanceOf(StreamHandler::class, $handlers[0]);
}
public function testItDecodesTheMessageBeforeLogging()
{
$message = (new Message(new Email))
->from('[email protected]', 'no-reply')
->to('[email protected]', 'Taylor')
->html(<<<'BODY'
Hi,
<a href="https://example.com/reset-password=5e113c71a4c210aff04b3fa66f1b1299">Click here to reset your password</a>.
All the best,
Burt & Irving
BODY)
->text('A text part');
$actualLoggedValue = $this->getLoggedEmailMessage($message);
$this->assertStringNotContainsString("=\r\n", $actualLoggedValue);
$this->assertStringContainsString('href=', $actualLoggedValue);
$this->assertStringContainsString('Burt & Irving', $actualLoggedValue);
$this->assertStringContainsString('https://example.com/reset-password=5e113c71a4c210aff04b3fa66f1b1299', $actualLoggedValue);
}
public function testItOnlyDecodesQuotedPrintablePartsOfTheMessageBeforeLogging()
{
$message = (new Message(new Email))
->from('[email protected]', 'no-reply')
->to('[email protected]', 'Taylor')
->html(<<<'BODY'
Hi,
<a href="https://example.com/reset-password=5e113c71a4c210aff04b3fa66f1b1299">Click here to reset your password</a>.
All the best,
Burt & Irving
BODY)
->text('A text part')
->attach(Attachment::fromData(fn () => 'My attachment', 'attachment.txt'));
$actualLoggedValue = $this->getLoggedEmailMessage($message);
$this->assertStringContainsString('href=', $actualLoggedValue);
$this->assertStringContainsString('Burt & Irving', $actualLoggedValue);
$this->assertStringContainsString('https://example.com/reset-password=5e113c71a4c210aff04b3fa66f1b1299', $actualLoggedValue);
$this->assertStringContainsString('name=attachment.txt', $actualLoggedValue);
$this->assertStringContainsString('filename=attachment.txt', $actualLoggedValue);
}
public function testGetLogTransportWithPsrLogger()
{
$this->app['config']->set('mail.driver', 'log');
$logger = $this->app->instance('log', new NullLogger);
$transportLogger = app('mailer')->getSymfonyTransport()->logger();
$this->assertEquals($logger, $transportLogger);
}
private function getLoggedEmailMessage(Message $message): string
{
$logger = new class extends NullLogger
{
public string $loggedValue = '';
public function log($level, string|\Stringable $message, array $context = []): void
{
$this->loggedValue = (string) $message;
}
};
(new LogTransport($logger))->send(
$message->getSymfonyMessage()
);
return $logger->loggedValue;
}
}
Function Calls
| None |
Stats
| MD5 | a8336f1096080b63325238340b434505 |
| Eval Count | 0 |
| Decode Time | 91 ms |