Stars: 382
Forks: 30
Pull Requests: 33
Issues: 12
Watchers: 6
Last Updated: 2023-06-07 13:48:04
A drop in fake logger for testing with the Laravel framework.
License: MIT License
Languages: PHP
A bunch of Laravel facades / services are able to be faked, such as the Dispatcher with Bus::fake()
, to help with testing and assertions. This package gives you the ability to fake the logger in your app, and includes the ability to make assertions against channels, stacks, and a whole bunch more introduced in the logging overhaul from Laravel 5.6
.
You can find support for older versions in previous releases.
You can install using composer from Packagist.
composer require timacdonald/log-fake --dev
public function testItLogsWhenAUserAuthenticates()
{
/*
* Test setup.
*
* In the setup of your tests, you can call the following `bind` helper,
* which will switch out the underlying log driver with the fake.
*/
LogFake::bind();
/*
* Application implementation.
*
* In your application's implementation, you then utilise the logger, as you
* normally would.
*/
Log::info('User logged in.', ['user_id' => $user->id]);
/*
* Test assertions.
*
* Finally you can make assertions against the log channels, stacks, etc. to
* ensure the expected logging occurred in your implementation.
*/
Log::assertLogged(fn (LogEntry $log) =>
$log->level === 'info'
&& $log->message === 'User logged in.'
&& $log->context === ['user_id' => 5]
);
}
If you are logging to a specific channel (i.e. not the default channel) in your app, you need to also prefix your assertions in the same manner.
public function testItLogsWhenAUserAuthenticates()
{
// setup...
LogFake::bind();
// implementation...
Log::channel('slack')->info('User logged in.', ['user_id' => $user->id]);
// assertions...
Log::channel('slack')->assertLogged(
fn (LogEntry $log) => $log->message === 'User logged in.'
);
}
If you are logging to a stack in your app, like with channels, you will need to prefix your assertions. Note that the order of the stack does not matter.
public function testItLogsWhenAUserAuthenticates()
{
// setup...
LogFake::bind();
// implementation...
Log::stack(['stderr', 'single'])->info('User logged in.', ['user_id' => $user->id]);
// assertions...
Log::stack(['stderr', 'single'])->assertLogged(
fn (LogEntry $log) => $log->message === 'User logged in.'
);
}
That's it really. Now let's dig into the available assertions to improve your experience testing your applications logging.
Remember that all assertions are relative to the channel or stack as shown above.
assertLogged()
assertLoggedTimes()
assertNotLogged()
assertNothingLogged()
assertWasForgotten()
assertWasForgottenTimes()
assertWasNotForgotten()
assertChannelIsCurrentlyForgotten()
assertCurrentContext()
Assert that a log was created.
/*
* implementation...
*/
Log::info('User logged in.');
/*
* assertions...
*/
Log::assertLogged(
fn (LogEntry $log) => $log->message === 'User logged in.'
); // ✅
Log::assertLogged(
fn (LogEntry $log) => $log->level === 'critical'
); // ❌ as log had a level of `info`.
Assert that a log was created a specific number of times.
/*
* implementation...
*/
Log::info('Stripe request initiated.');
Log::info('Stripe request initiated.');
/*
* assertions...
*/
Log::assertLoggedTimes(
fn (LogEntry $log) => $log->message === 'Stripe request initiated.',
2
); // ✅
Log::assertLoggedTimes(
fn (LogEntry $log) => $log->message === 'Stripe request initiated.',
99
); // ❌ as the log was created twice, not 99 times.
Assert that a log was never created.
/*
* implementation...
*/
Log::info('User logged in.');
/*
* assertions...
*/
Log::assertNotLogged(
fn (LogEntry $log) => $log->level === 'critical'
); // ✅
Log::assertNotLogged(
fn (LogEntry $log) => $log->level === 'info'
); // ❌ as the level was `info`.
Assert that no logs were created.
/*
* implementation...
*/
Log::channel('single')->info('User logged in.');
/*
* assertions...
*/
Log::channel('stderr')->assertNothingLogged(); // ✅
Log::channel('single')->assertNothingLogged(); // ❌ as a log was created in the `single` channel.
Assert that the channel was forgotten at least one time.
/*
* implementation...
*/
Log::channel('single')->info('User logged in.');
Log::forgetChannel('single');
/*
* assertions...
*/
Log::channel('single')->assertWasForgotten(); // ✅
Log::channel('stderr')->assertWasForgotten(); // ❌ as it was the `single` not the `stderr` channel that was not forgotten.
Assert that the channel was forgotten a specific number of times.
/*
* implementation...
*/
Log::channel('single')->info('User logged in.');
Log::forgetChannel('single');
Log::channel('single')->info('User logged in.');
Log::forgetChannel('single');
/*
* assertions...
*/
Log::channel('single')->assertWasForgottenTimes(2); // ✅
Log::channel('single')->assertWasForgottenTimes(99); // ❌ as the channel was forgotten twice, not 99 times.
Assert that the channel was not forgotten.
/*
* implementation...
*/
Log::channel('single')->info('User logged in.');
/*
* assertions...
*/
Log::channel('single')->assertWasNotForgotten(); // ✅
Assert that a channel is currently forgotten. This is distinct from asserting that a channel was forgotten.
/*
* implementation...
*/
Log::channel('single')->info('xxxx');
Log::forgetChannel('single');
/*
* assertions...
*/
Log::assertChannelIsCurrentlyForgotten('single'); // ✅
Log::assertChannelIsCurrentlyForgotten('stderr'); // ❌ as the `single` channel was forgotten, not the `stderr` channel.
Assert that the channel currently has the specified context. It is possible to provide the expected context as an array or alternatively you can provide a truth-test closure to check the current context.
/*
* implementation...
*/
Log::withContext([
'app' => 'Acme CRM',
]);
Log::withContext([
'env' => 'production',
]);
/*
* assertions...
*/
Log::assertCurrentContext([
'app' => 'Acme CRM',
'env' => 'production',
]); // ✅
Log::assertCurrentContext(
fn (array $context) => $context['app'] === 'Acme CRM')
); // ✅
Log::assertCurrentContext([
'env' => 'production',
]); // ❌ missing the "app" key.
Log::assertCurrentContext(
fn (array $context) => $context['env'] === 'develop')
); // ❌ the 'env' key is set to "production"
Sometimes when debugging tests it's useful to be able to take a peek at the messages that have been logged. There are a couple of helpers to assist with this.
Dumps all the logs in the channel. You can also pass a truth-based closure to filter the logs that are dumped.
/*
* implementation...
*/
Log::info('User logged in.');
Log::channel('slack')->alert('Stripe request initiated.');
/*
* inspection...
*/
Log::dump();
// array:1 [
// 0 => array:4 [
// "level" => "info"
// "message" => "User logged in."
// "context" => []
// "channel" => "stack"
// ]
// ]
Log::channel('slack')->dump();
// array:1 [
// 0 => array:4 [
// "level" => "alert"
// "message" => "Stripe request initiated."
// "context" => []
// "channel" => "slack"
// ]
// ]
The same as dump
, but also ends the execution.
Dumps the logs for all channels. Also accepts a truth-test closure to filter any logs.
/*
* implementation...
*/
Log::info('User logged in.');
Log::channel('slack')->alert('Stripe request initiated.');
/*
* inspection...
*/
Log::dumpAll();
// array:2 [
// 0 => array:4 [
// "level" => "info"
// "message" => "User logged in."
// "context" => []
// "times_channel_has_been_forgotten_at_time_of_writing_log" => 0
// "channel" => "stack"
// ]
// 1 => array:4 [
// "level" => "alert"
// "message" => "Stripe request initiated."
// "context" => []
// "times_channel_has_been_forgotten_at_time_of_writing_log" => 0
// "channel" => "slack"
// ]
// ]
The same as dumpAll()
, but also ends the execution.
Get a collection of all log entries from a channel or stack.
/*
* implementation...
*/
Log::channel('slack')->info('User logged in.');
Log::channel('slack')->alert('Stripe request initiated.');
/*
* example usage...
*/
$logs = Log::channel('slack')->logs();
assert($logs->count() === 2); ✅
Similar to logs()
, except that it is called on the Facade base and returns a collection of logs from all the channels and stacks.
/*
* implementation...
*/
Log::info('User logged in.');
Log::channel('slack')->alert('Stripe request initiated.');
/*
* example usage...
*/
$logs = Log::allLogs();
assert($logs->count() === 2); ✅
And a special (vegi) thanks to Caneco for the logo ✨
You are free to use this package, but I ask that you reach out to someone (not me) who has previously, or is currently, maintaining or contributing to an open source library you are using in your project and thank them for their work. Consider your entire tech stack: packages, frameworks, languages, databases, operating systems, frontend, backend, etc.