News

Log Fake for Laravel

Published
Log Fake for Laravel image

Log Fake is a drop-in fake logger for testing with the Laravel framework by Tim MacDonald (@timacdonald). The Log fake package gives you the ability to fake the logger in your application, including the ability to make assertions against channels and stacks introduced in Laravel 5.6.

Here’s a simple example of using the logger in a test:

<?php
 
use TiMacDonald\Log\LogFake;
use Illuminate\Support\Facades\Log;
 
//...
 
Log::swap(new LogFake);
 
Log::info('Donuts have arrived');
 
Log::assertLogged('info', function ($message, $context) {
return str_contains($message, 'Donuts');
});

As mentioned, this fake supports channels and stacks, so if you are logging to a specific channel in your app, you need to prefix your assertions with a given channel:

<?php
 
Log::channel('slack')->alert('It is 5pm, go home');
 
Log::channel('slack')->assertLogged('alert'); // passes
 
// without the channel prefix...
 
Log::assertLogged('alert'); // fails

Like channels, you will need to do the same thing for stacks:

<?php
 
Log::swap(new LogFake);
 
Log::stack(['bugsnag', 'sentry'])->critical('Perform evasive maneuvers');
 
Log::stack(['bugsnag', 'sentry'])->assertLogged('critical'); // passes
 
// without the stack prefix...
 
Log::assertLogged('critical'); // fails

The GitHub repo has a full list of available assertions and usage instructions, along with the source code.

Nice work Tim!

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Filed in

Sponsored

masteringlaravel logo
Laravel Code Review

Get expert guidance in a few days with a Laravel code review

Visit Laravel Code Review

The latest

View all →
Laravel Image Responses: Serve Resized Images From Routes image

Laravel Image Responses: Serve Resized Images From Routes

Read article
Pause All Laravel Queues During a Deploy image

Pause All Laravel Queues During a Deploy

Read article
Laravel Terminal UI for the artisan dev Command image

Laravel Terminal UI for the artisan dev Command

Read article
Pause All Queues and a New artisan dev UI in Laravel 13.25 image

Pause All Queues and a New artisan dev UI in Laravel 13.25

Read article
Laravel monitoring that doesn't bill you by your traffic image

Laravel monitoring that doesn't bill you by your traffic

Read article
Mock PHP Classes in Tests With the Double Library image

Mock PHP Classes in Tests With the Double Library

Read article